diff --git a/404.html b/404.html new file mode 100644 index 000000000..f8414f0ed --- /dev/null +++ b/404.html @@ -0,0 +1,3 @@ + +404 Not Found +

404 Not Found

diff --git a/CNAME b/CNAME new file mode 100644 index 000000000..6508891e3 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +www.getzola.org diff --git a/documentation/content/image-processing/01-zola.png b/documentation/content/image-processing/01-zola.png new file mode 100644 index 000000000..44072562b Binary files /dev/null and b/documentation/content/image-processing/01-zola.png differ diff --git a/documentation/content/image-processing/02-zola-manet.png b/documentation/content/image-processing/02-zola-manet.png new file mode 100644 index 000000000..b426192c1 Binary files /dev/null and b/documentation/content/image-processing/02-zola-manet.png differ diff --git a/documentation/content/image-processing/03-zola-cezanne.png b/documentation/content/image-processing/03-zola-cezanne.png new file mode 100644 index 000000000..628823ba3 Binary files /dev/null and b/documentation/content/image-processing/03-zola-cezanne.png differ diff --git a/documentation/content/image-processing/04-gutenberg.jpg b/documentation/content/image-processing/04-gutenberg.jpg new file mode 100644 index 000000000..0b031e9c7 Binary files /dev/null and b/documentation/content/image-processing/04-gutenberg.jpg differ diff --git a/documentation/content/image-processing/05-example.jpg b/documentation/content/image-processing/05-example.jpg new file mode 100644 index 000000000..77ed919c2 Binary files /dev/null and b/documentation/content/image-processing/05-example.jpg differ diff --git a/documentation/content/image-processing/06-example.jpg b/documentation/content/image-processing/06-example.jpg new file mode 100644 index 000000000..483a8428e Binary files /dev/null and b/documentation/content/image-processing/06-example.jpg differ diff --git a/documentation/content/image-processing/07-example.jpg b/documentation/content/image-processing/07-example.jpg new file mode 100644 index 000000000..6972f7a91 Binary files /dev/null and b/documentation/content/image-processing/07-example.jpg differ diff --git a/documentation/content/image-processing/08-example.jpg b/documentation/content/image-processing/08-example.jpg new file mode 100644 index 000000000..99837c20f Binary files /dev/null and b/documentation/content/image-processing/08-example.jpg differ diff --git a/documentation/content/image-processing/index.html b/documentation/content/image-processing/index.html new file mode 100644 index 000000000..ccfb193e9 --- /dev/null +++ b/documentation/content/image-processing/index.html @@ -0,0 +1,465 @@ + + + + + + + + + Image processing | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Image processing

+

Zola provides support for automatic image resizing through the built-in function resize_image, +which is available in template code as well as in shortcodes.

+

The function usage is as follows:

+
resize_image(path, width, height, op, format, quality)
+
+

🔗Arguments

+
    +
  • +

    path: The path to the source image. The following directories will be searched, in this order:

    +
      +
    • / (the root of the project; that is, the directory with your config.toml)
    • +
    • /static
    • +
    • /content
    • +
    • /public
    • +
    • /themes/current-theme/static
    • +
    +
  • +
  • +

    width and height: The dimensions in pixels of the resized image. Usage depends on the op argument.

    +
  • +
  • +

    op (optional): Resize operation. This can be one of:

    +
      +
    • "scale"
    • +
    • "fit_width"
    • +
    • "fit_height"
    • +
    • "fit"
    • +
    • "fill"
    • +
    +

    What each of these does is explained below. The default is "fill".

    +
  • +
  • +

    format (optional): Encoding format of the resized image. May be one of:

    +
      +
    • "auto"
    • +
    • "jpg"
    • +
    • "png"
    • +
    • "webp"
    • +
    +

    The default is "auto", this means that the format is chosen based on input image format. +JPEG is chosen for JPEGs and other lossy formats, and PNG is chosen for PNGs and other lossless formats.

    +
  • +
  • +

    quality (optional): JPEG or WebP quality of the resized image, in percent. Only used when encoding JPEGs or WebPs; for JPEG default value is 75, for WebP default is lossless.

    +
  • +
+

🔗Image processing and return value

+

Zola performs image processing during the build process and places the resized images in a subdirectory in the static files directory:

+
static/processed_images/
+
+

The filename of each resized image is a hash of the function arguments, +which means that once an image is resized in a certain way, it will be stored in the above directory and will not +need to be resized again during subsequent builds (unless the image itself, the dimensions, or other arguments have changed).

+

The function returns an object with the following schema:

+
/// The final URL for that asset
+url: String,
+/// The path to the static asset generated
+static_path: String,
+/// New image width
+width: u32,
+/// New image height
+height: u32,
+/// Original image width
+orig_width: u32,
+/// Original image height
+orig_height: u32,
+
+

🔗Resize operations

+

The source for all examples is this 300 pixel × 380 pixel image:

+

zola

+

🔗"scale"

+

Simply scales the image to the specified dimensions (width & height) irrespective of the aspect ratio.

+

resize_image(..., width=150, height=150, op="scale")

+ + +

🔗"fit_width"

+

Resizes the image such that the resulting width is width and height is whatever will preserve the aspect ratio. +The height argument is not needed.

+

resize_image(..., width=100, op="fit_width")

+ + +

🔗"fit_height"

+

Resizes the image such that the resulting height is height and width is whatever will preserve the aspect ratio. +The width argument is not needed.

+

resize_image(..., height=150, op="fit_height")

+ + +

🔗"fit"

+

Like "fit_width" and "fit_height" combined, but only resize if the image is bigger than any of the specified dimensions. +This mode is handy, if for example images are automatically shrunk to certain sizes in a shortcode for +mobile optimization. +Resizes the image such that the result fits within width and height while preserving the aspect ratio. This +means that both width or height will be at max width and height, respectively, but possibly one of them +smaller so as to preserve the aspect ratio.

+

resize_image(..., width=5000, height=5000, op="fit")

+ + +

resize_image(..., width=150, height=150, op="fit")

+ + +

🔗"fill"

+

This is the default operation. It takes the image's center part with the same aspect ratio as the width and +height given and resizes that to width and height. This means that parts of the image that are outside +of the resized aspect ratio are cropped away.

+

resize_image(..., width=150, height=150, op="fill")

+ + +

🔗Using resize_image in markdown via shortcodes

+

resize_image is a Zola built-in Tera function (see the templates chapter), +but it can be used in Markdown using shortcodes.

+

The examples above were generated using a shortcode file named resize_image.html with this content:

+
{% set image = resize_image(path=path, width=width, height=height, op=op) %}
+<img src="{{ image.url }}" />
+
+

🔗Creating picture galleries

+

The resize_image() can be used multiple times and/or in loops. It is designed to handle this efficiently.

+

This can be used along with assets page metadata to create picture galleries. +The assets variable holds paths to all assets in the directory of a page with resources +(see asset colocation); if you have files other than images you +will need to filter them out in the loop first like in the example below.

+

This can be used in shortcodes. For example, we can create a very simple html-only clickable +picture gallery with the following shortcode named gallery.html:

+
<div>
+{% for asset in page.assets -%}
+  {%- if asset is matching("[.](jpg|png)$") -%}
+    {% set image = resize_image(path=asset, width=240, height=180) %}
+    <a href="{{ get_url(path=asset) }}" target="_blank">
+      <img src="{{ image.url }}" />
+    </a>
+  {%- endif %}
+{%- endfor %}
+</div>
+
+

As you can notice, we didn't specify an op argument, which means that it'll default to "fill". Similarly, +the format will default to "auto" (choosing PNG or JPEG as appropriate) and the JPEG quality will default to 75.

+

To call it from a Markdown file, simply do:

+
{{ gallery() }}
+
+

Here is the result:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Image attribution: Public domain, except: _06-example.jpg_: Willi Heidelbach, _07-example.jpg_: Daniel Ullrich. + +

🔗Get image size and relative resizing

+

Sometimes when building a gallery it is useful to know the dimensions of each asset. You can get this information with +get_image_metadata.

+

This can also be useful in combination with resize_image() to do a relative resizing. So we can create a relative image resizing function with the following shortcode named resize_image_relative.html:

+
{% set mdata = get_image_metadata(path=path) %}
+{% set image = resize_image(path=path, width=(mdata.width * scale)|int, op="fit_width") %}
+<img src="{{ image.url }}" />
+
+

It can be invoked from Markdown like this:

+

resize_image_relative(..., scale=0.5)

+ + +

🔗Creating scaled-down versions of high-resolution images

+

With the above, we can also create a shortcode that creates a 50% scaled-down version of a high-resolution image (e.g. screenshots taken on Retina Macs), along with the proper HTML5 srcset for the original image to be displayed on high-resolution / retina displays.

+

Consider the following shortcode named high_res_image.html:

+
{% set mdata = get_image_metadata(path=path) %}
+{% set w = (mdata.width / 2) | int %}
+{% set h = (mdata.height / 2) | int %}
+{% set image = resize_image(path=path, width=w, height=h, op="fit_width") %}
+<img src="{{ image.url }}" srcset="/{{path}} 2x"/>
+
+ + + + + + +
+
+ +
+ + + + + + diff --git a/documentation/content/index.html b/documentation/content/index.html new file mode 100644 index 000000000..f6700ff9c --- /dev/null +++ b/documentation/content/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/documentation/content/linking/index.html b/documentation/content/linking/index.html new file mode 100644 index 000000000..dcc6abd66 --- /dev/null +++ b/documentation/content/linking/index.html @@ -0,0 +1,314 @@ + + + + + + + + + Internal links & deep linking | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Internal links & deep linking

+

🔗Heading id and anchor insertion

+

While rendering the Markdown content, a unique id will automatically be assigned to each heading. +This id is created by converting the heading text to a slug if slugify.anchors is set to "on" (the default). +If slugify.paths is set to "safe", whitespaces are replaced by - and the following characters are stripped: #, %, <, >, [, ], (, ), `, ^, {, |, }. +If slugify.paths is set to "off", no modifications are made, and you may be left with nominally illegal ids. +A number is appended at the end if the slug already exists for that article. +For example:

+
# Something exciting! <- something-exciting
+## Example code <- example-code
+
+# Something else <- something-else
+## Example code <- example-code-1
+
+

You can also manually specify an id with a {#…} suffix on the heading line as well as CSS classes:

+
# Something manual! {#manual .header .bold}
+
+

This is useful for making deep links robust, either proactively (so that you can later change the text of a heading +without breaking links to it) or retroactively (keeping the slug of the old header text when changing the text). It +can also be useful for migration of existing sites with different header id schemes, so that you can keep deep +links working.

+

🔗Anchor insertion

+

It is possible to have Zola automatically insert anchor links next to the heading, as you can see on this documentation +if you hover a title or covering the full heading text.

+

This option is set at the section level: the insert_anchor_links variable on the +section front matter page.

+

The default template is very basic and will need CSS tweaks in your project to look decent. +If you want to change the anchor template, it can be easily overwritten by +creating an anchor-link.html file in the templates directory. Here you can find the default template.

+

The anchor link template has the following variables:

+
    +
  • id: the heading's id after applying the rules defined by slugify.anchors
  • +
  • lang: the current language, unless called from the markdown template filter, in which case it will always be en
  • +
  • level: the heading level (between 1 and 6)
  • +
+

If you use insert_anchor = "heading", the template will still be used but only the opening <a> tag will get extracted +from it, everything else will not be used.

+ +

Linking to other pages and their headings is so common that Zola adds a +special syntax to Markdown links to handle them: start the link with @/ and point to the .md file you want +to link to. The path to the file starts from the content directory.

+

For example, linking to a file located at content/pages/about.md would be [my link](@/pages/about.md). +You can still link to an anchor directly; [my link](@/pages/about.md#example) will work as expected.

+

By default, broken internal links are treated as errors. To treat them as warnings instead, visit the [link_checker] section of config.toml and set internal_level = "warn". Note: treating broken links as warnings allows the site to be built with broken links intact, so a link such as [my link](@/pages/whoops.md) will be rendered to HTML as <a href="@/pages/whoops.md">.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/multilingual/index.html b/documentation/content/multilingual/index.html new file mode 100644 index 000000000..cac233567 --- /dev/null +++ b/documentation/content/multilingual/index.html @@ -0,0 +1,315 @@ + + + + + + + + + Multilingual sites | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Multilingual sites

+

Zola supports having a site in multiple languages.

+

🔗Configuration

+

To get started, you will need to add the languages you want to support +to your config.toml. For example:

+
[languages.fr]
+generate_feeds = true # there will be a feed for French content
+build_search_index = true
+taxonomies = [
+    {name = "auteurs"},
+    {name = "tags"},
+]
+
+[languages.fr.translations]
+summary = "Mon blog"
+
+[languages.it]
+# Italian language doesn't have any taxonomies/feed/search index
+
+[languages.it.translations]
+summary = "Mio blog"
+
+# translations for the default language are not prefixed by languages.code
+[translations]
+summary = "My blog"
+
+

Note: By default, Chinese and Japanese search indexing is not included. You can include +the support by building zola using cargo build --features indexing-ja --features indexing-zh. +Please also note that, enabling Chinese indexing will increase the binary size by approximately +5 MB while enabling Japanese indexing will increase the binary size by approximately 70 MB +due to the incredibly large dictionaries.

+

🔗Content

+

Once the languages have been added, you can start to translate your content. Zola +uses the filename to detect the language:

+
    +
  • content/an-article.md: this will be the default language
  • +
  • content/an-article.fr.md: this will be in French
  • +
+

If the language code in the filename does not correspond to one of the languages or +the default language configured, an error will be shown.

+

If your default language has an _index.md in a directory, you will need to add an _index.{code}.md +file with the desired front-matter options as there is no language fallback.

+

🔗Output

+

Zola outputs the translated content with a base URL of {base_url}/{code}/. +The only exception to this is if you are setting a translated page path directly in the front matter.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/overview/index.html b/documentation/content/overview/index.html new file mode 100644 index 000000000..c1a060a9d --- /dev/null +++ b/documentation/content/overview/index.html @@ -0,0 +1,356 @@ + + + + + + + + + Overview | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Overview

+

Zola uses the directory structure to determine the site structure. +Each child directory in the content directory represents a section +that contains pages (your .md files).

+
.
+└── content
+    ├── content
+    │   └── something.md // -> https://mywebsite.com/content/something/
+    ├── blog
+    │   ├── cli-usage.md // -> https://mywebsite.com/blog/cli-usage/
+    │   ├── configuration.md // -> https://mywebsite.com/blog/configuration/
+    │   ├── directory-structure.md // -> https://mywebsite.com/blog/directory-structure/
+    │   ├── _index.md // -> https://mywebsite.com/blog/
+    │   └── installation.md // -> https://mywebsite.com/blog/installation/
+    └── landing
+        └── _index.md // -> https://mywebsite.com/landing/
+
+

Each page path (the part after base_url, for example blog/cli-usage/) can be customised by changing the path or +slug attribute of the page front-matter.

+

You might have noticed a file named _index.md in the example above. +This file is used to store both the metadata and content of the section itself and is not considered a page.

+

To ensure that the terminology used in the rest of the documentation is understood, let's go over the example above.

+

The content directory in this case has three sections: content, blog and landing. The content section has only +one page (something.md), the landing section has no pages and the blog section has 4 pages (cli-usage.md, +configuration.md, directory-structure.md and installation.md).

+

Sections can be nested indefinitely.

+

🔗Asset colocation

+

The content directory is not limited to markup files. It's natural to want to co-locate a page and some related +assets, such as images or spreadsheets. Zola supports this pattern out of the box for both sections and pages.

+

All non-Markdown files you add in a page/section directory will be copied alongside the generated page when the site is +built, which allows us to use a relative path to access them.

+

Pages with co-located assets should not be placed directly in their section directory (such as latest-experiment.md), but +as an index.md file in a dedicated directory (latest-experiment/index.md), like so:

+
└── research
+    ├── latest-experiment
+    │   ├── index.md
+    │   └── javascript.js
+    ├── _index.md
+    └── research.jpg
+
+

With this setup, you may access research.jpg from your 'research' section +and javascript.js from your 'latest-experiment' page directly within the Markdown:

+
Check out the complete program [here](javascript.js). It's **really cool free-software**!
+
+

By default, this page's slug will be the directory name and thus its permalink will be https://example.com/research/latest-experiment/.

+

🔗Excluding files from assets

+

It is possible to ignore selected asset files using the +ignored_content setting in the config file. +For example, say that you have several code files which you are linking to on your website. +For maintainability, you want to keep your code in the same directory as the Markdown file, +but you don't want to copy the build folders to the public web site. You can achieve this by setting ignored_content in the config file:

+

(Note of caution: {Cargo.lock,target} is not the same as {Cargo.lock, target})

+
ignored_content = ["code_articles/**/{Cargo.lock,target}, *.rs"]
+
+

🔗Static assets

+

In addition to placing content files in the content directory, you may also place content +files in the static directory. Any files/directories that you place in the static directory +will be copied, without modification, to the public directory.

+

Typically, you might put site-wide assets (such as a CSS file, the site favicon, site logos or site-wide +JavaScript) in the root of the static directory. You can also place any HTML or other files that +you wish to be included without modification (that is, without being parsed as Markdown files) +into the static directory.

+

Note that the static directory provides an alternative to co-location. For example, imagine that you +had the following directory structure (a simplified version of the structure presented above):

+
.
+└── content
+    └── blog
+        ├── configuration
+        │    └── index.md // -> https://mywebsite.com/blog/configuration/
+        └── _index.md // -> https://mywebsite.com/blog/
+
+

To add an image to the https://mywebsite.com/blog/configuration page, you have three options:

+
    +
  • You could save the image to the content/blog/configuration directory and then link to it with a +relative path from the index.md page. This is the approach described under co-location +above.
  • +
  • You could save the image to a static/blog/configuration directory and link to it in exactly the +same way as if you had co-located it. If you do this, the generated files will be identical to those +obtained if you had co-located the image; the only difference will be that all static files will be saved in the +static directory rather than in the content directory. The choice depends on your organizational needs.
  • +
  • Or you could save the image to some arbitrary directory within the static directory. For example, +you could save all images to static/images. Using this approach, you can no longer use relative links. Instead, +you must use an absolute link to images/[filename] to access your +image. This might be preferable for small sites or for sites that associate images with +multiple pages (e.g., logo images that appear on every page).
  • +
+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/page/index.html b/documentation/content/page/index.html new file mode 100644 index 000000000..499b95d0d --- /dev/null +++ b/documentation/content/page/index.html @@ -0,0 +1,401 @@ + + + + + + + + + Page | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Page

+

A page is any file ending with .md in the content directory, except files +named _index.md. Note: page file names must not contain _index. at all.

+

If a file ending with .md is named index.md, it will generate a page +with the name of its directory (for example, /content/about/index.md would +create a page at [base_url]/about). (Note the lack of an underscore; if the file +were named _index.md, then it would create a section at [base_url]/about, as +discussed in a previous part of this documentation. In contrast, naming the file index.md will +create a page at [base_url]/about).

+

If the file is given any name other than index.md or _index.md, then it will +create a page with that name (without the .md). For example, naming a file in the root of your +content directory about.md would create a page at [base_url]/about.

+

Another exception to this rule is that a filename starting with a datetime (YYYY-mm-dd or an RFC3339 datetime) followed by +an underscore (_) or a dash (-) will use that date as the page date, unless already set +in the front matter. The page name will be anything after _/-, so the file 2018-10-10-hello-world.md will +be available at [base_url]/hello-world. Note that the full RFC3339 datetime contains colons, which is not a valid +character in a filename on Windows. +This behavior can be disabled by setting slugify.paths_keep_dates to true (the default is false). Note that a _ separating the date would be slugified into a - with the default value for slugify.paths of "on".

+

As you can see, creating an about.md file is equivalent to creating an +about/index.md file. The only difference between the two methods is that creating +the about directory allows you to use asset co-location, as discussed in the +overview section.

+

🔗Output paths

+

For any page within your content folder, its output path will be defined by either:

+
    +
  • its slug frontmatter key
  • +
  • its filename
  • +
+

Either way, these proposed path will be sanitized before being used. +If slugify.paths is set to "on" in the site's config - the default - paths are slugified. +If it is set to "safe", only sanitation is performed, with the following characters being removed: <, >, :, /, |, ?, *, #, \\, (, ), [, ] as well as newlines and tabulations. This ensures that the path can be represented on all operating systems. +Additionally, trailing whitespace and dots are removed and whitespaces are replaced by _.

+

If slugify.paths is set to "off", no modifications are made.

+

If you want URLs containing non-ASCII characters, slugify.paths needs to be set to "safe" or "off".

+

🔗Path from frontmatter

+

The output path for the page will first be read from the slug key in the page's frontmatter.

+

Example: (file content/zines/élevage-chèvre.md)

+
+++
+title = "L'élevage de chèvres, la carrière alternative de tous dévelopeurs'"
+slug = "élevage-chèvre-carrière-alternative"
++++
+This is my article.
+
+

This frontmatter will output the article to [base_url]/zines/élevage-chèvre-carrière-alternative with slugify.paths set to "safe" or "off", and to [base_url]/zines/elevage-chevre-carriere-alternative with the default value for slugify.paths of "on".

+

🔗Path from filename

+

When the article's output path is not specified in the frontmatter, it is extracted from the file's path in the content folder. Consider a file content/foo/bar/thing.md. The output path is constructed:

+
    +
  • if the filename is index.md, its parent folder name (bar) is used as output path
  • +
  • otherwise, the output path is extracted from thing (the filename without the .md extension)
  • +
+

If the path found starts with a datetime string (YYYY-mm-dd or a RFC3339 datetime) followed by optional whitespace and then an underscore (_) or a dash (-), this date is removed from the output path and will be used as the page date (unless already set in the front-matter). Note that the full RFC3339 datetime contains colons, which is not a valid character in a filename on Windows.

+

The output path extracted from the file path is then slugified or not, depending on the slugify.paths config, as explained previously.

+

Example: +The file content/blog/2018-10-10-hello-world.md will yield a page at [base_url]/blog/hello-world. With optional whitespace, the file content/blog/2021-01-23 -hello new world.md will yield a page at [base_url]/blog/hello-new-world

+

🔗Front matter

+

The TOML front matter is a set of metadata embedded in a file at the beginning of the file enclosed +by triple pluses (+++).

+

Although none of the front matter variables are mandatory, the opening and closing +++ are required.

+

Note that even though the use of TOML is encouraged, YAML front matter is also supported to ease porting +legacy content. In this case the embedded metadata must be enclosed by triple minuses (---).

+

Here is an example page with all the available variables. The values provided below are the +default values.

+
title = ""
+description = ""
+
+# The date of the post.
+# Two formats are allowed: YYYY-MM-DD (2012-10-02) and RFC3339 (2002-10-02T15:00:00Z).
+# Do not wrap dates in quotes; the line below only indicates that there is no default date.
+# If the section variable `sort_by` is set to `date`, then any page that lacks a `date`
+# will not be rendered.
+# Setting this overrides a date set in the filename.
+date =
+
+# The last updated date of the post, if different from the date.
+# Same format as `date`.
+updated =
+
+# The weight as defined on the Section page of the documentation.
+# If the section variable `sort_by` is set to `weight`, then any page that lacks a `weight`
+# will not be rendered.
+weight = 0
+
+# A draft page is only loaded if the `--drafts` flag is passed to `zola build`, `zola serve` or `zola check`.
+draft = false
+
+# When set to "false" Zola will not create a separate folder with index.html inside for this page.
+render = false
+
+# If set, this slug will be used instead of the filename to make the URL.
+# The section path will still be used.
+slug = ""
+
+# The path the content will appear at.
+# If set, it cannot be an empty string and will override both `slug` and the filename.
+# The sections' path won't be used.
+# It should not start with a `/` and the slash will be removed if it does.
+path = ""
+
+# Use aliases if you are moving content but want to redirect previous URLs to the
+# current one. This takes an array of paths, not URLs.
+aliases = []
+
+# A list of page authors. If a site feed is enabled, the first author (if any)
+# will be used as the page's author in the default feed template.
+authors = []
+
+# When set to "true", the page will be in the search index. This is only used if
+# `build_search_index` is set to "true" in the Zola configuration and the parent section
+# hasn't set `in_search_index` to "false" in its front matter.
+in_search_index = true
+
+# Template to use to render this page.
+template = "page.html"
+
+# The taxonomies for this page. The keys need to be the same as the taxonomy
+# names configured in `config.toml` and the values are an array of String objects. For example,
+# tags = ["rust", "web"].
+[taxonomies]
+
+# Your own data.
+[extra]
+
+

🔗Summary

+

You can ask Zola to create a summary if, for example, you only want to show the first +paragraph of the page content in a list.

+

To do so, add <!-- more --> in your content at the point +where you want the summary to end. The content up to that point will be +available separately in the +template via page.summary.

+

A span element in this position with a continue-reading id is created, so you can link directly to it if needed. For example: +<a href="{{ page.permalink }}#continue-reading">Continue Reading</a>.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/sass/index.html b/documentation/content/sass/index.html new file mode 100644 index 000000000..d26b8b26c --- /dev/null +++ b/documentation/content/sass/index.html @@ -0,0 +1,307 @@ + + + + + + + + + Sass | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Sass

+

Sass is a popular CSS preprocessor that adds special features (e.g., variables, nested rules) to facilitate the +maintenance of large sets of CSS rules. If you're curious about what Sass +is and why it might be useful for styling your static site, the following links +may be of interest:

+ +

It currently uses grass, a Rust implementation of Sass roughly equivalent +with dart-sass.

+

🔗Using Sass in Zola

+

Zola always compiles Sass files in theme directories. +However, for Zola to process files in the sass folder, you need to set compile_sass = true in your config.toml.

+

Zola processes any files with the sass or scss extension in the sass +folder, and places the processed output into a css file with the same folder +structure and base name into the public folder:

+
.
+└── sass
+    ├── style.scss // -> ./public/style.css
+    ├── indented_style.sass // -> ./public/indented_style.css
+    ├── _include.scss # This file won't get put into the `public` folder, but other files can @import it.
+    ├── assets
+    │   ├── fancy.scss // -> ./public/assets/fancy.css
+    │   ├── same_name.scss // -> ./public/assets/same_name.css
+    │   ├── same_name.sass # CONFLICT! This has the same base name as the file above, so Zola will return an error.
+    │   └── _common_mixins.scss # This file won't get put into the `public` folder, but other files can @import it.
+    └── secret-side-project
+        └── style.scss // -> ./public/secret-side-project/style.css
+
+

Files with a leading underscore in the name are not placed into the public +folder, but can still be used as @import dependencies. For more information, see the "Partials" section of +Sass Basics.

+

Files with the scss extension use "Sassy CSS" syntax, +while files with the sass extension use the "indented" syntax: https://sass-lang.com/documentation/syntax. +Zola will return an error if scss and sass files with the same +base name exist in the same folder to avoid confusion -- see the example above.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/search/index.html b/documentation/content/search/index.html new file mode 100644 index 000000000..452b8c8f5 --- /dev/null +++ b/documentation/content/search/index.html @@ -0,0 +1,298 @@ + + + + + + + + + Search | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Search

+

Zola can build a search index from the sections and pages content to +be used by a JavaScript library such as elasticlunr or fuse.

+

To enable it, you only need to set build_search_index = true in your config.toml and Zola will +generate an index for the default_language set for all pages not excluded from the search index.

+

It is very important to set the default_language in your config.toml if you are writing a site not in +English; the index building pipelines are very different depending on the language.

+

As each site will be different, Zola makes no assumptions about your search function and doesn't provide +the JavaScript/CSS code to do an actual search and display results. You can look at how this site +implements it (using elasticlunr) to get an idea: search.js.

+

🔗Configuring the search index

+

In some cases, the default indexing strategy is not suitable. You can customize which fields to include and whether +to truncate the content in the search configuration.

+

🔗Index Formats

+

🔗Elasticlunr

+

Compatible with elasticlunr. Also produces elasticlunr.min.js.

+
# config.toml
+[search]
+index_format = "elasticlunr_javascript" # or "elasticlunr_json"
+
+

If you are using a language other than English, you will also need to include the corresponding JavaScript stemmer file. +See https://github.com/weixsong/lunr-languages#in-a-web-browser for details.

+

🔗Fuse

+

Compatible with fuse.js and tinysearch.

+
# config.toml
+[search]
+index_format = "fuse_javascript" # or "fuse_json"
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/section/index.html b/documentation/content/section/index.html new file mode 100644 index 000000000..eb6c7a439 --- /dev/null +++ b/documentation/content/section/index.html @@ -0,0 +1,449 @@ + + + + + + + + + Section | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Section

+

A section is created whenever a directory (or subdirectory) in the content section contains an +_index.md file. If a directory does not contain an _index.md file, no section will be +created, but Markdown files within that directory will still create pages (known as orphan pages).

+

The homepage (i.e., the page displayed when a user browses to your base_url) is a section, +which is created whether or not you add an _index.md file at the root of your content directory. +If you do not create an _index.md file in your content directory, this main content section will +not have any content or metadata. If you would like to add content or metadata, you can add an +_index.md file at the root of the content directory and edit it just as you would edit any other +_index.md file; your index.html template will then have access to that content and metadata.

+

Any non-Markdown file in a section directory is added to the assets collection of the section, as explained in the +content overview. These files are then available in the +Markdown file using relative links.

+

🔗Drafting

+

Just like pages sections can be drafted by setting the draft option in the front matter. By default this is not done. When a section is drafted it's descendants like pages, subsections and assets will not be processed unless the --drafts flag is passed. Note that even pages that don't have a draft status will not be processed if one of their parent sections is drafted.

+

🔗Front matter

+

The _index.md file within a directory defines the content and metadata for that section. To set +the metadata, add front matter to the file.

+

The TOML front matter is a set of metadata embedded in a file at the beginning of the file enclosed by triple pluses (+++).

+

After the closing +++, you can add content, which will be parsed as Markdown and made available +to your templates through the section.content variable.

+

Although none of the front matter variables are mandatory, the opening and closing +++ are required.

+

Note that even though the use of TOML is encouraged, YAML front matter is also supported to ease porting +legacy content. In this case the embedded metadata must be enclosed by triple minuses (---).

+

Here is an example _index.md with all the available variables. The values provided below are the +default values.

+
title = ""
+
+description = ""
+
+# A draft section is only loaded if the `--drafts` flag is passed to `zola build`, `zola serve` or `zola check`.
+draft = false
+
+# Used to sort pages by "date", "update_date", "title", "title_bytes", "weight", "slug" or "none". See below for more information.
+sort_by = "none"
+
+# Used by the parent section to order its subsections.
+# Lower values have higher priority.
+weight = 0
+
+# Template to use to render this section page.
+template = "section.html"
+
+# The given template is applied to ALL pages below the section, recursively.
+# If you have several nested sections, each with a page_template set, the page
+# will always use the closest to itself.
+# However, a page's own `template` variable will always have priority.
+# Not set by default.
+page_template =
+
+# This sets the number of pages to be displayed per paginated page.
+# No pagination will happen if this isn't set or if the value is 0.
+paginate_by = 0
+
+# If set, this will be the path used by the paginated page. The page number will be appended after this path.
+# The default is page/1.
+paginate_path = "page"
+
+# If set, there will pagination will happen in a reversed order.
+paginate_reversed = false
+
+# This determines whether to insert a link for each header like the ones you can see on this site if you hover over
+# a header.
+# The default template can be overridden by creating an `anchor-link.html` file in the `templates` directory.
+# This value can be "left", "right", "heading" or "none".
+# "heading" means the full heading becomes the text of the anchor.
+insert_anchor_links = "none"
+
+# If set to "true", the section pages will be in the search index. This is only used if
+# `build_search_index` is set to "true" in the Zola configuration file.
+in_search_index = true
+
+# If set to "true", the section homepage is rendered.
+# Useful when the section is used to organize pages (not used directly).
+render = true
+
+# This determines whether to redirect when a user lands on the section. Defaults to not being set.
+# Useful for the same reason as `render` but when you don't want a 404 when
+# landing on the root section page.
+# Example: redirect_to = "documentation/content/overview"
+redirect_to =
+
+# If set to "true", the section will pass its pages on to the parent section. Defaults to `false`.
+# Useful when the section shouldn't split up the parent section, like
+# sections for each year under a posts section.
+transparent = false
+
+# Use aliases if you are moving content but want to redirect previous URLs to the
+# current one. This takes an array of paths, not URLs.
+aliases = []
+
+# If set to "true", feed files will be generated for this section at the
+# section's root path. This is independent of the site-wide variable of the same
+# name. The section feed will only include posts from that respective feed, and
+# not from any other sections, including sub-sections under that section.
+generate_feeds = false
+
+# Your own data.
+[extra]
+
+

Keep in mind that any configuration options apply only to the direct pages, not to the subsections' pages.

+

🔗Pagination

+

To enable pagination for a section's pages, set paginate_by to a positive number. See +pagination template documentation for more information +on what variables are available in the template.

+

You can also change the pagination path (the word displayed while paginated in the URL, like page/1) +by setting the paginate_path variable, which defaults to page.

+

🔗Sorting

+

It is very common for Zola templates to iterate over pages or sections +to display all pages/sections in a given directory. Consider a very simple +example: a blog directory with three files: blog/Post_1.md, +blog/Post_2.md and blog/Post_3.md. To iterate over these posts and +create a list of links to the posts, a simple template might look like this:

+
{% for post in section.pages %}
+  <h1><a href="{{ post.permalink }}">{{ post.title }}</a></h1>
+{% endfor %}
+
+

This would iterate over the posts in the order specified +by the sort_by variable set in the _index.md page for the corresponding +section. The sort_by variable can be given a few values: date, update_date +title, title_bytes, weight, slug or none. If sort_by is not set, the pages will be +sorted in the none order, which is not intended for sorted content.

+

Any page that is missing the data it needs to be sorted will be ignored and +won't be rendered. For example, if a page is missing the date variable and its +section sets sort_by = "date", then that page will be ignored. +The terminal will warn you if this occurs.

+

If several pages have the same date/weight/order, their permalink will be used +to break the tie based on alphabetical order.

+

🔗Sorting pages

+

The sort_by front-matter variable can have the following values:

+

🔗date

+

This will sort all pages by their date field, from the most recent (at the +top of the list) to the oldest (at the bottom of the list). Each page will +get page.lower and page.higher variables that contain the pages with +earlier and later dates, respectively.

+

🔗update_date

+

Same as date except it will take into account any updated date for the pages.

+

🔗title

+

This will sort all pages by their title field in natural lexical order, as +defined by natural_lexical_cmp in the lexical-sort crate. Each page will +get page.lower and page.higher variables that contain the pages +with previous and next titles, respectively.

+

For example, here is a natural lexical ordering: "bachata, BART, bolero, +μ-kernel, meter, Métro, Track-2, Track-3, Track-13, underground". Notice how +special characters and numbers are sorted reasonably.

+

🔗title_bytes

+

Same as title except it uses the bytes directly to sort. +Natural sorting treats non-ascii +characters like their closest ascii character. This can lead to unexpected +results for languages with different character sets. The last three characters +of the Swedish alphabet, åäö, for example would be considered by the natural +sort as aao. In that case the standard byte-order sort may be more suitable.

+

🔗weight

+

This will sort all pages by their weight field, from the lightest weight +(at the top of the list) to the heaviest (at the bottom of the list). Each +page gets page.lower and page.higher variables that contain the +pages with lighter and heavier weights, respectively.

+

🔗slug

+

This will sort pages or sections by their slug in natural lexical order.

+

🔗Reversed sorting

+

When iterating through pages, you may wish to use the Tera reverse filter, +which reverses the order of the pages. For example, after using the reverse filter, +pages sorted by weight will be sorted from lightest (at the top) to heaviest +(at the bottom); pages sorted by date will be sorted from oldest (at the top) +to newest (at the bottom).

+

reverse has no effect on page.lower / page.higher.

+

If the section is paginated the paginate_reversed=true in the front matter of the relevant section should be set instead of using the filter.

+

🔗Sorting subsections

+

Sorting sections is a bit less flexible: sections can only be sorted by weight, +and do not have variables that point to the heavier/lighter sections.

+

By default, the lightest (lowest weight) subsections will be at +the top of the list and the heaviest (highest weight) will be at the bottom; +the reverse filter reverses this order.

+

Note: Unlike pages, permalinks will not be used to break ties between +equally weighted sections. Thus, if the weight variable for your section is not set (or if it +is set in a way that produces ties), then your sections will be sorted in +random order. Moreover, that order is determined at build time and will +change with each site rebuild. Thus, if there is any chance that you will +iterate over your sections, you should always assign them distinct weights.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/shortcodes/index.html b/documentation/content/shortcodes/index.html new file mode 100644 index 000000000..5aad101f2 --- /dev/null +++ b/documentation/content/shortcodes/index.html @@ -0,0 +1,463 @@ + + + + + + + + + Shortcodes | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Shortcodes

+

Zola borrows the concept of shortcodes from WordPress. +In our case, a shortcode corresponds to a template defined in the templates/shortcodes directory that can be used in a Markdown file.

+

Broadly speaking, Zola's shortcodes cover two distinct use cases:

+
    +
  • Inject more complex HTML: Markdown is good for writing, but it isn't great when you need to add inline HTML or styling.
  • +
  • Ease repetitive data based tasks: when you have external data that you +want to display in your page's body.
  • +
+

The latter may also be solved by writing HTML, however Zola allows the use of Markdown based shortcodes which end in .md +rather than .html. This may be particularly useful if you want to include headings generated by the shortcode in the +table of contents.

+

If you want to use something similar to shortcodes in your templates, you can use Tera macros. They are functions or components that you can call to return some text.

+

🔗Writing a shortcode

+

Let's write a shortcode to embed YouTube videos as an example. +In a file called youtube.html in the templates/shortcodes directory, paste the +following:

+
<div {% if class %}class="{{class}}"{% endif %}>
+    <iframe
+        src="https://www.youtube.com/embed/{{id}}{% if autoplay %}?autoplay=1{% endif %}"
+        webkitallowfullscreen
+        mozallowfullscreen
+        allowfullscreen>
+    </iframe>
+</div>
+
+

This template is very straightforward: an iframe pointing to the YouTube embed URL wrapped in a <div>. +In terms of input, this shortcode expects at least one variable: id (example here). +Because the other variables are in an if statement, they are optional.

+

That's it. Zola will now recognise this template as a shortcode named youtube (the filename minus the .html extension).

+

The Markdown renderer will wrap an inline HTML node such as <a> or <span> into a paragraph. +If you want to disable this behaviour, wrap your shortcode in a <div>.

+

A Markdown based shortcode in turn will be treated as if what it returned was part of the page's body. If we create +books.md in templates/shortcodes for example:

+
{% set data = load_data(path=path) -%}
+{% for book in data.books %}
+### {{ book.title }}
+
+{{ book.description | safe }}
+{% endfor %}
+
+

This will create a shortcode books with the argument path pointing to a .toml file where it loads lists of books with +titles and descriptions. They will flow with the rest of the document in which books is called.

+

Shortcodes are rendered before the page's Markdown is parsed so they don't have access to the page's table of contents. +Because of that, you also cannot use the get_page / get_section / get_taxonomy / get_taxonomy_term global functions. It might work while +running zola serve because it has been loaded but it will fail during zola build.

+

🔗Using shortcodes

+

There are two kinds of shortcodes:

+
    +
  • ones that do not take a body, such as the YouTube example above
  • +
  • ones that do, such as one that styles a quote
  • +
+

In both cases, the arguments must be named and they will all be passed to the template. +Parentheses are mandatory even if there are no arguments.

+

Note that while shortcodes look like normal Tera expressions, they are not Tera at all -- they can +pretty much just shuttle arguments to their template. Several limitions of note are:

+
    +
  • All arguments are required
  • +
  • The shortcode cannot reference Tera variables
  • +
  • Concatenation and other operators are unavailable
  • +
+

If the shortcode is invalid, it will not be interpreted by the markdown parser and will instead +get rendered directly into the final HTML.

+

Lastly, a shortcode name (and thus the corresponding .html file) as well as the argument names +can only contain numbers, letters and underscores, or in Regex terms [0-9A-Za-z_]. +Although theoretically an argument name could be a number, it will not be possible to use such an argument in the template.

+

Argument values can be of one of five types:

+
    +
  • string: surrounded by double quotes, single quotes or backticks
  • +
  • bool: true or false
  • +
  • float: a number with a decimal point (e.g., 1.2)
  • +
  • integer: a whole number or its negative counterpart (e.g., 3)
  • +
  • array: an array of any kind of value, except arrays
  • +
+

Malformed values will be silently ignored.

+

Both types of shortcode will also get either a page or section variable depending on where they were used +and a config variable. These values will overwrite any arguments passed to a shortcode so these variable names +should not be used as argument names in shortcodes.

+

🔗Shortcodes without body

+

Simply call the shortcode as if it was a Tera function in a variable block.

+
Here is a YouTube video:
+
+{{ youtube(id="dQw4w9WgXcQ") }}
+
+{{ youtube(id="dQw4w9WgXcQ", autoplay=true) }}
+
+An inline {{ youtube(id="dQw4w9WgXcQ", autoplay=true, class="youtube") }} shortcode
+
+

Note that if you want to have some content that looks like a shortcode but not have Zola try to render it, +you will need to escape it by using {{/* and */}} instead of {{ and }}.

+

🔗Shortcodes with body

+

Let's imagine that we have the following shortcode quote.html template:

+
<blockquote>
+    {{ body }} <br>
+    -- {{ author}}
+</blockquote>
+
+

We could use it in our Markdown file like so:

+
As someone said:
+
+{% quote(author="Vincent") %}
+A quote
+{% end %}
+
+

The body of the shortcode will be automatically passed down to the rendering context as the body variable and needs +to be on a new line.

+

🔗Shortcodes with no arguments

+

Note that for both cases that the parentheses for shortcodes are necessary. +A shortcode without the parentheses will render as plaintext and no warning will be emitted.

+

As an example, this is how an aside shortcode-with-body with no arguments would be defined in aside.html:

+
<aside>
+    {{ body }}
+</aside>
+
+

We could use it in our Markdown file like so:

+
Readers can refer to the aside for more information.
+
+{% aside() %}
+An aside
+{% end %}
+
+

🔗Content similar to shortcodes

+

If you want to have some content that looks like a shortcode but not have Zola try to render it, +you will need to escape it by using {%/* and */%} instead of {% and %}. You won't need to escape +anything else until the closing tag.

+

🔗Shortcode context

+

Every shortcode can access some variables, beyond what you explicitly passed as parameter. These variables are explained in the following subsections:

+
    +
  • invocation count (nth)
  • +
  • current language (lang), unless called from the markdown template filter (in which case it will always be the same value as default_language in configuration, or en when it is unset)
  • +
  • colocated_path
  • +
+

When one of these variables conflict with a variable passed as argument, the argument value will be used.

+

🔗nth: invocation count

+

Every shortcode context is passed in a variable named nth that tracks how many times a particular shortcode has +been invoked in the current Markdown file. Given a shortcode true_statement.html template:

+
<p id="number{{ nth }}">{{ value }} is equal to {{ nth }}.</p>
+
+

It could be used in our Markdown as follows:

+
{{ true_statement(value=1) }}
+{{ true_statement(value=2) }}
+
+

This is useful when implementing custom markup for features such as sidenotes or end notes.

+

🔗lang: current language

+

NOTE: When calling a shortcode from within the markdown template filter, the lang variable will always be en. +If you feel like you need that, please consider using template macros instead. +If you really need that, you can rewrite your Markdown content to pass lang as argument to the shortcode.

+

Every shortcode can access the current language in the lang variable in the context. +This is useful for presenting/filtering information in a shortcode depending in a per-language manner. For example, to display a per-language book cover for the current page in a shortcode called bookcover.md:

+
![Book cover in {{ lang }}](cover.{{ lang }}.png)
+
+

🔗page or section

+

You can access a slighty stripped down version of the equivalent variables in the normal templates. +The following attributes will be empty:

+
    +
  • translations
  • +
  • backlinks
  • +
  • pages
  • +
+

(Note: this is because the rendering of markdown is done before populating the sections)

+

A useful attribute to page in shortcodes is colocated_path. +This is used when you want to pass the name of some assets to shortcodes without repeating the full folders path. +Mostly useful when combined with load_data or resize_image.

+
{% set resized = resize_image(format="jpg", path=page.colocated_path ~ img_name, width=width, op="fit_width") %}
+<img alt="{{ alt }}" src="{{ resized.url | safe }}" />
+
+

🔗Examples

+

Here are some shortcodes for inspiration.

+

🔗YouTube

+

Embed a responsive player for a YouTube video.

+

The arguments are:

+
    +
  • id: the video id (mandatory)
  • +
  • playlist: the playlist id (optional)
  • +
  • class: a class to add to the <div> surrounding the iframe
  • +
  • autoplay: when set to "true", the video autoplays on load
  • +
+

Code:

+
<div {% if class %}class="{{class}}"{% endif %}>
+    <iframe src="https://www.youtube-nocookie.com/embed/{{id}}{% if playlist %}?list={{playlist}}{% endif %}{% if autoplay %}?autoplay=1{% endif %}" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
+</div>
+
+

Usage example:

+
{{ youtube(id="dCKeXuVHl1o") }}
+
+{{ youtube(id="dCKeXuVHl1o", playlist="RDdQw4w9WgXcQ") }}
+
+{{ youtube(id="dCKeXuVHl1o", autoplay=true) }}
+
+{{ youtube(id="dCKeXuVHl1o", autoplay=true, class="youtube") }}
+
+ +

See content processing page for code and example.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/syntax-highlighting/index.html b/documentation/content/syntax-highlighting/index.html new file mode 100644 index 000000000..458b72e6d --- /dev/null +++ b/documentation/content/syntax-highlighting/index.html @@ -0,0 +1,600 @@ + + + + + + + + + Syntax Highlighting | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Syntax Highlighting

+

Zola comes with built-in syntax highlighting but you first +need to enable it in the configuration.

+

Once this is done, Zola will automatically highlight all code blocks +in your content. A code block in Markdown looks like the following:

+
```rust
+let highlight = true;
+```
+
+

You can replace rust with another language or not put anything to get the text +interpreted as plain text.

+

Here is a full list of supported languages and their short names:

+
- ActionScript -> ["as"]
+- Advanced CSV -> ["csv", "tsv"]
+- AppleScript -> ["applescript", "script editor"]
+- ASP -> ["asa"]
+- Assembly x86 (NASM) -> ["asm", "inc", "nasm"]
+- AWK -> ["awk"]
+- Batch File -> ["bat", "cmd"]
+- BibTeX -> ["bib"]
+- Bourne Again Shell (bash) -> [".bash_aliases", ".bash_completions", ".bash_functions", ".bash_login", ".bash_logout", ".bash_profile", ".bash_variables", ".bashrc", ".ebuild", ".eclass", ".profile", ".textmate_init", ".zlogin", ".zlogout", ".zprofile", ".zshenv", ".zshrc", "PKGBUILD", "ash", "bash", "sh", "zsh"]
+- C -> ["c", "h"]
+- C# -> ["cs", "csx"]
+- C++ -> ["C", "c++", "cc", "cp", "cpp", "cxx", "h", "h++", "hh", "hpp", "hxx", "inl", "ipp"]
+- Clojure -> ["clj", "cljc", "cljs", "edn"]
+- ClojureC -> ["boot", "clj", "cljc", "cljs", "cljx"]
+- CMake -> ["CMakeLists.txt", "cmake"]
+- CMake C Header -> ["h.in"]
+- CMake C++ Header -> ["h++.in", "hh.in", "hpp.in", "hxx.in"]
+- CMakeCache -> ["CMakeCache.txt"]
+- Crystal -> ["cr"]
+- CSS -> ["css", "css.erb", "css.liquid"]
+- D -> ["d", "di"]
+- Dart -> ["dart"]
+- Diff -> ["diff", "patch"]
+- Dockerfile -> ["Dockerfile", "dockerfile"]
+- EDN -> ["edn"]
+- Elixir -> ["ex", "exs"]
+- Elm -> ["elm"]
+- Erlang -> ["Emakefile", "emakefile", "erl", "escript", "hrl"]
+- F# -> ["fs", "fsi", "fsx"]
+- Fortran (Fixed Form) -> ["F", "F77", "FOR", "FPP", "f", "f77", "for", "fpp"]
+- Fortran (Modern) -> ["F03", "F08", "F90", "F95", "f03", "f08", "f90", "f95"]
+- Fortran Namelist -> ["namelist"]
+- Friendly Interactive Shell (fish) -> ["fish"]
+- GDScript (Godot Engine) -> ["gd"]
+- Generic Config -> [".dircolors", ".gitattributes", ".gitignore", ".gitmodules", ".inputrc", "Doxyfile", "cfg", "conf", "config", "dircolors", "gitattributes", "gitignore", "gitmodules", "ini", "inputrc", "mak", "mk", "pro"]
+- Git Attributes -> [".gitattributes", "attributes", "gitattributes"]
+- Git Commit -> ["COMMIT_EDITMSG", "MERGE_MSG", "TAG_EDITMSG"]
+- Git Config -> [".gitconfig", ".gitmodules", "gitconfig"]
+- Git Ignore -> [".gitignore", "exclude", "gitignore"]
+- Git Link -> [".git"]
+- Git Log -> ["gitlog"]
+- Git Mailmap -> [".mailmap", "mailmap"]
+- Git Rebase Todo -> ["git-rebase-todo"]
+- GLSL -> ["comp", "frag", "fs", "fsh", "fshader", "geom", "glsl", "gs", "gsh", "gshader", "tesc", "tese", "vert", "vs", "vsh", "vshader"]
+- Go -> ["go"]
+- GraphQL -> ["gql", "graphql", "graphqls"]
+- Graphviz (DOT) -> ["DOT", "dot", "gv"]
+- Groovy -> ["Jenkinsfile", "gradle", "groovy", "gvy"]
+- Handlebars -> ["handlebars", "handlebars.html", "hbr", "hbrs", "hbs", "hdbs", "hjs", "mu", "mustache", "rac", "stache", "template", "tmpl"]
+- Haskell -> ["hs"]
+- HTML -> ["htm", "html", "shtml", "xhtml"]
+- HTML (ASP) -> ["asp"]
+- HTML (EEx) -> ["html.eex", "html.leex"]
+- HTML (Erlang) -> ["yaws"]
+- HTML (Jinja2) -> ["htm.j2", "html.j2", "xhtml.j2", "xml.j2"]
+- HTML (Rails) -> ["erb", "html.erb", "rails", "rhtml"]
+- HTML (Tcl) -> ["adp"]
+- Java -> ["bsh", "java"]
+- Java Properties -> ["properties"]
+- Java Server Page (JSP) -> ["jsp"]
+- JavaScript -> ["htc", "js"]
+- JavaScript (Rails) -> ["js.erb"]
+- Jinja2 -> ["j2", "jinja", "jinja2"]
+- JSON -> ["Pipfile.lock", "ipynb", "json", "sublime-build", "sublime-color-scheme", "sublime-commands", "sublime-completions", "sublime-keymap", "sublime-macro", "sublime-menu", "sublime-mousemap", "sublime-project", "sublime-settings", "sublime-theme"]
+- Julia -> ["jl"]
+- Kotlin -> ["kt", "kts"]
+- LaTeX -> ["ltx", "tex"]
+- Less -> ["css.less", "less"]
+- Linker Script -> ["ld"]
+- Lisp -> ["cl", "clisp", "el", "fasl", "l", "lisp", "lsp", "mud", "scm", "ss"]
+- Literate Haskell -> ["lhs"]
+- lrc -> ["lrc", "lyric"]
+- Lua -> ["lua"]
+- Makefile -> ["GNUmakefile", "Makefile", "Makefile.am", "Makefile.in", "OCamlMakefile", "mak", "make", "makefile", "makefile.am", "makefile.in", "mk"]
+- Markdown -> ["markdn", "markdown", "md", "mdown"]
+- MATLAB -> ["matlab"]
+- MiniZinc (MZN) -> ["dzn", "mzn"]
+- NAnt Build File -> ["build"]
+- Nim -> ["nim", "nims"]
+- Nix -> ["nix"]
+- Objective-C -> ["h", "m"]
+- Objective-C++ -> ["M", "h", "mm"]
+- OCaml -> ["ml", "mli"]
+- OCamllex -> ["mll"]
+- OCamlyacc -> ["mly"]
+- Pascal -> ["dpr", "p", "pas"]
+- Perl -> ["pc", "pl", "pm", "pmc", "pod", "t"]
+- PHP -> ["php", "php3", "php4", "php5", "php7", "phps", "phpt", "phtml"]
+- Plain Text -> ["txt"]
+- PowerShell -> ["ps1", "psd1", "psm1"]
+- Protocol Buffer -> ["proto", "protodevel"]
+- Protocol Buffer (TEXT) -> ["pb.txt", "pbtxt", "proto.text", "prototxt", "textpb"]
+- PureScript -> ["purs"]
+- Python -> ["SConscript", "SConstruct", "Sconstruct", "Snakefile", "bazel", "bzl", "cpy", "gyp", "gypi", "pxd", "pxd.in", "pxi", "pxi.in", "py", "py3", "pyi", "pyw", "pyx", "pyx.in", "rpy", "sconstruct", "vpy", "wscript"]
+- R -> ["R", "Rprofile", "r"]
+- Racket -> ["rkt"]
+- Rd (R Documentation) -> ["rd"]
+- Reason -> ["re", "rei"]
+- Regular Expression -> ["re"]
+- Regular Expressions (Elixir) -> ["ex.re"]
+- reStructuredText -> ["rest", "rst"]
+- Ruby -> ["Appfile", "Appraisals", "Berksfile", "Brewfile", "Cheffile", "Deliverfile", "Fastfile", "Gemfile", "Guardfile", "Podfile", "Rakefile", "Rantfile", "Scanfile", "Snapfile", "Thorfile", "Vagrantfile", "capfile", "cgi", "config.ru", "fcgi", "gemspec", "irbrc", "jbuilder", "podspec", "prawn", "rabl", "rake", "rb", "rbx", "rjs", "ruby.rail", "simplecov", "thor"]
+- Ruby Haml -> ["haml", "sass"]
+- Ruby on Rails -> ["builder", "rxml"]
+- Rust -> ["rs"]
+- Sass -> ["sass"]
+- Scala -> ["sbt", "sc", "scala"]
+- SCSS -> ["scss"]
+- SQL -> ["ddl", "dml", "sql"]
+- SQL (Rails) -> ["erbsql", "sql.erb"]
+- srt -> ["srt", "subrip"]
+- Stylus -> ["styl", "stylus"]
+- SWI-Prolog -> ["pro"]
+- Swift -> ["swift"]
+- Tcl -> ["tcl"]
+- TeX -> ["cls", "sty"]
+- Textile -> ["textile"]
+- TOML -> ["Cargo.lock", "Gopkg.lock", "Pipfile", "tml", "toml"]
+- TypeScript -> ["ts"]
+- TypeScriptReact -> ["tsx"]
+- VimL -> ["vim"]
+- XML -> ["dtml", "opml", "rng", "rss", "svg", "tld", "xml", "xsd", "xslt"]
+- YAML -> ["sublime-syntax", "yaml", "yml"]
+- Zig -> ["zig"]
+
+

Note: due to some issues with the JavaScript syntax, the TypeScript syntax will be used instead.

+

If the language you want to highlight is not on this list, the extra_syntaxes_and_themes configuration option can be used to add additional syntax and theme files.

+

If your site source is laid out as follows:

+
.
+├── config.toml
+├── content/
+│   └── ...
+├── static/
+│   └── ...
+├── syntaxes/
+│   ├── Sublime-Language1/
+│   │   └── lang1.sublime-syntax
+│   └── lang2.sublime-syntax
+└── templates/
+    └── ...
+
+

you would set your extra_syntaxes_and_themes to ["syntaxes", "syntaxes/Sublime-Language1"] to load lang1.sublime-syntax and lang2.sublime-syntax.

+

You can see the list of available themes on the configuration page.

+

🔗Inline VS classed highlighting

+

If you use a highlighting scheme like

+
highlight_theme = "base16-ocean-dark"
+
+

for a code block like

+
```rs
+let highlight = true;
+```
+
+

you get the colors directly encoded in the html file.

+
<pre class="language-rs" style="background-color:#2b303b;">
+    <code class="language-rs">
+        <span style="color:#b48ead;">let</span>
+        <span style="color:#c0c5ce;"> highlight = </span>
+        <span style="color:#d08770;">true</span>
+        <span style="color:#c0c5ce;">;
+    </span>
+  </code>
+</pre>
+
+

This is nice, because your page will load faster if everything is in one file. +But if you would like to have the user choose a theme from a +list, or use different color schemes for dark/light color schemes, you need a +different solution.

+

If you use the special css color scheme

+
highlight_theme = "css"
+
+

you get CSS class definitions, instead.

+
<pre class="language-rs">
+    <code class="language-rs">
+        <span class="z-source z-rust">
+            <span class="z-storage z-type z-rust">let</span> highlight
+            <span class="z-keyword z-operator z-assignment z-rust">=</span>
+            <span class="z-constant z-language z-rust">true</span>
+            <span class="z-punctuation z-terminator z-rust">;</span>
+        </span>
+    </code>
+</pre>
+
+

Zola can output a css file for a theme in the static directory using the highlight_themes_css option.

+
highlight_themes_css = [
+  { theme = "base16-ocean-dark", filename = "syntax-theme-dark.css" },
+  { theme = "base16-ocean-light", filename = "syntax-theme-light.css" },
+]
+
+

You can then support light and dark mode like so:

+
@import url("syntax-theme-dark.css") (prefers-color-scheme: dark);
+@import url("syntax-theme-light.css") (prefers-color-scheme: light);
+
+

Alternately, you can reference the stylesheets in your base template to reduce request chains:

+
<head>
+  <!-- Other content -->
+  <link rel="stylesheet" type="text/css" href="/syntax-theme-dark.css" media="(prefers-color-scheme: dark)" />
+  <link rel="stylesheet" type="text/css" href="/syntax-theme-light.css" media="(prefers-color-scheme: light)" />
+</head>
+
+

Themes can conditionally include code-highlighting stylesheet <link> tags by wrapping them in a conditional:

+
{% if config.markdown.highlight_code and config.markdown.highlight_theme == "css" %}
+<link rel="stylesheet" type="text/css" href="/syntax-theme-dark.css" media="(prefers-color-scheme: dark)" />
+<link rel="stylesheet" type="text/css" href="/syntax-theme-light.css" media="(prefers-color-scheme: light)" />
+{% endif %}
+
+

🔗Annotations

+

You can use additional annotations to customize how code blocks are displayed:

+
    +
  • linenos to enable line numbering.
  • +
+
```rust,linenos
+use highlighter::highlight;
+let code = "...";
+highlight(code);
+```
+
+
    +
  • linenostart to specify the number for the first line (defaults to 1)
  • +
+
```rust,linenos,linenostart=20
+use highlighter::highlight;
+let code = "...";
+highlight(code);
+```
+
+
    +
  • hl_lines to highlight lines. You must specify a list of inclusive ranges of lines to highlight, +separated by (whitespace). Ranges are 1-indexed and linenostart doesn't influence the values, it always refers to the codeblock line number.
  • +
+
```rust,hl_lines=1 3-5 9
+use highlighter::highlight;
+let code = "...";
+highlight(code);
+```
+
+
    +
  • hide_lines to hide lines. You must specify a list of inclusive ranges of lines to hide, +separated by (whitespace). Ranges are 1-indexed.
  • +
+
```rust,hide_lines=1-2
+use highlighter::highlight;
+let code = "...";
+highlight(code);
+```
+
+

🔗Styling codeblocks

+

Depending on the annotations used, some codeblocks will be hard to read without any CSS. We recommend using the following +snippet in your sites:

+
pre {
+  padding: 1rem;
+  overflow: auto;
+}
+/* The line numbers already provide some kind of left/right padding */
+pre[data-linenos] {
+  padding: 1rem 0;
+}
+pre table td {
+  padding: 0;
+}
+/* The line number cells */
+pre table td:nth-of-type(1) {
+  text-align: center;
+  user-select: none;
+}
+pre mark {
+  /* If you want your highlights to take the full width */
+  display: block;
+  /* The default background colour of a mark is bright yellow */
+  background-color: rgba(254, 252, 232, 0.9);
+}
+pre table {
+  width: 100%;
+  border-collapse: collapse;
+}
+
+

This snippet makes the highlighting work on the full width and ensures that a user can copy the content without +selecting the line numbers. Obviously you will probably need to adjust it to fit your site style.

+

Here's an example with all the options used: scss, linenos, linenostart=10, hl_lines=3-4 8-9, hide_lines=2 7 with the +snippet above.

+
10pre mark { +
12 display: block; +
13 color: currentcolor; +
14} +
15pre table td:nth-of-type(1) { +
17 color: #6b6b6b; +
18 font-style: italic; +
19} +
+

Line 2 and 7 are comments that are not shown in the final output.

+

When line numbers are active, the code block is turned into a table with one row and two cells. The first cell contains the line number and the second cell contains the code. +Highlights are done via the <mark> HTML tag. When a line with line number is highlighted two <mark> tags are created: one around the line number(s) and one around the code.

+

🔗Custom Highlighting Themes

+

The default theme for syntax highlighting is called base16-ocean-dark, you can choose another theme from the built in set of highlight themes using the highlight_theme configuration option. +For example, this documentation site currently uses the kronuz theme, which is built in.

+
[markdown]
+highlight_code = true
+highlight_theme = "kronuz"
+
+

Alternatively, the extra_syntaxes_and_themes configuration option can be used to add additional theme files. +You can load your own highlight theme from a TextMate .tmTheme file.

+

It works the same way as adding extra syntaxes. It should contain a list of paths to folders containing the .tmTheme files you want to include. +You would then set highlight_theme to the name of one of these files, without the .tmTheme extension.

+

If your site source is laid out as follows:

+
.
+├── config.toml
+├── content/
+│   └── ...
+├── static/
+│   └── ...
+├── highlight_themes/
+│   ├── MyGroovyTheme/
+│   │   └── theme1.tmTheme
+│   ├── theme2.tmTheme
+└── templates/
+    └── ...
+
+

you would set your extra_syntaxes_and_themes to ["highlight_themes", "highlight_themes/MyGroovyTheme"] to load theme1.tmTheme and theme2.tmTheme. +Then choose one of them to use, say theme1, by setting highlight_theme = theme1.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/table-of-contents/index.html b/documentation/content/table-of-contents/index.html new file mode 100644 index 000000000..09095fd38 --- /dev/null +++ b/documentation/content/table-of-contents/index.html @@ -0,0 +1,298 @@ + + + + + + + + + Table of Contents | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Table of Contents

+

Each page/section will automatically generate a table of contents for itself based on the headers generated with markdown.

+

It is available in the template through the page.toc or section.toc variable. +You can view the template variables +documentation for information on its structure.

+

Here is an example of using that field to render a two-level table of contents:

+
{% if page.toc %}
+    <ul>
+    {% for h1 in page.toc %}
+        <li>
+            <a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
+            {% if h1.children %}
+                <ul>
+                    {% for h2 in h1.children %}
+                        <li>
+                            <a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
+                        </li>
+                    {% endfor %}
+                </ul>
+            {% endif %}
+        </li>
+    {% endfor %}
+    </ul>
+{% endif %}
+
+

While headers are neatly ordered in this example, it will work just as well with disjoint headers.

+

Note that all existing HTML tags from the title will NOT be present in the table of contents to +avoid various issues.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/content/taxonomies/index.html b/documentation/content/taxonomies/index.html new file mode 100644 index 000000000..14cb00bad --- /dev/null +++ b/documentation/content/taxonomies/index.html @@ -0,0 +1,384 @@ + + + + + + + + + Taxonomies | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Taxonomies

+

Zola has built-in support for taxonomies. Taxonomies are a way for users to group content according to user-defined categories.

+

🔗Definitions

+
    +
  • Taxonomy: A category that can be used to group content
  • +
  • Term: A specific group within a taxonomy
  • +
  • Value: A piece of content that can be associated with a term
  • +
+

🔗Example: a movie website

+

Imagine that you want to make a website to display information about various movies. In that case you could use the following taxonomies:

+
    +
  • Director
  • +
  • Genres
  • +
  • Awards
  • +
  • Release year
  • +
+

Then at build time Zola can create pages for each taxonomy listing all of the known terms as well as pages for each term in a taxonomy, listing all of the pieces of content associated with that term.

+

Imagine again we have the following movies:

+
- Shape of water                   <--- Value
+  - Director                         <--- Taxonomy
+    - Guillermo Del Toro                 <--- Term
+  - Genres                            <--- Taxonomy
+    - Thriller                           <--- Term
+    - Drama                              <--- Term
+  - Awards                           <--- Taxonomy
+    - Golden globe                         <--- Term
+    - Academy award                        <--- Term
+    - BAFTA                                <--- Term
+  - Release year                      <--- Taxonomy
+    - 2017                                <--- Term
+    
+- The Room:                         <--- Value
+  - Director                           <--- Taxonomy
+    - Tommy Wiseau                         <--- Term
+  - Genres                              <--- Taxonomy
+    - Romance                              <--- Term
+    - Drama                                <--- Term
+  - Release Year                       <--- Taxonomy
+    - 2003                                 <--- Term
+
+- Bright                           <--- Value
+  - Director                           <--- Taxonomy
+    - David Ayer                           <--- Term
+  - Genres                              <--- Taxonomy
+    - Fantasy                              <--- Term
+    - Action                               <--- Term
+  - Awards                             <--- Taxonomy
+    - California on Location Awards        <--- Term
+  - Release Year                       <--- Taxonomy
+    - 2017                                 <--- Term
+
+

In this example the page for Release year would include links to pages for both 2003 and 2017, where the page for 2017 would list both Shape of Water and Bright.

+

🔗Configuration

+

A taxonomy has six variables:

+
    +
  • name: a required string that will be used in the URLs, usually the plural version (i.e., tags, categories, etc.)
  • +
  • paginate_by: if this is set to a number, each term page will be paginated by this much.
  • +
  • paginate_path: if set, this path will be used by the paginated page and the page number will be appended after it. +For example the default would be page/1.
  • +
  • feed: if set to true, a feed (atom by default) will be generated for each term.
  • +
  • lang: only set this if you are making a multilingual site and want to indicate which language this taxonomy is for
  • +
  • render: if set to false, pages will not be rendered for the taxonomy or for individual terms.
  • +
+

Insert into the configuration file (config.toml):

+

⚠️ Place the taxonomies key in the main section and not in the [extra] section

+

Example 1: (one language)

+
taxonomies = [
+    { name = "director", feed = true},
+    { name = "genres", feed = true},
+    { name = "awards", feed = true},
+    { name = "release-year", feed = true},
+]
+
+

Example 2: (multilingual site)

+
# These taxonomies go in the main section
+taxonomies = [
+    {name = "director", feed = true},
+    {name = "genres", feed = true},
+    {name = "awards", feed = true},
+    {name = "release-year", feed = true},
+]
+
+[languages.fr]
+taxonomies = [
+    {name = "director", feed = true},
+    {name = "genres", feed = true},
+    {name = "awards", feed = true},
+    {name = "release-year", feed = true},
+]
+
+

🔗Using taxonomies

+

Once the configuration is done, you can then set taxonomies in your content and Zola will pick them up:

+

Example:

+
+++
+title = "Shape of water"
+date = 2019-08-15 # date of the post, not the movie
+[taxonomies]
+director=["Guillermo Del Toro"]
+genres=["Thriller","Drama"]
+awards=["Golden Globe", "Academy award", "BAFTA"]
+release-year = ["2017"]
++++
+
+

🔗Output paths

+

In a similar manner to how section and pages calculate their output path:

+
    +
  • the taxonomy name is never slugified
  • +
  • the taxonomy term (e.g. as specific tag) is slugified when slugify.taxonomies is enabled ("on", the default) in the configuration
  • +
+

The taxonomy pages are then available at the following paths:

+
$BASE_URL/$NAME/ (taxonomy)
+$BASE_URL/$NAME/$SLUG (taxonomy entry)
+
+

Note that taxonomies are case insensitive so terms that have the same slug will get merged, e.g. sections and pages containing the tag "example" will be shown in the same taxonomy page as ones containing "Example"

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/aws-s3/index.html b/documentation/deployment/aws-s3/index.html new file mode 100644 index 000000000..2a9859054 --- /dev/null +++ b/documentation/deployment/aws-s3/index.html @@ -0,0 +1,343 @@ + + + + + + + + + AWS S3 Bucket | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

AWS S3 Bucket

+

Amazon Simple Storage Service (Amazon S3) is an object storage service offering static website hosting. We're going to look at the setup required to build and deploy your Zola website to S3 via GitHub Actions.

+

🔗AWS Setup

+

The official AWS developer guide has detailed instruction on how to create your bucket and set it up correctly for static website hosting. In AWS you can not only host the website files, but also buy a domain name and speed up your website via their global CDN (CloudFront).

+

For GitHub Actions to modify the files in your bucket, you need to create an IAM user in your AWS account that has just enough permissions to perform what we need and no more.

+

First we need to create a new policy by logging on to AWS Console and going to IAM > Policies > Create policy. Switch from the visual editor to JSON and paste the following snippet. Remember to update your bucket name:

+
{
+  "Version": "2012-10-17",
+  "Statement": [
+    {
+      "Sid": "AccessToWebsiteBuckets",
+      "Effect": "Allow",
+      "Action": [
+        "s3:PutBucketWebsite",
+        "s3:PutObject",
+        "s3:PutObjectAcl",
+        "s3:GetObject",
+        "s3:ListBucket",
+        "s3:DeleteObject"
+      ],
+      "Resource": [
+        "arn:aws:s3:::Bucket-Name"
+        "arn:aws:s3:::Bucket-Name/*"
+      ]
+    },
+    {
+      "Sid": "AccessToCloudfront",
+      "Effect": "Allow",
+      "Action": ["cloudfront:GetInvalidation", "cloudfront:CreateInvalidation"],
+      "Resource": "*"
+    }
+  ]
+}
+
+

The AccessToCloudfront portion is not required if you're not going to speed up your website with CloudFront.

+

Once the policy is created you need to create a new user under IAM > Users. Give it a name such as github-actions-user. On the Set permissions step select Attach policies directly and find the policy we created in the last step.

+

From the list of users click on your newly created account and then open the Security Credentials tab. Under Access keys select > Create access key and choose Command Line Interface (CLI). Click "I understand the above recommendation" and then Create access key. Note the Access key ID and Secret access key.

+

🔗Setup Secrets in GitHub

+

The access keys we just created need to be configured as secrets in your GitHub repo. To do so, navigate to Setting > expand Secrets and variables > click on Actions.

+

Under Repository secrets click Add repository secret. In the Name field enter AWS_ACCESS_KEY_ID and in the Secret field enter the value from the previous step. Do the same for the secret access key, naming it AWS_SECRET_ACCESS_KEY. Finally create one secret for your bucket name S3_BUCKET and one CLOUDFRONT_DISTRIBUTION_ID if you have created a distribution for your website.

+

🔗GitHub Actions

+

Next we need to create the Github Action to build and deploy our files to S3. We need to create a workflow file in .github/workflows directory of our repository. This can be done by navigating to the Actions tab in GitHub or by commiting the file from your machine.

+

.github/workflows/publish.yml:

+
name: Build and Publish to AWS
+on:
+  push:
+    branches:
+      - main
+jobs:
+  run:
+    runs-on: ubuntu-latest
+    timeout-minutes: 10
+    steps:
+      - uses: actions/checkout@v3
+      - uses: taiki-e/install-action@v2
+        with:
+          tool: zola@0.17.2
+      - name: Build
+        run: zola build
+      - uses: reggionick/s3-deploy@v4
+        env:
+          AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+          AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+        with:
+          folder: public
+          bucket: ${{ secrets.S3_BUCKET }}
+          private: true
+          bucket-region: us-east-1
+          # Use the next two only if you have created a CloudFront distribution
+          dist-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
+          invalidation: /*
+
+

Note, that you may need to change the branch name in the above snippet if you desire a different behavior.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/cloudflare-pages/index.html b/documentation/deployment/cloudflare-pages/index.html new file mode 100644 index 000000000..3b4c063d2 --- /dev/null +++ b/documentation/deployment/cloudflare-pages/index.html @@ -0,0 +1,309 @@ + + + + + + + + + Cloudflare Pages | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Cloudflare Pages

+

Cloudflare is a cloud solutions provider with a huge proprietary content delivery network (CDN). Like Netlify or Vercel, Cloudflare Pages makes the deployment process flexible and easy. You can add a GitHub repo to the service and build & host Zola-based websites after each PR automatically.

+

🔗Step-by-step

+
    +
  1. Sign in or create a new Cloudflare account and choose "Pages" on the right nav column
  2. +
  3. Press the button "Create a project"
  4. +
  5. Select the GitHub repo that contains your Zola website and connect it to Cloudflare Pages
  6. +
  7. Click "Begin setup"
  8. +
  9. Enter your project name. Keep in mind that if you would like to use the default Pages domain (pages.dev), this will be your website's future URL ("yourprojectname.pages.dev"). Additionally, select a production branch.
  10. +
  11. In Build settings, select Zola as the Framework preset. Build command and Build output directory will be filled automatically.
  12. +
  13. Toggle Environment variables below and add ZOLA_VERSION as a variable name. Use 0.17.2 or a different Zola version as the value.
  14. +
  15. Finally, save and deploy.
  16. +
+

Your website is now built and deployed to Cloudflare's network! You can add a custom domain or modify settings in the Pages dashboard.

+

You may find documentation and guides like Getting started with Cloudflare Pages and +Deploying Zola with Cloudflare Pages in the Developers portal.

+

🔗Troubleshooting

+

Some tips to help troubleshoot issues getting started with Cloudflare Pages.

+

🔗zola: not found

+

If you see build output that resembles something like this:

+
23:03:54.609	> build
+23:03:54.609	> zola build $BUILD_OPTS && npx tailwindcss -i ./public/input.css -o ./public/style.css -m
+23:03:54.609
+23:03:54.621	sh: 1: zola: not found
+23:03:54.635	Failed: Error while executing user command. Exited with error code: 127
+23:03:54.644	Failed: build command exited with code: 1
+23:03:55.699	Failed: error occurred while running build command
+
+

Then it might be due to an outstanding issue. There are currently two recommended workarounds:

+

🔗Change the build system version to v1

+

From within the workers & pages dash, go to the following: + Settings > Builds & deployments > Build system version > Configure build system

+

Then select v1 and save.

+

🔗Or use UNSTABLE_PRE_BUILD environment variable + asdf

+

From within the workers & pages dash, do the following: + Settings > Environment variables > Edit variables

+

And add an environment variable UNSTABLE_PRE_BUILD, with the following value and save.

+
asdf plugin add zola https://github.com/salasrod/asdf-zola && asdf install zola 0.18.0 && asdf global zola 0.18.0
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/codeberg-pages/index.html b/documentation/deployment/codeberg-pages/index.html new file mode 100644 index 000000000..ed24a49f7 --- /dev/null +++ b/documentation/deployment/codeberg-pages/index.html @@ -0,0 +1,337 @@ + + + + + + + + + Codeberg Pages | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Codeberg Pages

+

We are going to use the Woodpecker CI hosted by Codeberg to host the site on Codeberg Pages.

+

🔗Configuring your repository

+

It is required that you create a repository on Codeberg that contains only your Zola project. The Zola directory structure should be in the root of your repository.

+

Information on how to create and manage a repository on Codeberg can be found at https://docs.codeberg.org/getting-started/first-repository/.

+

🔗Ensuring that Woodpecker CI can access your theme

+

Depending on how you added your theme, your repository may not contain it. The best way to ensure that the theme is added is to use submodules. Make sure you use the https version of the URL.

+
git submodule add <theme_url> themes/<theme_name>
+
+

For example, this could look like:

+
git submodule add https://github.com/getzola/hyde.git themes/hyde
+
+

🔗Setting up Woodpecker CI

+

Assuming you have access to Codeberg's Woodpecker CI, we can build the site and automatically deploy it to Codeberg Pages on every commit.

+

First, place the following sample Zola CI file in the root of your project:

+
# Exclude the pipeline to run on the pages branch
+when:
+  branch:
+    exclude: pages
+
+# Clone recursively to fully clone the themes given as Git submodules
+clone:
+  git:
+    image: woodpeckerci/plugin-git
+    settings:
+      recursive: true
+
+steps:
+  # Build Zola static files
+  build:
+    image: alpine:edge
+    commands:
+      - apk add zola
+      - zola build
+    when:
+      event: [push, pull_request]
+
+  publish:
+    image: bitnami/git
+    secrets: [mail, codeberg_token]
+    commands:
+      # Configure Git
+      - git config --global user.email $MAIL
+      - git config --global user.name "Woodpecker CI"
+      # Clone the output branch
+      - git clone --branch pages https://$CODEBERG_TOKEN@codeberg.org/$CI_REPO.git $CI_REPO_NAME
+      # Enter the output branch
+      - cd $CI_REPO_NAME
+      # Remove old files
+      - git rm -r "*" || true # Don't fail if there's nothing to remove
+      # Copy the output of the build step
+      - cp -ar ../public/. .
+      # Commit and push all static files with the source commit hash
+      - git add --all
+      - git commit -m "Woodpecker CI ${CI_COMMIT_SHA} [SKIP CI]" --allow-empty
+      - git push
+    when:
+      event: [push]
+
+

Then add the following secrets to Woodpecker:

+
    +
  • mail: Your email address as used by Codeberg.
  • +
  • codeberg_token: Codeberg access token with write:repository permission.
  • +
+

Once done, you can trigger the CI by pushing something to the repository, and Woodpecker will build the site and copy the resulting site to the pages branch and it will be available at https://<repository>.<user>.codeberg.page.

+

For custom domain, create the .domains file inside the ./static/ directory so that it will be copied to the resulting build.

+

More information about Codeberg Pages is available in the official Codeberg documentation.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/docker-image/index.html b/documentation/deployment/docker-image/index.html new file mode 100644 index 000000000..538115fdb --- /dev/null +++ b/documentation/deployment/docker-image/index.html @@ -0,0 +1,292 @@ + + + + + + + + + Docker image | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Docker image

+

If you have to distribute a Zola based web site through Docker, it's easy to do with a multi-stage build.

+

Here is an example that builds the current folder, and put the result in a docker image that will be served by +static-web-server, a minimalist web server written in rust.

+

Of course, you may want to replace the second stage with another static web server like Nginx or Apache.

+
FROM ghcr.io/getzola/zola:v0.17.1 as zola
+
+COPY . /project
+WORKDIR /project
+RUN ["zola", "build"]
+
+FROM ghcr.io/static-web-server/static-web-server:2
+WORKDIR /
+COPY --from=zola /project/public /public
+
+

To build your website as a docker image, you then run:

+
docker build -t my_website:latest .
+
+

To test your site, just run the docker image and browse http://localhost:8000

+
docker run --rm -p 8000:80 my_website:latest
+
+

Note that, if you want to be able to use your docker image from multiple locations, you'll have to set base_url to /.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/edgio/index.html b/documentation/deployment/edgio/index.html new file mode 100644 index 000000000..4a0ee4c8e --- /dev/null +++ b/documentation/deployment/edgio/index.html @@ -0,0 +1,309 @@ + + + + + + + + + Edgio | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Edgio

+

If you don't have an account with Edgio, you can sign up here.

+

🔗Manual deploys

+

For a command-line manual deploy, follow these steps:

+
    +
  1. Install the Edgio CLI:
  2. +
+
npm i -g @edgio/cli
+
+
    +
  1. Create a package.json at the root of your project with the following:
  2. +
+
npm init -y
+
+
    +
  1. Initialize your project with:
  2. +
+
edgio init
+
+
    +
  1. Update routes.js at the root of your project to the following:
  2. +
+
// This file was added by edgio init.
+// You should commit this file to source control.
+
+import { Router } from '@edgio/core/router'
+
+export default new Router().static('public')
+
+
    +
  1. Build your zola app:
  2. +
+
zola build
+
+
    +
  1. Deploy!
  2. +
+
edgio deploy
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/flyio/index.html b/documentation/deployment/flyio/index.html new file mode 100644 index 000000000..eb0d05d7d --- /dev/null +++ b/documentation/deployment/flyio/index.html @@ -0,0 +1,292 @@ + + + + + + + + + Fly.io | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Fly.io

+

If you don't have an account with fly.io, you can sign up here.

+

Then install the flyctl tool following the instructions here.

+

Create a Dockerfile:

+
FROM ghcr.io/getzola/zola:v0.17.2 AS builder
+
+WORKDIR /app
+COPY . .
+RUN ["zola", "build"]
+
+FROM joseluisq/static-web-server:2
+COPY --from=builder /app/public /public
+ENV SERVER_PORT 8080
+
+

You can now run fly launch. It will detect the Dockerfile and mostly auto-configure everything. Fill out the necessary information, but say "no" to (1) launching any databases and (2) deploying immediately.

+

Take note of the hostname assigned to your app.

+

If you already have a Zola site you must now ensure that base_url in config.toml is set correctly using the hostname from your app (or whatever domain you have pointing to the app):

+
base_url = "https://white-snow-9922.fly.dev"
+
+

If you don't have an existing site, initialize one with zola init -f and remember to set the correct base_url.

+

You're now ready to launch your site! Run flyctl deploy and have fun!

+

Finally, to set up continuous deployment of your site from GitHub, follow this guide, steps 4-8. Any changes to your site will now be pushed automatically.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/github-pages/index.html b/documentation/deployment/github-pages/index.html new file mode 100644 index 000000000..b5f515b8d --- /dev/null +++ b/documentation/deployment/github-pages/index.html @@ -0,0 +1,402 @@ + + + + + + + + + GitHub Pages | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

GitHub Pages

+

By default, GitHub Pages uses Jekyll (a ruby based static site generator), +but you can also publish any generated files provided you have an index.html file in the root of a branch called +gh-pages, main or master. In addition you can publish from a docs directory in your repository. That branch name can +also be manually changed in the settings of a repository. To serve a site at <username>.github.io or +<organization>.github.io, you must name the repository <username>.github.io or +<organization>.github.io (otherwise GitHub will append the repository name to the URL, e.g.: +<username>.github.io/<repositoryname>.

+

We can use any continuous integration (CI) server to build and deploy our site. For example:

+ +

In either case, it seems to work best if you use git submodule to include your theme, e.g.:

+
git submodule add https://github.com/getzola/after-dark.git themes/after-dark
+
+

🔗Github Actions

+

Using Github Actions for the deployment of your Zola-Page on Github-Pages is pretty easy. You basically need three things:

+
    +
  1. A Personal access token to give the Github Action the permission to push into your repository ONLY IF you are publishing from another repo
  2. +
  3. Create the Github Action.
  4. +
  5. Check the Github Pages section in repository settings.
  6. +
+

Let's start with the token. Remember, if you are publishing the site on the same repo, you do not need to follow that step. But you will still need to pass in the automatic GITHUB_TOKEN as explained here.

+

For creating the token either click on here or go to Settings > Developer Settings > Personal access tokens. Under the Select Scopes section, give it public_repo permissions and click Generate token. Then copy the token, navigate to your repository and add in the Settings tab the Secret TOKEN and paste your token in it.

+

Next we need to create the Github Action. Here we can make use of the zola-deploy-action. Go to the Actions tab of your repository, click on set up a workflow yourself to get a blank workflow file. Copy the following script into it and commit it afterwards; note that you may need to change the github.ref branch from main to master or similar, as the action will only run for the branch you choose. +If you get a permissions denied error, you may need to change the workflow permissions to read and write in Settings > Actions > Workflow permissions.

+
# On every push this script is executed
+on: push
+name: Build and deploy GH Pages
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    if: github.ref == 'refs/heads/main'
+    steps:
+      - name: checkout
+        uses: actions/checkout@v4
+      - name: build_and_deploy
+        uses: shalzz/zola-deploy-action@v0.17.2
+        env:
+          # Target branch
+          PAGES_BRANCH: gh-pages
+          # Provide personal access token
+          TOKEN: ${{ secrets.TOKEN }}
+          # Or if publishing to the same repo, use the automatic token
+          #TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+

This script is pretty simple, because the zola-deploy-action is doing everything for you. You just need to provide some details. For more configuration options check out the README.

+

By committing the action your first build is triggered. Wait until it's finished, then you should see in your repository a new branch gh-pages with the compiled Zola page in it.

+

Finally we need to check the Github Pages section of the repository settings. Click on the Settings tab and scroll down to the Github Pages section. Check if the source is set to gh-pages branch and the directory is / (root). You should also see your Github Pages link.

+

There you can also configure a custom domain and Enforce HTTPS mode. Before configuring a custom domains, please check out this.

+

If you want to keep the source of your site in a private repository (including, for example, draft +posts), adapt the following .github/workflows/main.yml (making sure to update the branches as required):

+
on: push
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    if: github.ref != 'refs/heads/main'
+    steps:
+      - name: 'checkout'
+        uses: actions/checkout@v4
+      - name: 'build'
+        uses: shalzz/zola-deploy-action@v0.17.2
+        env:
+          PAGES_BRANCH: gh-pages
+          BUILD_DIR: .
+          TOKEN: ${{ secrets.TOKEN }}
+          # BUILD_ONLY: true
+  build_and_deploy:
+    runs-on: ubuntu-latest
+    if: github.ref == 'refs/heads/main'
+    steps:
+      - name: 'checkout'
+        uses: actions/checkout@v4
+      - name: 'build and deploy'
+        uses: shalzz/zola-deploy-action@v0.17.2
+        env:
+          PAGES_BRANCH: master
+          BUILD_DIR: .
+          TOKEN: ${{ secrets.PUBLIC_TOKEN }}
+          REPOSITORY: username/username.github.io
+
+

by substituting your username or organization.

+

🔗Travis CI

+

Alternatively, you can use Travis CI to automatically publish the site. If you are not using Travis +already, you will need to login with the GitHub OAuth and activate Travis for the repository. +Don't forget to also check if your repository allows GitHub Pages in its settings.

+

🔗Ensure that Travis can access your theme

+

Depending on how you added your theme, Travis may not know how to access +it. The best way to ensure that it will have full access to the theme is to use git +submodules. When doing this, ensure that you are using the https version of the URL.

+
$ git submodule add {THEME_URL} themes/{THEME_NAME}
+
+

🔗Allowing Travis to push to GitHub

+

Before pushing anything, Travis needs a Github private access key to make changes to your repository. +If you're already logged in to your account, just click here to go to +your tokens page. +Otherwise, navigate to Settings > Developer Settings > Personal Access Tokens. +Generate a new token and give it any description you'd like. +Under the "Select Scopes" section, give it repo permissions. Click "Generate token" to finish up.

+

Your token will now be visible. +Copy it into your clipboard and head back to Travis. +Once on Travis, click on your project, and navigate to "Settings". Scroll down to "Environment Variables" and input a name of GH_TOKEN with a value of your access token. +Make sure that "Display value in build log" is off, and then click add. Now Travis has access to your repository.

+

🔗Setting up Travis

+

We're almost done. We just need some scripts in a .travis.yml file to tell Travis what to do.

+

NOTE: The script below assumes that we're taking the code from the code branch and will generate the HTML to be published in the master branch of the same repository. You're free to use any other branch for the Markdown files but if you want to use <username>.github.io or <org>.github.io, the destination branch MUST be master.

+
language: minimal
+
+before_script:
+  # Download and unzip the zola executable
+  # Replace the version numbers in the URL by the version you want to use
+  - curl -s -L https://github.com/getzola/zola/releases/download/v0.13.0/zola-v0.13.0-x86_64-unknown-linux-gnu.tar.gz | sudo tar xvzf - -C /usr/local/bin
+
+script:
+  - zola build
+
+# If you are using a different folder than `public` for the output directory, you will
+# need to change the `zola` command and the `ghp-import` path
+after_success: |
+  [ $TRAVIS_BRANCH = code ] &&
+  [ $TRAVIS_PULL_REQUEST = false ] &&
+  zola build &&
+  sudo pip install ghp-import &&
+  ghp-import -n public -b master &&
+  git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git master
+
+

If your site is using a custom domain, you will need to mention it in the ghp-import command: +ghp-import -c vaporsoft.net -n public for example.

+

Credits: The Travis-CI section of this page is based on the article https://vaporsoft.net/publishing-gutenberg-to-github/

+

🔗Custom Domain

+

If you're using a custom domain for your GitHub Pages site, put the CNAME in static/CNAME so that Zola puts it in the root of the public folder which is where GitHub expects it to be.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/gitlab-pages/index.html b/documentation/deployment/gitlab-pages/index.html new file mode 100644 index 000000000..9e54fce66 --- /dev/null +++ b/documentation/deployment/gitlab-pages/index.html @@ -0,0 +1,361 @@ + + + + + + + + + GitLab Pages | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

GitLab Pages

+

We are going to use the GitLab Runner in GitLab CI/CD to host +the site on GitLab Pages.

+

🔗Configuring your repository

+

It is possible to host your Zola site on either the SaaS instance offered by +GitLab (https://gitlab.com) or on a self-hosted instance.

+

It is recommended to create a repository on GitLab that contains solely your +Zola project. The Zola's directory structure +should be located in the root directory of your repository.

+

For information on how to create and manage a repository on GitLab, refer to:

+

https://docs.gitlab.com/ee/user/project/repository/

+

🔗Ensuring that the runner can access your theme

+

Depending on how you added your theme, your repository may not contain it. +The best way to ensure that the theme will be added is to use submodules. +When doing this, ensure that you are using the https version of the URL.

+
git submodule add {THEME_URL} themes/{THEME_NAME}
+
+

For example, this could look like:

+
git submodule add https://github.com/getzola/hyde.git themes/hyde
+
+

🔗Setting up the GitLab Runner

+

The GitLab Runner needs to know how to create your site in order to deploy +it to the GitLab Pages server.

+

We provide you with a template to accomplish this task easily. +Create a file called .gitlab-ci.yml in the root directory of your +repository and copy the contents of the template below.

+
stages:
+  - deploy
+
+default:
+  image: debian:stable-slim
+
+variables:
+  # The runner will be able to pull your Zola theme when the strategy is
+  # set to "recursive".
+  GIT_SUBMODULE_STRATEGY: "recursive"
+
+  # If you don't set a version here, your site will be built with the latest
+  # version of Zola available in GitHub releases.
+  # Use the semver (x.y.z) format to specify a version. For example: "0.17.2" or "0.18.0".
+  ZOLA_VERSION:
+    description: "The version of Zola used to build the site."
+    value: ""
+
+pages:
+  stage: deploy
+  script:
+    - |
+      apt-get update --assume-yes && apt-get install --assume-yes --no-install-recommends wget ca-certificates
+      if [ $ZOLA_VERSION ]; then
+        zola_url="https://github.com/getzola/zola/releases/download/v$ZOLA_VERSION/zola-v$ZOLA_VERSION-x86_64-unknown-linux-gnu.tar.gz"
+        if ! wget --quiet --spider $zola_url; then
+          echo "A Zola release with the specified version could not be found.";
+          exit 1;
+        fi
+      else
+        github_api_url="https://api.github.com/repos/getzola/zola/releases/latest"
+        zola_url=$(
+          wget --output-document - $github_api_url |
+          grep "browser_download_url.*linux-gnu.tar.gz" |
+          cut --delimiter : --fields 2,3 |
+          tr --delete "\" "
+        )
+      fi
+      wget $zola_url
+      tar -xzf *.tar.gz
+      ./zola build
+
+  artifacts:
+    paths:
+      # This is the directory whose contents will be deployed to the GitLab Pages
+      # server.
+      # GitLab Pages expects a directory with this name by default.
+      - public
+
+  rules:
+    # This rule makes it so that your website is published and updated only when
+    # you push to the default branch of your repository (e.g. "master" or "main").
+    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
+
+

Please, keep in mind that this template assumes you are using the +Docker executor +on your GitLab Runner. +Feel free to adjust the file to your workflow and specific requirements.

+

After you push this file to the default branch of your repository +(e.g. "master" or "main"), your site will be ready. The GitLab CI/CD pipelines +will ensure your site is published and updated automatically.

+

On the left sidebar of GitLab, navigate to Deploy > Pages to find the URL of your +website inside the Access pages section.

+

More information on how to host your site on GitLab Pages is available +in the official GitLab documentation.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/index.html b/documentation/deployment/index.html new file mode 100644 index 000000000..01523fa5b --- /dev/null +++ b/documentation/deployment/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/documentation/deployment/netlify/index.html b/documentation/deployment/netlify/index.html new file mode 100644 index 000000000..9b65c44c1 --- /dev/null +++ b/documentation/deployment/netlify/index.html @@ -0,0 +1,324 @@ + + + + + + + + + Netlify | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Netlify

+

If you don't have an account with Netlify, you can sign up for one.

+

🔗Automatic deploys

+

Once you are in the admin interface, you can add a site from a Git provider (GitHub, GitLab or Bitbucket). At the end +of this process, you can select the deploy settings for the project:

+
    +
  • build command: zola build (replace the version number in the variable by the version you want to use)
  • +
  • publish directory: the path to where the public directory is
  • +
  • image selection: use the latest
  • +
  • Environment variables: ZOLA_VERSION with for example 0.13.0 as value
  • +
+

With this setup, your site should be automatically deployed on every commit on master. For ZOLA_VERSION, you may +use any of the tagged release versions in the GitHub repository. Netlify will automatically fetch the tagged version +and use it to build your site.

+

However, if you want to use everything that Netlify gives you, you should also publish temporary sites for pull requests.

+

This is done by adding the following netlify.toml file in your repository and removing the build command/publish +directory in the admin interface.

+
[build]
+# This assumes that the Zola site is in a docs folder. If it isn't, you don't need
+# to have a `base` variable but you do need the `publish` and `command` variables.
+base    = "docs"
+publish = "docs/public"
+command = "zola build"
+
+[build.environment]
+# Set the version name that you want to use and Netlify will automatically use it.
+ZOLA_VERSION = "0.13.0"
+
+# The magic for deploying previews of branches.
+# We need to override the base url with whatever url Netlify assigns to our
+# preview site.  We do this using the Netlify environment variable
+# `$DEPLOY_PRIME_URL`.
+
+[context.deploy-preview]
+command = "zola build --base-url $DEPLOY_PRIME_URL"
+
+

🔗Manual deploys

+

If you would prefer to use a version of Zola that isn't a tagged release (for example, after having built Zola from +source and made modifications), then you will need to manually deploy your public folder to Netlify. You can do +this through Netlify's web GUI or via the command line.

+

For a command-line manual deploy, follow these steps:

+
    +
  1. Generate a Personal Access Token from the settings section of your Netlify account (not an OAuth Application).
  2. +
  3. Build your site with zola build.
  4. +
  5. Create a zip folder containing the public directory.
  6. +
  7. Run the curl command below, filling in your values for PERSONAL_ACCESS_TOKEN_FROM_STEP_1, FILE_NAME.zip +and SITE_NAME.
  8. +
  9. (Optional) delete the zip folder.
  10. +
+
curl -H "Content-Type: application/zip" \
+     -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN_FROM_STEP_1" \
+     --data-binary "@FILE_NAME.zip" \
+     https://api.netlify.com/api/v1/sites/SITE_NAME.netlify.com/deploys
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/overview/index.html b/documentation/deployment/overview/index.html new file mode 100644 index 000000000..a010d9299 --- /dev/null +++ b/documentation/deployment/overview/index.html @@ -0,0 +1,273 @@ + + + + + + + + + Overview | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Overview

+

Zola outputs plain files, no databases needed. This makes hosting and deployment +trivial on many providers.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/sourcehut/index.html b/documentation/deployment/sourcehut/index.html new file mode 100644 index 000000000..bd7e7e765 --- /dev/null +++ b/documentation/deployment/sourcehut/index.html @@ -0,0 +1,315 @@ + + + + + + + + + Sourcehut Pages | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Sourcehut Pages

+

Deploying your static Zola website on Sourcehut Pages is very simple.

+

You need to create a .build.yml manifest file in the root folder of your Zola project and push your changes to the +Sourcehut git/hg repository. +To create your .build.yml file you can start with a template or use the following example:

+
image: alpine/edge
+packages:
+  - hut
+  - zola
+oauth: pages.sr.ht/PAGES:RW
+environment:
+  site: your_username.srht.site
+sources:
+  - https://git.sr.ht/~your_username/my-website
+tasks:
+  - build: |
+      cd my-website
+      zola build
+  - package: |
+      cd my-website
+      tar -C public -cvz . > ../site.tar.gz
+  - upload: |
+      hut pages publish -d $site site.tar.gz
+
+

This manifest will clone your source code, build the website and upload the generated static files to the domain +you specified in site. +For publishing the website, the build manifest uses hut, a commandline tool which takes care of automatically +generating authentication tokens, so there is nothing else you need to do.

+

From this template you need to customize the variable site with the domain that will host your website and +sources to point to your Sourcehut git/hg public URL (in this example my-website is the name of the repository).

+

Then commit and push your changes:

+
$ git push
+Enumerating objects: 5, done.
+...
+remote: Build started:
+remote: https://builds.sr.ht/~your_username/job/430625 [.build.yml]
+To git.sr.ht:~your_username/www
+   fbe9afa..59ae556  master -> master
+
+

The build job will be automatically triggered. +Notice that Sourcehut returns a direct link to the build page, where you can check the progress and success status.

+

By default you can use a subdomain of Sourcehut Pages to host your static website - your_username.srht.site. +If you want to use a custom domain (e.g. "blog.mydomain.org"), you will need to configure a DNS record to point to +the Sourcehut server. +Instructions on how to do this are available on Sourcehut.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/vercel/index.html b/documentation/deployment/vercel/index.html new file mode 100644 index 000000000..924352cdb --- /dev/null +++ b/documentation/deployment/vercel/index.html @@ -0,0 +1,341 @@ + + + + + + + + + Vercel | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Vercel

+

Vercel (previously Zeit) is similar to Netlify, making the deployment of your site easy as pie. +The sites are hosted by Vercel and automatically deployed whenever we push a commit to our +selected production branch (e.g, master).

+

If you don't have an account with Vercel, you can sign up here.

+

🔗Automatic deploys

+

Once you sign up you can import your site from a Git provider (Github, GitLab or Bitbucket). +When you import your repository, Vercel will try to find out what framework your site is using.

+

If it doesn't default to Zola:

+
    +
  • Set Framework Preset as Zola.
  • +
+

By default, Vercel chooses output directory as public. If you use a different directory, then +specify output directory under the "Build and Output Settings" dropdown. +You can learn more about how to setup a custom domain and how to get the most out of Vercel +via their documentation.

+

After you click the blue "Deploy" button, it's off to the races!

+

To use a specific version of Zola, set ZOLA_VERSION environment variable in project settings to a valid +release tag, for example 0.17.2.

+

🔗Troubleshooting

+

🔗GLIBC_X.XX not found

+

This is because Vercel's build images comes with an older glibc version whereas Zola +depends on a newer glibc. However, Vercel provides a newer build image which can be used in +deployments by setting Node.js version to "20.x", allowing Zola to work properly.

+

🔗Additional options

+

🔗Enable trailing slashes

+

Visiting a page without trailing slash may break relative paths, so you might want to configure +Vercel to always redirect paths with a trailing slash. By default, redirecting to a trailing +slash is not enabled on Vercel.

+

For example if you have an about.md file, and when visiting the path without a trailing +slash, like /about, Vercel will redirect with trailing slash, resulting in /about/. +Paths with a file extension will not redirect to a trailing slash, for example if you +have a static file named favicon.ico, it will stay as-is.

+

To enable that, create a file in the root of your git repository named vercel.json +(if it doesn't exists already), and set this option:

+
{
+    "trailingSlash": true
+}
+
+

🔗Prefer clean URLs

+

When enabled, all HTML files will be served without their file extension. For example +if you have an about.md file, Zola will generate a about/index.html file, but Vercel +will serve the file as /about, without its index.html suffix.

+

To enable that, create a file in the root of your git repository named vercel.json +(if it doesn't exists already), and set this option:

+
{
+    "cleanUrls": true
+}
+
+

🔗Using a custom Zola binary

+

If you want to use your own Zola binary that published on GitHub, or if you want to +always use the latest version of Zola, you can run a shell command to grab the +latest release from GitHub.

+

To do that, set "Framework Preset" to "Other", and override "Install Command" to:

+
REPO="getzola/zola"; curl -fsS https://api.github.com/repos/${REPO}/releases/latest | grep -oP '"browser_download_url": ?"\K(.+linux-gnu.tar.gz)' | xargs -n 1 curl -fsSL -o zola.tar.gz && tar -xzvf zola.tar.gz
+
+

This command will fetch the latest release from GitHub, download the archive and extract it.

+

Then, set "Build Command" to ./zola build. Now Vercel will use the downloaded Zola +binary to build the documentation instead of using the built-in one.

+

If you prefer to use vercel.json instead, (which overrides the options set in the dashboard) +you can use this configuration.

+
{
+    "framework": null,
+    "installCommand": "REPO=\"getzola/zola\"; curl -fsS https://api.github.com/repos/${REPO}/releases/latest | grep -oP '\"browser_download_url\": ?\"\\K(.+linux-gnu.tar.gz)' | xargs -n 1 curl -fsSL -o zola.tar.gz && tar -xzvf zola.tar.gz",
+    "buildCommand": "./zola build",
+    "outputDirectory": "public"
+}
+
+

🔗See also

+

See Vercel's own documentation +for all available options in vercel.json.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/deployment/zeabur/index.html b/documentation/deployment/zeabur/index.html new file mode 100644 index 000000000..c5a36d088 --- /dev/null +++ b/documentation/deployment/zeabur/index.html @@ -0,0 +1,324 @@ + + + + + + + + + Zeabur | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Zeabur

+

In this tutorial, we'll guide you through the process of deploying your Zola site onto the Zeabur. Zeabur provides a seamless deployment experience, with automatic SSL certificates and global-edge network delivery. Let's get started!

+

🔗Prerequisites

+
    +
  • A Zola site project on your local machine.
  • +
  • A GitHub account and your Zola site project repository hosted on GitHub.
  • +
  • A Zeabur account. If you don't have one, sign up at here.
  • +
+

🔗Step 1: Create a Project on Zeabur

+
    +
  1. Log in to your Zeabur account.
  2. +
  3. Navigate to the dashboard and click on the Create Project button.
  4. +
  5. Follow the on-screen instructions to set up a new project.
  6. +
+

🔗Step 2: Push Your Zola Files to GitHub

+
    +
  1. +

    Initialize a Git repository in your Zola project folder if you haven't already:

    +
    git init
    +git add .
    +git commit -m "Initial commit"
    +
    +
  2. +
  3. +

    Push your Zola project to GitHub:

    +
    git remote add origin <your-github-repo-url>
    +git branch -M main
    +git push -u origin main
    +
    +
  4. +
+

Replace <your-github-repo-url> with the URL of your GitHub repository.

+

🔗Step 3: Create a Service on Zeabur

+
    +
  1. Back in your Zeabur dashboard, click on Create Service.
  2. +
  3. Choose the git option to connect your GitHub repository.
  4. +
+

🔗Step 4: Select Your Zola Repository

+
    +
  1. From the list of repositories, select the repository where your Zola project is located.
  2. +
+

🔗Step 5: Automatic Deployment

+

Zeabur will automatically detect that you're deploying a Zola project and will handle the deployment process for you without any additional configuration needed.

+

To use a specific version of Zola, set ZOLA_VERSION environment variable in project settings to a valid +release tag, for example 0.17.2.

+

🔗Step 6: Domain Binding

+
    +
  1. Once the deployment is complete, bind a domain name to your service.
  2. +
  3. You can choose to use a free .zeabur.app subdomain or bind your own custom domain.
  4. +
  5. Zeabur will automatically provide a free SSL certificate for your domain, ensuring secure browsing for your visitors.
  6. +
+

🔗Step 7: Your Site is Live!

+

Congratulations! Your Zola site is now deployed and live, served through Zeabur's edge network.

+

You can now visit your website at the domain you've set up.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/getting-started/cli-usage/index.html b/documentation/getting-started/cli-usage/index.html new file mode 100644 index 000000000..6168ad484 --- /dev/null +++ b/documentation/getting-started/cli-usage/index.html @@ -0,0 +1,351 @@ + + + + + + + + + CLI usage | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

CLI usage

+

Zola only has 4 commands: init, build, serve and check.

+

You can view the help for the whole program by running zola --help and +that for a specific command by running zola <cmd> --help.

+

🔗init

+

Creates the directory structure used by Zola at the given directory after asking a few basic configuration questions. +Any choices made during these prompts can be easily changed by modifying config.toml.

+
$ zola init my_site
+$ zola init
+
+

If the my_site directory already exists, Zola will only populate it if it contains only hidden files (dotfiles are ignored). If no my_site argument is passed, Zola will try to populate the current directory.

+

In case you want to attempt to populate a non-empty directory and are brave, you can use zola init --force. Note that this will not overwrite existing folders or files; in those cases you will get a File exists (os error 17) error or similar.

+

You can initialize a git repository and a Zola site directly from within a new folder:

+
$ git init
+$ zola init
+
+

🔗build

+

This will build the whole site in the public directory (if this directory already exists, it is deleted).

+
$ zola build
+
+

You can override the config base_url by passing a new URL to the base-url flag.

+
$ zola build --base-url $DEPLOY_URL
+
+

This is useful for example when you want to deploy previews of a site to a dynamic URL, such as Netlify +deploy previews.

+

You can override the default output directory public by passing another value to the output-dir flag. If this directory already exists, the user will be prompted whether to replace the folder; you can override this prompt by passing the --force flag.

+
$ zola build --output-dir $DOCUMENT_ROOT
+
+

You can point to a config file other than config.toml like so (note that the position of the config option is important):

+
$ zola --config config.staging.toml build
+
+

You can also process a project from a different directory with the root flag. If building a project 'out-of-tree' with the root flag, you may want to combine it with the output-dir flag. (Note that like config, the position is important):

+
$ zola --root /path/to/project build
+
+

By default, drafts are not loaded. If you wish to include them, pass the --drafts flag.

+

🔗serve

+

This will build and serve the site using a local server. You can also specify +the interface/port combination to use if you want something different than the default (127.0.0.1:1111).

+

You can also specify different addresses for the interface and base_url using --interface and -u/--base-url, respectively, if for example you are running Zola in a Docker container.

+
+

By default, devices from the local network won't be able to access the served pages. This may be of importance when you want to test page interaction and layout on your mobile device or tablet. If you set the interface to 0.0.0.0 however, devices from your local network will be able to access the served pages by requesting the local ip-address of the machine serving the pages and port used.

+

In order to have everything work correctly, you might also have to alter the base-url flag to your local ip or set it to / to use server-base relative paths.

+
+

Use the --open flag to automatically open the locally hosted instance in your +web browser.

+

Before starting, Zola will delete the output directory (by default public in project root) to start from a clean slate.

+

If you are specifying the directory but are also using the output-dir flag, Zola will not use the specified directory if it already exists unless the --force flag is used.

+
$ zola serve
+$ zola serve --port 2000
+$ zola serve --interface 0.0.0.0
+$ zola serve --interface 0.0.0.0 --port 2000
+$ zola serve --interface 0.0.0.0 --base-url 127.0.0.1
+$ zola serve --interface 0.0.0.0 --base-url /
+$ zola serve --interface 0.0.0.0 --port 2000 --output-dir www/public
+$ zola serve --open
+
+

The serve command will watch all your content and provide live reload without +a hard refresh if possible. If you are using WSL2 on Windows, make sure to store the website on the WSL file system.

+

Some changes cannot be handled automatically and thus live reload may not always work. If you +fail to see your change or get an error, try restarting zola serve.

+

You can also point to a config file other than config.toml like so (note that the position of the config option is important):

+
$ zola --config config.staging.toml serve
+
+

By default, drafts are not loaded. If you wish to include them, pass the --drafts flag.

+

🔗check

+

The check subcommand will try to build all pages just like the build command would, but without writing any of the +results to disk. Additionally, it will also check all external links in Markdown files by trying to fetch +them (links in the template files are not checked).

+

By default, drafts are not loaded. If you wish to include them, pass the --drafts flag.

+

🔗Colored output

+

Colored output is used if your terminal supports it.

+

Note: coloring is automatically disabled when the output is redirected to a pipe or a file (i.e., when the standard output is not a TTY).

+

You can disable this behavior by exporting one of the following two environment variables:

+
    +
  • NO_COLOR (the value does not matter)
  • +
  • CLICOLOR=0
  • +
+

To force the use of colors, you can set the following environment variable:

+
    +
  • CLICOLOR_FORCE=1
  • +
+ + +
+
+ +
+ + + + + + diff --git a/documentation/getting-started/configuration/index.html b/documentation/getting-started/configuration/index.html new file mode 100644 index 000000000..4f78ce896 --- /dev/null +++ b/documentation/getting-started/configuration/index.html @@ -0,0 +1,556 @@ + + + + + + + + + Configuration | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Configuration

+

The default configuration is sufficient to get Zola running locally but not more than that. +It follows the philosophy of paying for only what you need, almost everything is turned off by default.

+

To change the configuration, edit the config.toml file. +If you are not familiar with TOML, have a look at the TOML spec.

+

⚠️ If you add keys to your config.toml, you must pay attention to which TOML section it belongs to. A TOML section starts with a header, e.g. [search], and ends at the next section or EOF.

+

Here are the current config.toml sections:

+
    +
  1. main (unnamed)
  2. +
  3. markdown
  4. +
  5. link_checker
  6. +
  7. slugify
  8. +
  9. search
  10. +
  11. translations
  12. +
  13. languages
  14. +
  15. extra
  16. +
+

Only the base_url variable is mandatory. Everything else is optional. All configuration variables +used by Zola as well as their default values are listed below:

+
# The base URL of the site; the only required configuration variable.
+base_url = "https://mywebsite.com"
+
+# The site title and description; used in feeds by default.
+title = ""
+description = ""
+
+# The default language; used in feeds.
+default_language = "en"
+
+# The site theme to use.
+theme = ""
+
+# For overriding the default output directory `public`, set it to another value (e.g.: "docs")
+output_dir = "public"
+
+# Whether dotfiles at the root level of the output directory are preserved when (re)building the site.
+# Enabling this also prevents the deletion of the output folder itself on rebuilds.
+preserve_dotfiles_in_output = false
+
+# When set to "true", the Sass files in the `sass` directory in the site root are compiled.
+# Sass files in theme directories are always compiled.
+compile_sass = false
+
+# When set to "true", the generated HTML files are minified.
+minify_html = false
+
+# A list of glob patterns specifying asset files to ignore when the content
+# directory is processed. Defaults to none, which means that all asset files are
+# copied over to the `public` directory.
+# Example:
+#     ignored_content = ["*.{graphml,xlsx}", "temp.*", "**/build_folder"]
+ignored_content = []
+
+# Similar to ignored_content, a list of glob patterns specifying asset files to
+# ignore when the static directory is processed. Defaults to none, which means
+# that all asset files are copied over to the `public` directory
+ignored_static = []
+
+# When set to "true", a feed is automatically generated.
+generate_feeds = false
+
+# The filenames to use for the feeds. Used as the template filenames, too.
+# Defaults to ["atom.xml"], which has a built-in template that renders an Atom 1.0 feed.
+# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
+feed_filenames = ["atom.xml"]
+
+# The number of articles to include in the feed. All items are included if
+# this limit is not set (the default).
+# feed_limit = 20
+
+# When set to "true", files in the `static` directory are hard-linked. Useful for large
+# static files. Note that for this to work, both `static` and the
+# output directory need to be on the same filesystem. Note that the theme's `static`
+# files are always copied, regardless of this setting.
+hard_link_static = false
+
+# The default author for pages
+author = 
+
+# The taxonomies to be rendered for the site and their configuration of the default languages
+# Example:
+#     taxonomies = [
+#       {name = "tags", feed = true}, # each tag will have its own feed
+#       {name = "tags"}, # you can have taxonomies with the same name in multiple languages
+#       {name = "categories", paginate_by = 5},  # 5 items per page for a term
+#       {name = "authors"}, # Basic definition: no feed or pagination
+#     ]
+#
+taxonomies = []
+
+# When set to "true", a search index is built from the pages and section
+# content for `default_language`.
+build_search_index = false
+
+# When set to "false", Sitemap.xml is not generated
+generate_sitemap = true
+
+# When set to "false", robots.txt is not generated
+generate_robots_txt = true
+
+# Configuration of the Markdown rendering
+[markdown]
+# When set to "true", all code blocks are highlighted.
+highlight_code = false
+
+# A list of directories used to search for additional `.sublime-syntax` and `.tmTheme` files.
+extra_syntaxes_and_themes = []
+
+# The theme to use for code highlighting.
+# See below for list of allowed values.
+highlight_theme = "base16-ocean-dark"
+
+# When set to "true", emoji aliases translated to their corresponding
+# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
+render_emoji = false
+
+# Whether external links are to be opened in a new tab
+# If this is true, a `rel="noopener"` will always automatically be added for security reasons
+external_links_target_blank = false
+
+# Whether to set rel="nofollow" for all external links
+external_links_no_follow = false
+
+# Whether to set rel="noreferrer" for all external links
+external_links_no_referrer = false
+
+# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form)
+# For example, `...` into `…`, `"quote"` into `“curly”` etc
+smart_punctuation = false
+
+# Whether to set decoding="async" and loading="lazy" for all images
+# When turned on, the alt text must be plain text.
+# For example, `![xx](...)` is ok but `![*x*x](...)` isn’t ok
+lazy_async_image = false
+
+# Whether footnotes are rendered in the GitHub-style (at the bottom, with back references) or plain (in the place, where they are defined)
+bottom_footnotes = false
+
+# Configuration of the link checker.
+[link_checker]
+# Skip link checking for external URLs that start with these prefixes
+skip_prefixes = [
+    "http://[2001:db8::]/",
+]
+
+# Skip anchor checking for external URLs that start with these prefixes
+skip_anchor_prefixes = [
+    "https://caniuse.com/",
+]
+
+# Treat internal link problems as either "error" or "warn", default is "error"
+internal_level = "error"
+
+# Treat external link problems as either "error" or "warn", default is "error"
+external_level = "error"
+
+# Various slugification strategies, see below for details
+# Defaults to everything being a slug
+[slugify]
+paths = "on"
+taxonomies = "on"
+anchors = "on"
+# Whether to remove date prefixes for page path slugs.
+# For example, content/posts/2016-10-08_a-post-with-dates.md => posts/a-post-with-dates
+# When true, content/posts/2016-10-08_a-post-with-dates.md => posts/2016-10-08-a-post-with-dates
+paths_keep_dates = false
+
+[search]
+# Whether to include the title of the page/section in the index
+include_title = true
+# Whether to include the description of the page/section in the index
+include_description = false
+# Whether to include the RFC3339 datetime of the page in the search index
+include_date = false
+# Whether to include the path of the page/section in the index (the permalink is always included)
+include_path = false
+# Whether to include the rendered content of the page/section in the index
+include_content = true
+# At which code point to truncate the content to. Useful if you have a lot of pages and the index would
+# become too big to load on the site. Defaults to not being set.
+# truncate_content_length = 100
+
+# Wether to produce the search index as a javascript file or as a JSON file
+# Accepted values:
+# - "elasticlunr_javascript", "elasticlunr_json"
+# - "fuse_javascript", "fuse_json"
+index_format = "elasticlunr_javascript"
+
+# Optional translation object for the default language
+# Example:
+#     default_language = "fr"
+#
+#     [translations]
+#     title = "Un titre"
+#
+[translations]
+
+# Additional languages definition
+# You can define language specific config values and translations: 
+# title, description, generate_feeds, feed_filenames, taxonomies, build_search_index
+# as well as its own search configuration and translations (see above for details on those)
+[languages]
+# For example
+# [languages.fr]
+# title = "Mon blog"
+# generate_feeds = true
+# taxonomies = [
+#    {name = "auteurs"},
+#    {name = "tags"},
+# ]
+# build_search_index = false
+
+# You can put any kind of data here. The data
+# will be accessible in all templates
+# Example:
+#     [extra]
+#     author = "Famous author"
+#
+# author value will be available using {{ config.extra.author }} in templates
+#
+[extra]
+
+

🔗Syntax highlighting

+

Zola currently has the following highlight themes available:

+ +

Zola uses the Sublime Text themes, making it very easy to add more. +If you want a theme not listed above, please open an issue or a pull request on the Zola repo.

+

Alternatively you can use the extra_syntaxes_and_themes configuration option to load your own custom themes from a .tmTheme file. +See Syntax Highlighting for more details.

+

🔗Slugification strategies

+

By default, Zola will turn every path, taxonomies and anchors to a slug, an ASCII representation with no special characters. +You can however change that strategy for each kind of item, if you want UTF-8 characters in your URLs for example. There are 3 strategies:

+
    +
  • on: the default one, everything is turned into a slug
  • +
  • safe: characters that cannot exist in files on Windows (<>:"/\|?*) or Unix (/) are removed, everything else stays
  • +
  • off: nothing is changed, your site might not build on some OS and/or break various URL parsers
  • +
+

Since there are no filename issues with anchors, the safe and off strategies are identical in their case: the only change +is space being replaced by _ since a space is not valid in an anchor.

+

Note that if you are using a strategy other than the default, you will have to manually escape whitespace and Markdown +tokens to be able to link to your pages. For example an internal link to a file named some space.md will need to be +written like some%20space.md in your Markdown files.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/getting-started/directory-structure/index.html b/documentation/getting-started/directory-structure/index.html new file mode 100644 index 000000000..df368fb81 --- /dev/null +++ b/documentation/getting-started/directory-structure/index.html @@ -0,0 +1,307 @@ + + + + + + + + + Directory structure | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Directory structure

+

After running zola init, you should see the following structure in your directory:

+
.
+├── config.toml
+├── content
+├── sass
+├── static
+├── templates
+└── themes
+
+5 directories, 1 file
+
+

You might also see a public directory if you are running the default zola build/serve commands which contains some output for the site: the full site for zola build and only the static assets for zola serve. This folder will be deleted/created automatically by zola serve.

+

Here's a high-level overview of each of these directories and config.toml.

+

🔗config.toml

+

A mandatory Zola configuration file in TOML format. +This file is explained in detail in the configuration documentation.

+

🔗content

+

Contains all your markup content (mostly .md files). +Each child directory of the content directory represents a section +that contains pages (your .md files).

+

To learn more, read the content overview page.

+

🔗sass

+

Contains the Sass files to be compiled. Non-Sass files will be ignored. +The directory structure of the sass folder will be preserved when copying over the compiled files; for example, a file at +sass/something/site.scss will be compiled to public/something/site.css.

+

🔗static

+

Contains any kind of file. All the files/directories in the static directory will be copied as-is to the output directory. +If your static files are large, you can configure Zola to hard link them +instead of copying them by setting hard_link_static = true in the config file.

+

🔗templates

+

Contains all the Tera templates that will be used to render your site. +Have a look at the templates documentation to learn more about default templates +and available variables.

+

🔗themes

+

Contains themes that can be used for your site. If you are not planning to use themes, leave this directory empty. +If you want to learn about themes, see the themes documentation.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/getting-started/index.html b/documentation/getting-started/index.html new file mode 100644 index 000000000..559bc4936 --- /dev/null +++ b/documentation/getting-started/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/documentation/getting-started/installation/index.html b/documentation/getting-started/installation/index.html new file mode 100644 index 000000000..93db2fd5c --- /dev/null +++ b/documentation/getting-started/installation/index.html @@ -0,0 +1,423 @@ + + + + + + + + + Installation | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Installation

+

Zola provides pre-built binaries for MacOS, Linux and Windows on the +GitHub release page.

+

🔗macOS

+

Zola is available on Brew:

+
$ brew install zola
+
+

Zola is also available on MacPorts:

+
$ sudo port install zola
+
+

🔗Arch Linux

+

Zola is available in the official Arch Linux repositories.

+
$ pacman -S zola
+
+

🔗Alpine Linux

+

Zola is available in the official Alpine Linux community repository since Alpine v3.13.

+

See this section of the Alpine Wiki explaining how to enable the community repository if necessary: https://wiki.alpinelinux.org/wiki/Repositories#Enabling_the_community_repository

+
$ apk add zola
+
+

🔗Debian

+

Zola is available over at barnumbirr/zola-debian. +Grab the latest .deb for your Debian version then simply run:

+
$ sudo dpkg -i zola_<version>_amd64_debian_<debian_version>.deb
+
+

🔗Fedora

+

On Fedora, Zola is available via COPR.

+
$ sudo dnf copr enable fz0x1/zola
+$ sudo dnf install zola
+
+

🔗Gentoo

+

Zola is available via GURU.

+
$ sudo eselect repository enable guru
+$ sudo emaint sync --repo guru
+$ sudo emerge --ask www-apps/zola
+
+

🔗Void Linux

+

Zola is available in the official Void Linux repositories.

+
$ sudo xbps-install zola
+
+

🔗FreeBSD

+

Zola is available in the official package repository.

+
$ pkg install zola
+
+

🔗OpenBSD

+

Zola is available in the official package repository.

+
$ doas pkg_add zola
+
+

🔗openSUSE

+

🔗openSUSE Tumbleweed

+

Zola is available in the official openSUSE Tumbleweed main OSS repository.

+
$ sudo zypper install zola
+
+

🔗openSUSE Leap

+

Zola is available in the official experimental utilities repository.

+
$ sudo zypper addrepo https://download.opensuse.org/repositories/utilities/15.6/utilities.repo
+$ sudo zypper refresh
+$ sudo zypper install zola
+
+

🔗pkgsrc

+

Zola is available in the official package repository, with pkgin.

+
$ pkgin install zola
+
+

🔗Snapcraft

+

Zola is available on snapcraft:

+
$ snap install --edge zola
+
+

🔗Flatpak

+

Zola is available as a flatpak on flathub:

+
$ flatpak install flathub org.getzola.zola
+
+

To use zola:

+
$ flatpak run org.getzola.zola [command]
+
+

To avoid having to type this every time, an alias can be created in ~/.bashrc:

+
$ alias zola="flatpak run org.getzola.zola"
+
+

🔗NixOS / Nixpkgs

+

Zola is available +in the nixpkgs repository. If you're using NixOS, you can install Zola +by adding the following to /etc/nixos/configuration.nix:

+
environment.systemPackages = [
+  pkgs.zola
+];
+
+

If you're using Nix as a package manager in another OS, you can install it using:

+
nix-env -iA nixpkgs.zola
+
+

🔗Via Github Actions

+

Zola can be installed in a GHA workflow with taiki-e/install-action. +Simply add it in your CI config, for example:

+
jobs:
+  foo:
+    steps:
+      - uses: taiki-e/install-action@v2
+        with:
+          tool: zola@0.19.1
+      # ...
+
+

See the action repo for docs and more examples.

+

🔗Docker

+

Zola is available on the GitHub registry. +It has no latest tag, you will need to specify a specific version to pull.

+
$ docker pull ghcr.io/getzola/zola:v0.19.1
+
+

🔗Build

+
$ docker run -u "$(id -u):$(id -g)" -v $PWD:/app --workdir /app ghcr.io/getzola/zola:v0.19.1 build
+
+

🔗Serve

+
$ docker run -u "$(id -u):$(id -g)" -v $PWD:/app --workdir /app -p 8080:8080 ghcr.io/getzola/zola:v0.19.1 serve --interface 0.0.0.0 --port 8080 --base-url localhost
+
+

You can now browse http://localhost:8080.

+
+

To enable live browser reload, you may have to bind to port 1024. Zola searches for an open +port between 1024 and 9000 for live reload. The new docker command would be +$ docker run -u "$(id -u):$(id -g)" -v $PWD:/app --workdir /app -p 8080:8080 -p 1024:1024 ghcr.io/getzola/zola:v0.19.1 serve --interface 0.0.0.0 --port 8080 --base-url localhost

+
+

🔗Multi-stage build

+

Since there is no shell in the Zola docker image, if you want to use it from inside a Dockerfile, you have to use the +exec form of RUN, like:

+
FROM ghcr.io/getzola/zola:v0.19.1 as zola
+
+COPY . /project
+WORKDIR /project
+RUN ["zola", "build"]
+
+

🔗Windows

+

Zola could be installed using official Winget command:

+
$ winget install getzola.zola
+
+

Also it is available on Scoop:

+
$ scoop install zola
+
+

and Chocolatey:

+
$ choco install zola
+
+

Zola does not work in PowerShell ISE.

+

🔗From source

+

To build Zola from source, you will need to have Git, Rust and Cargo +installed.

+

From a terminal, you can now run the following commands:

+
$ git clone https://github.com/getzola/zola.git
+$ cd zola
+$ cargo install --path . --locked
+$ zola --version
+
+

If you encountered compilation errors like error: failed to run custom build command for 'ring v0.16.20', you can try the command below instead:

+
$ cargo build --release --locked --no-default-features --features=native-tls
+
+

The binary will be available in the target/release directory. You can move it in your $PATH to have the +zola command available globally:

+
$ cp target/release/zola ~/.cargo/bin/zola
+
+

or in a directory if you want for example to have the binary in the same repository as the site.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/getting-started/overview/index.html b/documentation/getting-started/overview/index.html new file mode 100644 index 000000000..35c498922 --- /dev/null +++ b/documentation/getting-started/overview/index.html @@ -0,0 +1,449 @@ + + + + + + + + + Overview | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Overview

+

🔗Zola at a Glance

+

Zola is a static site generator (SSG), similar to Hugo, Pelican, and Jekyll (for a comprehensive list of SSGs, please see Jamstack). It is written in Rust and uses the Tera template engine, which is similar to Jinja2, Django templates, Liquid, and Twig.

+

Content is written in CommonMark, a strongly defined, highly compatible specification of Markdown. Zola uses pulldown-cmark to parse markdown files. The goal of this library is 100% compliance with the CommonMark spec. It adds a few additional features such as parsing footnotes, Github flavored tables, Github flavored task lists and strikethrough.

+

SSGs use dynamic templates to transform content into static HTML pages. Static sites are thus very fast and require no databases, making them easy to host. A comparison between static and dynamic sites, such as WordPress, Drupal, and Django, can be found here.

+

To get a taste of Zola, please see the quick overview below.

+

🔗First Steps with Zola

+

Unlike some SSGs, Zola makes no assumptions regarding the structure of your site. In this overview, we'll be making a simple blog site.

+

🔗Initialize Site

+
+

This overview is based on Zola 0.19.1.

+
+

Please see the detailed installation instructions for your platform. With Zola installed, let's initialize our site:

+
$ zola init myblog
+
+

You will be asked a few questions.

+
> What is the URL of your site? (https://example.com):
+> Do you want to enable Sass compilation? [Y/n]:
+> Do you want to enable syntax highlighting? [y/N]:
+> Do you want to build a search index of the content? [y/N]:
+
+

For our blog, let's accept the default values (i.e., press Enter for each question). We now have a myblog directory with the following structure:

+
├── config.toml
+├── content
+├── sass
+├── static
+├── templates
+└── themes
+
+

For reference, by the end of this overview, our myblog directory will have the following structure:

+
├── config.toml
+├── content/
+│   └── blog/
+│       ├── _index.md
+│       ├── first.md
+│       └── second.md
+├── sass/
+├── static/
+├── templates/
+│   ├── base.html
+│   ├── blog-page.html
+│   ├── blog.html
+│   └── index.html
+└── themes/
+
+

Change directory into the newly-created myblog directory.

+

🔗Templates

+

We'll first create some templates to describe the structure of our site.

+

🔗Home Page Template

+

Let's make a template for a home page. Create templates/base.html with the following content. This step will make more sense as we move through this overview.

+
<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="utf-8">
+  <title>MyBlog</title>
+</head>
+
+<body>
+  <section class="section">
+    <div class="container">
+      {% block content %} {% endblock %}
+    </div>
+  </section>
+</body>
+
+</html>
+
+

Now, let's create templates/index.html with the following content.

+
{% extends "base.html" %}
+
+{% block content %}
+<h1 class="title">
+  This is my blog made with Zola.
+</h1>
+{% endblock content %}
+
+

This tells Zola that index.html extends our base.html file and replaces the block called "content" with the text between the {% block content %} and {% endblock content %} tags.

+

🔗Blog Template

+

To create a template for a page that lists all blog posts, create templates/blog.html with the following content.

+
{% extends "base.html" %}
+
+{% block content %}
+<h1 class="title">
+  {{ section.title }}
+</h1>
+<ul>
+  <!-- If you are using pagination, section.pages will be empty.
+       You need to use the paginator object -->  
+  {% for page in section.pages %}
+  <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
+  {% endfor %}
+</ul>
+{% endblock content %}
+
+

As done by index.html, blog.html extends base.html, but in this template we want to list the blog posts. Here we also see expressions such as {{ section.[...] }} and {{ page.[...] }} which will be replaced with values from our content when zola combines content with this template to render a page. In the list below the header, we loop through all the pages in our section (blog directory; more on this when we create content) and output each page title and URL using {{ page.title }} and {{ page.permalink | safe }}, respectively. We use the | safe filter because the permalink doesn't need to be HTML escaped (escaping would cause / to render as &#x2F;).

+

🔗Blog Post Template

+

We have templates describing our home page and a page that lists all blog posts. Let's now create a template for an individual blog post. Create templates/blog-page.html with the following content.

+
{% extends "base.html" %}
+
+{% block content %}
+<h1 class="title">
+  {{ page.title }}
+</h1>
+<p class="subtitle"><strong>{{ page.date }}</strong></p>
+{{ page.content | safe }}
+{% endblock content %}
+
+
+

Note the | safe filter for {{ page.content }}.

+
+

🔗Zola Live Reloading

+

Now that we've outlined our site's structure, let's start the Zola development server in the myblog directory.

+
$ zola serve
+Building site...
+Checking all internal links with anchors.
+> Successfully checked 0 internal link(s) with anchors.
+-> Creating 0 pages (0 orphan) and 0 sections
+Done in 13ms.
+
+Web server is available at http://127.0.0.1:1111
+
+Listening for changes in .../myblog/{config.toml,content,sass,static,templates}
+Press Ctrl+C to stop
+
+

If you point your web browser to http://127.0.0.1:1111, you will see a message saying, "This is my blog made with Zola."

+

If you go to http://127.0.0.1:1111/blog/, you will currently get a 404 which we will fix next.

+

🔗Content

+

We'll now create some content that Zola will use to generate site pages based on our templates.

+

🔗Sections

+

We'll start by creating content/blog/_index.md. This file tells Zola that blog is a section, which is how content is categorized in Zola. In the _index.md file, we'll set the following variables in TOML format:

+
+++
+title = "List of blog posts"
+sort_by = "date"
+template = "blog.html"
+page_template = "blog-page.html"
++++
+
+
+

Note that although no variables are mandatory, the opening and closing +++ are required.

+
+
    +
  • sort_by = "date" tells Zola to use the date to order our section pages (more on pages below).
  • +
  • template = "blog.html" tells Zola to use templates/blog.html as the template for listing the Markdown files in this section.
  • +
  • page_template = "blog-page.html" tells Zola to use templates/blog-page.html as the template for individual Markdown files.
  • +
+

For a full list of section variables, please see the section documentation.

+

The value of our title variable here is available to templates such as blog.html as {{ section.title }}.

+

If you now go to http://127.0.0.1:1111/blog/, you will see an empty list of posts.

+

🔗Markdown

+

We'll now create some blog posts. Create content/blog/first.md with the following content.

+
+++
+title = "My first post"
+date = 2019-11-27
++++
+
+This is my first blog post.
+
+

The title and date will be available to us in the blog-page.html template as {{ page.title }} and {{ page.date }}, respectively. All text below the closing +++ will be available to templates as {{ page.content }}.

+

If you now go back to our blog list page at http://127.0.0.1:1111/blog/, you should see our lonely post. Let's add another. Create content/blog/second.md with the contents:

+
+++
+title = "My second post"
+date = 2019-11-28
++++
+
+This is my second blog post.
+
+

Back at http://127.0.0.1:1111/blog/, our second post shows up on top of the list because it's newer than the first post and we had set sort_by = "date" in our _index.md file.

+

As a final step, let's modify templates/index.html (our home page) to link to our list of blog posts:

+
{% extends "base.html" %}
+
+{% block content %}
+<h1 class="title">
+  This is my blog made with Zola.
+</h1>
+<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
+{% endblock content %}
+
+

This has been a quick overview of Zola. You can now dive into the rest of the documentation.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/index.html b/documentation/index.html new file mode 100644 index 000000000..0f9d7667b --- /dev/null +++ b/documentation/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/documentation/templates/404/index.html b/documentation/templates/404/index.html new file mode 100644 index 000000000..8dc4089c6 --- /dev/null +++ b/documentation/templates/404/index.html @@ -0,0 +1,273 @@ + + + + + + + + + 404 error page | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

404 error page

+

Zola will look for a 404.html file in the templates directory or +use the built-in one. The default template is very basic and gets config in its context.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/archive/index.html b/documentation/templates/archive/index.html new file mode 100644 index 000000000..16eb0eb35 --- /dev/null +++ b/documentation/templates/archive/index.html @@ -0,0 +1,296 @@ + + + + + + + + + Archive | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Archive

+

Zola doesn't have a built-in way to display an archive page (a page showing +all post titles ordered by year). However, this can be accomplished directly in the templates:

+
{% for year, posts in section.pages | group_by(attribute="year") %}
+    <h2>{{ year }}</h2>
+
+    <ul>
+    {% for post in posts %}
+        <li><a href="{{ post.permalink }}">{{ post.title }}</a></li>
+    {% endfor %}
+    </ul>
+{% endfor %}
+
+

This snippet assumes that posts are sorted by date and that you want to display the archive +in descending order. If you want to show articles in ascending order, you need to further +process the list of pages:

+
{% set posts_by_year = section.pages | group_by(attribute="year") %}
+{% set_global years = [] %}
+{% for year, ignored in posts_by_year %}
+    {% set_global years = years | concat(with=year) %}
+{% endfor %}
+{% for year in years | reverse %}
+    {% set posts = posts_by_year[year] %}
+    {# (same as the previous snippet) #}
+{% endfor %}
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/feeds/index.html b/documentation/templates/feeds/index.html new file mode 100644 index 000000000..d09a0a8fd --- /dev/null +++ b/documentation/templates/feeds/index.html @@ -0,0 +1,339 @@ + + + + + + + + + Feeds | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Feeds

+

If the site config.toml file sets generate_feeds = true, then Zola will +generate feed files for the site, named according to the feed_filenames +setting in config.toml, which defaults to atom.xml. Given the feed filename +atom.xml, the generated file will live at base_url/atom.xml, based upon the +atom.xml file in the templates directory, or the built-in Atom template.

+

feed_filenames can be set to any value, but built-in templates are provided +for atom.xml (in the preferred Atom 1.0 format), and rss.xml (in the RSS +2.0 format). If you choose a different filename (e.g. feed.xml), you will +need to provide a template yourself.

+

In case you want to extend, or modify, the built-in templates, you can get a +copy from the source code here +and place it in the templates/ directory with the appropriate name. You can +check the documentation for the specifications for Atom 1.0 and RSS 2.0 in +W3C Feed Validation Service.

+

Only pages with a date will be available.

+

The author in the feed is set as

+
    +
  • The first author in authors set in the +front matter
  • +
  • If that is not present it falls back to the author in the +Configuration
  • +
  • If that is also not preset it is set to Unknown.
  • +
+

Note that atom.xml and rss.xml require different formats for specifying the +author. According to RFC 4287 atom.xml requires the author's +name, for example "John Doe". While according to the +RSS 2.0 Specification the email address is required, and the name +optionally included, for example "lawyer@boyer.net" or +"lawyer@boyer.net (Lawyer Boyer)".

+

The feed template gets five variables:

+
    +
  • config: the site config
  • +
  • feed_url: the full url to that specific feed
  • +
  • last_updated: the most recent updated or date field of any post
  • +
  • pages: see page variables +for a detailed description of what this contains
  • +
  • lang: the language code that applies to all of the pages in the feed, +if the site is multilingual, or config.default_language if it is not
  • +
+

Feeds for taxonomy terms get two more variables, using types from the +taxonomies templates:

+
    +
  • taxonomy: of type TaxonomyConfig
  • +
  • term: of type TaxonomyTerm, but without term.pages (use pages instead)
  • +
+

You can also enable separate feeds for each section by setting the +generate_feeds variable to true in the respective section's front matter. +Section feeds will use the same template as indicated in the config.toml file. +Section feeds, in addition to the five feed template variables, get the +section variable from the section +template.

+

Enable feed autodiscovery allows feed readers and browsers to notify user about a RSS or Atom feed available on your web site. So it is easier for user to subscribe. +As an example this is how it looks like using Firefox Livemarks addon.

+

RSS feed autodiscovery example.

+

You can enable posts autodiscovery modifying your blog base.html template adding the following code in between the <head> tags.

+
{% block rss %}
+  <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
+{% endblock %}
+
+

You can as well use an Atom feed using type="application/atom+xml" and path="atom.xml".

+

All pages on your site will refer to your post feed.

+

In order to enable the tag feeds as well, you can overload the block rss using the following code in your tags/single.html template.

+
{% block rss %}
+  {% set rss_path = "tags/" ~ term.name ~ "/rss.xml" %}
+  <link rel="alternate" type="application/rss+xml" title="RSS" href="{{/* get_url(path=rss_path, trailing_slash=false) */}}">
+{% endblock rss %}
+
+

Each tag page will refer to it's dedicated feed.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/feeds/rss_feed.png b/documentation/templates/feeds/rss_feed.png new file mode 100644 index 000000000..81abb702b Binary files /dev/null and b/documentation/templates/feeds/rss_feed.png differ diff --git a/documentation/templates/index.html b/documentation/templates/index.html new file mode 100644 index 000000000..a85def26d --- /dev/null +++ b/documentation/templates/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/documentation/templates/overview/index.html b/documentation/templates/overview/index.html new file mode 100644 index 000000000..6fe73cfb7 --- /dev/null +++ b/documentation/templates/overview/index.html @@ -0,0 +1,646 @@ + + + + + + + + + Overview | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Overview

+

Zola uses the Tera template engine, which is very similar +to Jinja2, Liquid and Twig.

+

As this documentation will only talk about how templates work in Zola, please read +the Tera template documentation if you want +to learn more about it first.

+

All templates live in the templates directory. If you are not sure what variables are available in a template, +you can place {{ __tera_context }} in the template to print the whole context.

+

A few variables are available on all templates except feeds and the sitemap:

+
    +
  • config: the language aware configuration
  • +
  • current_path: the path (full URL without base_url) of the current page, always starting with a /
  • +
  • current_url: the full URL for the current page
  • +
  • lang: the language for the current page
  • +
+

Config variables can be accessed like config.variable, in HTML for example with {{ config.base_url }}. +The 404 template does not get current_path and current_url (this information cannot be determined).

+

On top of the config attributes mentioned above, it also gets config.mode which is whether it's run in build, serve or check.

+

🔗Standard templates

+

By default, Zola will look for three templates: index.html, which is applied +to the site homepage; section.html, which is applied to all sections (any HTML +page generated by creating a directory within your content directory); and +page.html, which is applied to all pages (any HTML page generated by creating an +.md file within your content directory).

+

The homepage is always a section (regardless of whether it contains other pages). +Thus, the index.html and section.html templates both have access to the +section variables. The page.html template has access to the page variables. +The page and section variables are described in more detail in the next section.

+

🔗Built-in templates

+

Zola comes with four built-in templates: atom.xml and rss.xml (described in +Feeds), sitemap.xml (described in Sitemap), +and robots.txt (described in Robots.txt). +Additionally, themes can add their own templates, which will be applied if not +overridden. You can override built-in or theme templates by creating a template with +the same name in the correct path. For example, you can override the Atom template by +creating a templates/atom.xml file.

+

🔗Custom templates

+

In addition to the standard index.html, section.html and page.html templates, +you may also create custom templates by creating an .html file in the templates +directory. These custom templates will not be used by default. Instead, a 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:

+
+++
+title = "About Us"
+template = "about.html"
++++
+
+

Custom templates are not required to live at the root of your templates directory. +For example, product_pages/with_pictures.html is a valid template.

+

🔗Built-in filters

+

Zola adds a few filters in addition to those already present +in Tera.

+

🔗markdown

+

Converts the given variable to HTML using Markdown. There are a few differences compared to page/section Markdown rendering:

+
    +
  • shortcodes evaluated by this filter cannot access the current rendering context: config will be available, but accessing section or page (among others) from a shortcode called within the markdown filter will prevent your site from building (see this discussion)
  • +
  • lang in shortcodes will always be equal to the site's config.default_language (or en otherwise) ; it should not be a problem, but if it is in most cases, but if you need to use language-aware shortcodes in this filter, please refer to the Shortcode context section of the docs.
  • +
+

By default, the filter will wrap all text in a paragraph. To disable this behaviour, you can +pass true to the inline argument:

+
{{ some_text | markdown(inline=true) }}
+
+

You do not need to use this filter with page.content or section.content, the content is already rendered.

+

🔗base64_encode

+

Encode the variable to base64.

+

🔗base64_decode

+

Decode the variable from base64.

+

🔗regex_replace

+

Replace text via regular expressions.

+
{{ "World Hello" | regex_replace(pattern=`(?P<subject>\w+), (?P<greeting>\w+)`, rep=`$greeting $subject`) }}
+<!-- Hello World -->
+
+

🔗num_format

+

Format a number into its string representation.

+
{{ 1000000 | num_format }}
+<!-- 1,000,000 -->
+
+

By default this will format the number using the locale set by config.default_language in config.toml.

+

To format a number for a specific locale, you can use the locale argument and pass the name of the desired locale:

+
{{ 1000000 | num_format(locale="en-IN") }}
+<!-- 10,00,000 -->
+
+

🔗Built-in functions

+

Zola adds a few Tera functions to those built-in in Tera +to make it easier to develop complex sites.

+

🔗File searching logic

+

For functions that are searching for a file on disk other than through get_page and get_section, the following +logic applies.

+
    +
  1. The base directory is the Zola root directory, where the config.toml is
  2. +
  3. For the given path: if it starts with @/, replace that with content/ instead and trim any leading /
  4. +
  5. Search in the following locations in this order, returning the first where the file exists: +
      +
    1. $base_directory + $path
    2. +
    3. $base_directory + "static/" + $path
    4. +
    5. $base_directory + "content/" + $path
    6. +
    7. $base_directory + $output_path + $path
    8. +
    9. $base_directory + "themes" + $theme + "static/" + $path (only if using a theme)
    10. +
    +
  6. +
+

In practice this means that @/some/image.jpg, /content/some/image.jpg and content/some/image.jpg will point to the +same thing.

+

It will error if the path is outside the Zola directory.

+

🔗get_page

+

Takes a path to an .md file and returns the associated page. The base path is the content directory.

+
{% set page = get_page(path="blog/page2.md") %}
+
+

If selecting a specific language for the page, you can pass lang with the language code to the function:

+
{% set page = get_page(path="blog/page2.md", lang="fr") %}
+
+{# If "fr" is the default language, this is equivalent to #}
+{% set page = get_page(path="blog/page2.md") %}
+
+{# If "fr" is not the default language, this is equivalent to #}
+{% set page = get_page(path="blog/page2.fr.md") %}
+
+

🔗get_section

+

Takes a path to an _index.md file and returns the associated section. The base path is the content directory.

+
{% set section = get_section(path="blog/_index.md") %}
+
+

If you only need the metadata of the section, you can pass metadata_only=true to the function:

+
{% set section = get_section(path="blog/_index.md", metadata_only=true) %}
+
+

If selecting a specific language for the section, you can pass lang with the language code to the function:

+
{% set section = get_section(path="blog/_index.md", lang="fr") %}
+
+{# If "fr" is the default language, this is equivalent to #}
+{% set section = get_section(path="blog/_index.md") %}
+
+{# If "fr" is not the default language, this is equivalent to #}
+{% set section = get_section(path="blog/_index.fr.md") %}
+
+

🔗get_taxonomy_url

+

Gets the permalink for the taxonomy item found.

+
{% set url = get_taxonomy_url(kind="categories", name=page.taxonomies.category, lang=page.lang) %}
+
+

name will almost always come from a variable but in case you want to do it manually, +the value should be the same as the one in the front matter, not the slugified version.

+

lang (optional) default to config.default_language in config.toml

+

required (optional) if a taxonomy is defined but there isn't any content that uses it then throw an error. Defaults to true.

+

🔗get_taxonomy

+

Gets the whole taxonomy of a specific kind.

+
{% set categories = get_taxonomy(kind="categories") %}
+
+

The type of the output is:

+
kind: TaxonomyConfig;
+items: Array<TaxonomyTerm>;
+lang: String;
+permalink: String;
+
+

lang (optional) default to config.default_language in config.toml

+

required (optional) if a taxonomy is defined but there isn't any content that uses it then throw an error. Defaults to true.

+

See the Taxonomies documentation for a full documentation of those types.

+

🔗get_taxonomy_term

+

Gets a single term from a taxonomy of a specific kind.

+
{% set categories = get_taxonomy_term(kind="categories", term="term_name") %}
+
+

The type of the output is a single TaxonomyTerm item.

+

lang (optional) default to config.default_language in config.toml

+

include_pages (optional) default to true. If false, the pages item in the TaxonomyTerm will be empty, regardless of what pages may actually exist for this term. page_count will correctly reflect the number of pages for this term in both cases.

+

required (optional) if a taxonomy or term is not found`.

+

See the Taxonomies documentation for a full documentation of those types.

+

🔗get_url

+

Gets the permalink for the given path. +If the path starts with @/, it will be treated as an internal link to a Markdown file, +starting from the root content directory as well as validated.

+
{% set url = get_url(path="@/blog/_index.md") %}
+
+

It accepts an optional parameter lang in order to compute a language-aware URL in multilingual websites. Assuming config.base_url is "http://example.com", the following snippet will:

+
    +
  • return "http://example.com/blog/" if config.default_language is "en"
  • +
  • return "http://example.com/en/blog/" if config.default_language is not "en" and "en" appears in config.languages
  • +
  • fail otherwise, with the error message "'en' is not an authorized language (check config.languages)."
  • +
+
{% set url = get_url(path="@/blog/_index.md", lang="en") %}
+
+

This can also be used to get the permalink for a static file, for example if +you want to link to the file that is located at static/css/app.css:

+
{{ get_url(path="css/app.css") }}
+
+

By default, the link will not have a trailing slash. You can force one by passing trailing_slash=true to the get_url function. +An example is:

+
{{ get_url(path="css/app.css", trailing_slash=true) }}
+
+

In the case of a non-internal link, you can also add a cachebust of the format ?h=<sha256> at the end of a URL +by passing cachebust=true to the get_url function. In this case, the path will need to resolve to an actual file. +See File Searching Logic for details.

+

🔗get_hash

+

Returns the hash digest (SHA-256, SHA-384 or SHA-512) of a file or a string literal.

+

It can take the following arguments:

+
    +
  • path: mandatory, see File Searching Logic for details
  • +
  • or literal: mandatory, the string value to be hashed
  • +
  • sha_type: optional, one of 256, 384 or 512, defaults to 384
  • +
  • base64: optional, true or false, defaults to true. Whether to encode the hash as base64
  • +
+

Either path or literal must be given.

+
{{ get_hash(literal="Hello World", sha_type=256) }}
+{{ get_hash(path="static/js/app.js", sha_type=256) }}
+
+

The function can also output a base64-encoded hash value when its base64 +parameter is set to true. This can be used to implement subresource +integrity.

+
<script src="{{ get_url(path="static/js/app.js") }}"
+  integrity="sha384-{{ get_hash(path="static/js/app.js", sha_type=384, base64=true) | safe }}"></script>
+
+

Do note that subresource integrity is typically used when using external scripts, which get_hash does not support.

+

🔗get_image_metadata

+

Gets metadata for an image. This supports common formats like JPEG, PNG, WebP, BMP, GIF as well as SVG.

+

It can take the following arguments:

+
    +
  • path: mandatory, see File Searching Logic for details
  • +
  • allow_missing: optional, true or false, defaults to false. Whether a missing file should raise an error or not.
  • +
+

The method returns a map containing width, height, format, and mime. The format returned is the most common file extension for the file format, which may not match the one used for the image.

+
  {% set meta = get_image_metadata(path="...") %}
+  Our image (.{{meta.format}}) has format is {{ meta.width }}x{{ meta.height }}
+
+

🔗load_data

+

Loads data from a file, URL, or string literal. Supported file types include toml, json, csv, bibtex, yaml/yml, +and xml and only supports UTF-8 encoding.

+

Any other file type will be loaded as plain text.

+

The path argument specifies the path to a local data file, according to the File Searching Logic.

+
{% set data = load_data(path="content/blog/story/data.toml") %}
+
+

Alternatively, the url argument specifies the location of a remote URL to load.

+
{% set data = load_data(url="https://en.wikipedia.org/wiki/Commune_of_Paris") %}
+
+

Alternatively, the literal argument specifies an object literal. Note: if the format argument is not specified, then plain text will be what is assumed.

+
{% set data = load_data(literal='{"name": "bob"}', format="json") %}
+{{ data["name"] }}
+
+

Note: the required parameter has no effect when used in combination with the literal argument.

+

The optional required boolean argument can be set to false so that missing data (HTTP error or local file not found) does not produce an error, but returns a null value instead. However, permission issues with a local file and invalid data that could not be parsed to the requested data format will still produce an error even with required=false.

+

The snippet below outputs the HTML from a Wikipedia page, or "No data found" if the page was not reachable, or did not return a successful HTTP code:

+
{% set data = load_data(url="https://en.wikipedia.org/wiki/Commune_of_Paris", required=false) %}
+{% if data %}{{ data | safe }}{% else %}No data found{% endif %}
+
+

The optional format argument allows you to specify and override which data type is contained within the specified file or URL. +Valid entries are toml, json, csv, bibtex, yaml, xml or plain. If the format argument isn't specified, then the +path extension is used. In the case of a literal, plain is assumed if format is unspecified.

+
{% set data = load_data(path="content/blog/story/data.txt", format="json") %}
+
+

Use the plain format for when your file has a supported extension but you want to load it as plain text.

+

For toml, json, yaml and xml, the data is loaded into a structure matching the original data file; +however, for csv there is no native notion of such a structure. Instead, the data is separated +into a data structure containing headers and records. See the example below to see +how this works.

+

In the template:

+
{% set data = load_data(path="content/blog/story/data.csv") %}
+
+

In the content/blog/story/data.csv file:

+
Number, Title
+1,Gutenberg
+2,Printing
+
+

The equivalent json value of the parsed data would be stored in the data variable in the +template:

+
{
+    "headers": ["Number", "Title"],
+    "records": [
+        ["1", "Gutenberg"],
+        ["2", "Printing"]
+    ],
+}
+
+

The bibtex format loads data into a structure matching the format used by the +nom-bibtex crate. The following is an example of data +in bibtex format:

+
@preamble{"A bibtex preamble" # " this is."}
+
+@Comment{
+    Here is a comment.
+}
+
+Another comment!
+
+@string(name = "Vincent Prouillet")
+@string(github = "https://github.com/getzola/zola")
+
+@misc {my_citation_key,
+    author= name,
+    title = "Zola",
+    note = "github: " # github
+}                                                    }
+
+

The following is the json-equivalent format of the produced bibtex data structure:

+
{
+    "preambles": ["A bibtex preamble this is."],
+    "comments": ["Here is a comment.", "Another comment!"],
+    "variables": {
+        "name": "Vincent Prouillet",
+        "github": "https://github.com/getzola/zola"
+    },
+    "bibliographies": [
+        {
+            "entry_type": "misc",
+            "citation_key": "my_citation_key",
+            "tags": {
+                "author": "Vincent Prouillet",
+                "title": "Zola",
+                "note": "github: https://github.com/getzola/zola"
+            }
+        }
+    ]
+}
+
+

Finally, the bibtex data can be accessed from the template as follows:

+
{% set tags = data.bibliographies[0].tags %}
+This was generated using {{ tags.title }}, authored by {{ tags.author }}.
+
+

🔗Remote content

+

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 path.

+
{% set response = load_data(url="https://api.github.com/repos/getzola/zola") %}
+{{ response }}
+
+

By default, the response body will be returned with no parsing. This can be changed by using the format argument +as below.

+
{% set response = load_data(url="https://api.github.com/repos/getzola/zola", format="json") %}
+{{ response }}
+
+

When no other parameters are specified the URL will always be retrieved using a HTTP GET request. +Using the parameter method, since version 0.14.0, you can also choose to retrieve the URL using a POST request.

+

When using method="POST" you can also use the parameters body and content_type. +The parameter body is the actual contents sent in the POST request. +The parameter content_type should be the mimetype of the body.

+

This example will make a POST request to the kroki service to generate a SVG.

+
{% set postdata = load_data(url="https://kroki.io/blockdiag/svg", format="plain", method="POST" ,content_type="text/plain", body="blockdiag {
+  'Doing POST' -> 'using load_data'
+  'using load_data' -> 'can generate' -> 'block diagrams';
+  'using load_data' -> is -> 'very easy!';
+
+  'Doing POST' [color = 'greenyellow'];
+  'block diagrams' [color = 'pink'];
+  'very easy!' [color = 'orange'];
+}")%}
+{{postdata|safe}}
+
+

If you need additional handling for the HTTP headers, you can use the headers parameter. +You might need this parameter when the resource requires authentication or require passing additional +parameters via special headers. +Please note that the headers will be appended to the default headers set by Zola itself instead of replacing them.

+

This example will make a POST request to the GitHub markdown rendering service.

+
{% set postdata = load_data(url="https://api.github.com/markdown", format="plain", method="POST", content_type="application/json", headers=["accept=application/vnd.github.v3+json"], body='{"text":"headers support added in #1710, commit before it: b3918f124d13ec1bedad4860c15a060dd3751368","context":"getzola/zola","mode":"gfm"}')%}
+{{postdata|safe}}
+
+

The following example shows how to send a GraphQL query to GitHub (requires authentication). +If you want to try this example on your own machine, you need to provide a GitHub PAT (Personal Access Token), +you can acquire the access token at this link: https://github.com/settings/tokens and then set GITHUB_TOKEN +environment variable to the access token you have obtained.

+
{% set token = get_env(name="GITHUB_TOKEN") %}
+{% set postdata = load_data(url="https://api.github.com/graphql", format="json", method="POST" ,content_type="application/json", headers=["accept=application/vnd.github.v4.idl", "authorization=Bearer " ~ token], body='{"query":"query { viewer { login }}"}')%}
+{{postdata|safe}}
+
+

In case you need to specify multiple headers with the same name, you can specify them like this:

+
headers=["accept=application/json,text/html"]
+
+

Which is equivalent to two Accept headers with application/json and text/html.

+

If it doesn't work, you can instead specify the headers multiple times to achieve a similar effect:

+
headers=["accept=application/json", "accept=text/html"]
+
+

🔗Data caching

+

Data file loading and remote requests are cached in memory during the 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 file modified time. +The format is also taken into account when caching, so a request will be sent twice if it's loaded with two +different formats.

+

🔗trans

+

Gets the translation of the given key, for the default_language, the language given or the active language:

+
{{ trans(key="title") }}
+{{ trans(key="title", lang="fr") }}
+{{/* trans(key="title", lang=lang) */}}
+
+

🔗resize_image

+

Resizes an image file. +Please refer to Content / Image Processing for complete documentation.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/pages-sections/index.html b/documentation/templates/pages-sections/index.html new file mode 100644 index 000000000..ca1ca02c9 --- /dev/null +++ b/documentation/templates/pages-sections/index.html @@ -0,0 +1,399 @@ + + + + + + + + + Sections and Pages | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Sections and Pages

+

Templates for pages and sections are very similar.

+

🔗Page variables

+

Zola will try to load the templates/page.html template, the page.html template of the theme if one is used +or render the built-in template (a blank page).

+

Whichever template you decide to render, you will get a page variable in your template +with the following fields:

+
// The HTML output of the Markdown content
+content: String;
+title: String?;
+description: String?;
+date: String?;
+updated: String?;
+slug: String;
+path: String;
+authors: Array<String>;
+draft: Bool;
+// the path, split on '/'
+components: Array<String>;
+permalink: String;
+summary: String?;
+taxonomies: HashMap<String, Array<String>>;
+extra: HashMap<String, Any>;
+toc: Array<Header>,
+// Naive word count, will not work for languages without whitespace
+word_count: Number;
+// Based on https://help.medium.com/hc/en-us/articles/214991667-Read-time
+reading_time: Number;
+// earlier / lighter
+lower: Page?;
+// later / heavier
+higher: Page?;
+// Year/month/day is only set if the page has a date and month/day are 1-indexed
+year: Number?;
+month: Number?;
+day: Number?;
+// Paths of colocated assets, relative to the content directory
+assets: Array<String>;
+// The relative paths of the parent sections until the index one, for use with the `get_section` Tera function
+// The first item is the index section and the last one is the parent section
+// This is filled after rendering a page content so it will be empty in shortcodes
+ancestors: Array<String>;
+// The relative path from the `content` directory to the markdown file
+relative_path: String;
+// The relative path from the `content` directory to the directory of a colocated index.md markdown file
+// Null if the file is not colocated.
+colocated_path: String?;
+// The language for the page if there is one. Default to the config `default_language`
+lang: String;
+// Information about all the available languages for that content, including the current page
+translations: Array<TranslatedContent>;
+// All the pages/sections linking this page: their permalink and a title if there is one
+backlinks: Array<{permalink: String, title: String?}>;
+
+

🔗Section variables

+

By default, Zola will try to load templates/index.html for content/_index.md +and templates/section.html for other _index.md files. If there isn't +one, it will render the built-in template (a blank page).

+

Whichever template you decide to render, you will get a section variable in your template +with the following fields:

+
// The HTML output of the Markdown content
+content: String;
+title: String?;
+description: String?;
+path: String;
+// the path, split on '/'
+components: Array<String>;
+permalink: String;
+extra: HashMap<String, Any>;
+// Pages directly in this section. By default, the pages are not sorted. Please set the "sort_by"
+// variable in the _index.md file of the corresponding section to "date" or "weight" for sorting by
+// date and weight, respectively.
+pages: Array<Page>;
+// Direct subsections to this section, sorted by subsections weight
+// This only contains the path to use in the `get_section` built-in function to get
+// the actual section object if you need it
+subsections: Array<String>;
+toc: Array<Header>,
+// Unicode word count
+word_count: Number;
+// Based on https://help.medium.com/hc/en-us/articles/214991667-Read-time
+reading_time: Number;
+// Paths of colocated assets, relative to the content directory
+assets: Array<String>;
+// The relative paths of the parent sections until the index one, for use with the `get_section` Tera function
+// The first item is the index section and the last one is the parent section
+// This is filled after rendering a page content so it will be empty in shortcodes
+ancestors: Array<String>;
+// The relative path from the `content` directory to the markdown file
+relative_path: String;
+// The language for the section if there is one. Default to the config `default_language`
+lang: String;
+// Information about all the available languages for that content
+translations: Array<TranslatedContent>;
+// All the pages/sections linking this page: their permalink and a title if there is one
+backlinks: Array<{permalink: String, title: String?}>;
+// Whether this section generates feeds or not. Taken from the front-matter if set
+generate_feeds: bool;
+// Whether this section is transparent. Taken from the front-matter if set
+transparent: bool;
+
+

🔗Table of contents

+

Both page and section templates have a toc variable that corresponds to an array of Header. +A Header has the following fields:

+
// The hX level
+level: 1 | 2 | 3 | 4 | 5 | 6;
+// The generated slug id
+id: String;
+// The text of the header
+title: String;
+// A link pointing directly to the header, using the inserted anchor
+permalink: String;
+// All lower level headers below this header
+children: Array<Header>;
+
+

🔗Translated content

+

Both pages and sections have a translations field that corresponds to an array of TranslatedContent. If your +site is not using multiple languages, this will always be an empty array. +TranslatedContent has the following fields:

+
// The language code for that content, empty if it is the default language
+lang: String?;
+// The title of that content if there is one
+title: String?;
+// A permalink to that content
+permalink: String;
+// The path to the markdown file; useful for retrieving the full page through
+// the `get_page` function.
+path: String;
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/pagination/index.html b/documentation/templates/pagination/index.html new file mode 100644 index 000000000..ca5691d69 --- /dev/null +++ b/documentation/templates/pagination/index.html @@ -0,0 +1,334 @@ + + + + + + + + + Pagination | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Pagination

+

Two things can get paginated: a section and a taxonomy term.

+

Both kinds get a paginator variable of the Pager type, on top of the common variables mentioned in the +overview page:

+
// How many items per pager
+paginate_by: Number;
+// The base URL for the pagination: section permalink + pagination path
+// You can concatenate an integer with that to get a link to a given pagination pager.
+base_url: String;
+// How many pagers in total
+number_pagers: Number;
+// Permalink to the first pager
+first: String;
+// Permalink to the last pager
+last: String;
+// Permalink to the previous pager, if there is one
+previous: String?;
+// Permalink to the next pager, if there is one
+next: String?;
+// All pages for the current pager
+pages: Array<Page>;
+// Which pager are we on, 1-indexed
+current_index: Number;
+// Total number of pages across all the pagers
+total_pages: Number;
+
+

The variable will not be defined if paginate_by is not set to a positive number.

+

A pager is a page of the pagination; if you have 100 pages and paginate_by is set to 10, you will have 10 pagers each +containing 10 pages.

+

🔗Section

+

A paginated section gets the same section variable as a normal +section page +minus its pages. The pages are instead in paginator.pages.

+

🔗Taxonomy term

+

A paginated taxonomy gets two variables aside from the paginator variable:

+
    +
  • a taxonomy variable of type TaxonomyConfig
  • +
  • a term variable of type TaxonomyTerm.
  • +
+

See the taxonomies page for a detailed version of the types.

+

🔗Example

+

Here is an example from a theme on how to use pagination on a page (index.html in this case):

+
<div class="posts">
+    {% for page in paginator.pages %}
+        <article class="post">
+            {{ post_macros::title(page=page) }}
+            <div class="post__summary">
+                {{ page.summary | safe }}
+            </div>
+            <div class="read-more">
+                <a href="{{ page.permalink }}">Read more...</a>
+            </div>
+        </article>
+    {% endfor %}
+</div>
+<nav class="pagination">
+    {% if paginator.previous %}
+        <a class="previous" href="{{ paginator.previous }}">‹ Previous</a>
+    {% endif %}
+    {% if paginator.next %}
+        <a class="next" href="{{ paginator.next }}">Next ›</a>
+    {% endif %}
+</nav>
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/robots/index.html b/documentation/templates/robots/index.html new file mode 100644 index 000000000..addb50922 --- /dev/null +++ b/documentation/templates/robots/index.html @@ -0,0 +1,280 @@ + + + + + + + + + Robots.txt | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Robots.txt

+

Zola will look for a robots.txt file in the templates directory or +use the built-in one.

+

Robots.txt is the simplest of all templates: it only gets config +and the default is what most sites want:

+
User-agent: *
+Disallow:
+Allow: /
+Sitemap: {{ get_url(path="sitemap.xml") }}
+
+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/rss/index.html b/documentation/templates/rss/index.html new file mode 100644 index 000000000..eb7452e8c --- /dev/null +++ b/documentation/templates/rss/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/documentation/templates/sitemap/index.html b/documentation/templates/sitemap/index.html new file mode 100644 index 000000000..1abe12642 --- /dev/null +++ b/documentation/templates/sitemap/index.html @@ -0,0 +1,295 @@ + + + + + + + + + Sitemap | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Sitemap

+

Zola will look for a sitemap.xml file in the templates directory or +use the built-in one.

+

If your site has more than 30 000 pages, it will automatically split +the links into multiple sitemaps, as recommended by Google:

+
+

All formats limit a single sitemap to 50MB (uncompressed) and 50,000 URLs. +If you have a larger file or more URLs, you will have to break your list into multiple sitemaps. +You can optionally create a sitemap index file (a file that points to a list of sitemaps) and submit +that single index file to Google.

+
+

In such a case, Zola will use a template called split_sitemap_index.xml to render the index sitemap.

+

The sitemap.xml template gets a single variable:

+
    +
  • entries: all pages of the site, as a list of SitemapEntry
  • +
+

A SitemapEntry has the following fields:

+
permalink: String;
+updated: String?;
+extra: Hashmap<String, Any>?;
+
+

The split_sitemap_index.xml also gets a single variable:

+
    +
  • sitemaps: a list of permalinks to the sitemaps
  • +
+ + +
+
+ +
+ + + + + + diff --git a/documentation/templates/taxonomies/index.html b/documentation/templates/taxonomies/index.html new file mode 100644 index 000000000..e1bf166e9 --- /dev/null +++ b/documentation/templates/taxonomies/index.html @@ -0,0 +1,328 @@ + + + + + + + + + Taxonomies | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Taxonomies

+

Zola will look up the following, taxon-specific files in the templates directory:

+
    +
  • $TAXONOMY_NAME/single.html
  • +
  • $TAXONOMY_NAME/list.html
  • +
+

if they are not found, it will attempt to fall back on the following generic template files:

+
    +
  • taxonomy_single.html
  • +
  • taxonomy_list.html
  • +
+

The taxonomy templates are required only if at least one taxonomy exists with render set to true.

+

First, TaxonomyTerm has the following fields:

+
name: String;
+slug: String;
+path: String;
+permalink: String;
+pages: Array<Page>;
+page_count: Number;
+
+

and TaxonomyConfig has the following fields:

+
name: String,
+paginate_by: Number?;
+paginate_path: String?;
+feed: Bool;
+render: Bool;
+
+

🔗Taxonomy list (list.html)

+

This template is never paginated and therefore gets the following variables in all cases.

+
// The site config
+config: Config;
+// The data of the taxonomy, from the config
+taxonomy: TaxonomyConfig;
+// The current full permalink for that page
+current_url: String;
+// The current path for that page
+current_path: String;
+// All terms for that taxonomy
+terms: Array<TaxonomyTerm>;
+// The lang of the current page
+lang: String;
+
+

🔗Single term (single.html)

+
// The site config
+config: Config;
+// The data of the taxonomy, from the config
+taxonomy: TaxonomyConfig;
+// The current full permalink for that page
+current_url: String;
+// The current path for that page
+current_path: String;
+// The current term being rendered
+term: TaxonomyTerm;
+// The lang of the current page
+lang: String;
+
+

A paginated taxonomy term will also get a paginator variable; see the +pagination page for more details.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/themes/creating-a-theme/index.html b/documentation/themes/creating-a-theme/index.html new file mode 100644 index 000000000..34e056665 --- /dev/null +++ b/documentation/themes/creating-a-theme/index.html @@ -0,0 +1,322 @@ + + + + + + + + + Creating a theme | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Creating a theme

+

Creating a theme is exactly like creating a normal site with Zola, except you +will want to use many Tera blocks to +allow users to easily modify it.

+

🔗Getting started

+

As mentioned, a theme is just like any site; start by running zola init MY_THEME_NAME.

+

The only thing needed to turn that site into a theme is to add a theme.toml configuration file with the +following fields:

+
name = "my theme name"
+description = "A classic blog theme"
+license = "MIT"
+homepage = "https://github.com/getzola/hyde"
+# The minimum version of Zola required
+min_version = "0.4.0"
+# An optional live demo URL
+demo = ""
+
+# Any variable there can be overridden in the end user `config.toml`
+# You don't need to prefix variables by the theme name but as this will
+# be merged with user data, some kind of prefix or nesting is preferable
+# Use snake_casing to be consistent with the rest of Zola
+[extra]
+
+# The theme author info: you!
+[author]
+name = "Vincent Prouillet"
+homepage = "https://vincent.is"
+
+# If this is porting a theme from another static site engine, provide
+# the info of the original author here
+[original]
+author =  "mdo"
+homepage = "https://markdotto.com/"
+repo = "https://www.github.com/mdo/hyde"
+
+

A simple theme you can use as an example is Hyde.

+

🔗Working on a theme

+

As a theme is just a site, you can simply use zola serve and make changes to your +theme, with live reload working as expected.

+

Make sure to commit every directory (including content) in order for other people +to be able to build the theme from your repository.

+ +

If you want your theme to be featured in the themes section +of this site, make sure that the theme meets the following three requirements:

+
    +
  • have a screenshot.png of the theme in action with a max size of around 2000x1000
  • +
  • have a thorough README.md explaining how to use the theme and any other information +of importance
  • +
  • be of reasonably high quality
  • +
+

When your theme is ready, you can submit it to the themes repository +by following the process in the README.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/themes/extending-a-theme/index.html b/documentation/themes/extending-a-theme/index.html new file mode 100644 index 000000000..2fa30514f --- /dev/null +++ b/documentation/themes/extending-a-theme/index.html @@ -0,0 +1,280 @@ + + + + + + + + + Customizing a theme | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Customizing a theme

+

When your site uses a theme, you can replace parts of it in your site's templates folder. For any given theme template, you can either override a single block in it, or replace the whole template. If a site template and a theme template collide, the site template will be given priority. Whether a theme template collides or not, theme templates remain accessible from any template within theme_name/templates/.

+

🔗Replacing a template

+

When your site uses a theme, the generated structure follows the theme's structure whenever possible, i.e. there are no user defined templates with the same name and relative path as the theme's; for example: with two files templates/page.html and themes/theme_name/templates/page.html, the site template is the one that will be used. Such a conflict results in the theme's template being ignored in favor of the template defined by the user.

+

🔗Overriding a block

+

If you don't want to replace a whole template, but override parts of it, you can extend the template and redefine some specific blocks. For example, if you want to override the title block in your theme's page.html, you can create a page.html file in your site templates with the following content:

+
{% extends "theme_name/templates/page.html" %}
+{% block title %}{{ page.title }}{% endblock %}
+
+

If you extend page.html and not theme_name/templates/page.html specifically, it will extend the site's page template if it exists, and the theme's page template otherwise. This makes it possible to override your theme's base template(s) from your site templates, as long as the theme templates do not hardcode the theme name in template paths. For instance, children templates in the theme should use {% extends 'index.html' %}, not {% extends 'theme_name/templates/index.html' %}.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/themes/index.html b/documentation/themes/index.html new file mode 100644 index 000000000..0eb9903de --- /dev/null +++ b/documentation/themes/index.html @@ -0,0 +1,6 @@ + + + + +Redirect +

Click here to be redirected.

diff --git a/documentation/themes/installing-and-using-themes/index.html b/documentation/themes/installing-and-using-themes/index.html new file mode 100644 index 000000000..ae2bc39f8 --- /dev/null +++ b/documentation/themes/installing-and-using-themes/index.html @@ -0,0 +1,314 @@ + + + + + + + + + Installing & using themes | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Installing & using themes

+

🔗Installing a theme

+

The easiest way to install a theme is to clone its repository in the themes +directory:

+
$ cd themes
+$ git clone <theme repository URL>
+
+

Cloning the repository using Git or another VCS will allow you to easily +update. Alternatively, you can download the files manually and place +them in a folder.

+

You can find a list of themes here.

+

🔗Using a theme

+

Now that you have the theme in your themes directory, you need to tell +Zola to use it by setting the theme variable in the +configuration file. The theme +name has to be the name of the directory you cloned the theme in. +For example, if you cloned a theme in themes/simple-blog, the theme name to use +in the configuration file is simple-blog. Also make sure to place the variable in the top level of the +.toml hierarchy and not after a dict like [extra] or [markdown]. +Some themes require additional configuration before they can work properly. Be sure to follow the instructions found on your chosen theme's documentation to properly configure the theme.

+

🔗Customizing a theme

+

Any file from the theme can be overridden by creating a file with the same path and name in your templates or static +directory. Here are a few examples of that, assuming that the theme name is simple-blog:

+
templates/pages/post.html -> replace themes/simple-blog/templates/pages/post.html
+templates/macros.html -> replace themes/simple-blog/templates/macros.html
+static/js/site.js -> replace themes/simple-blog/static/js/site.js
+
+

You can also choose to only override parts of a page if a theme defines some blocks by extending it. If we wanted +to only change a single block from the post.html page in the example above, we could do the following:

+
{% extends "simple-blog/templates/pages/post.html" %}
+
+{% block some_block %}
+Some custom data
+{% endblock %}
+
+

Most themes will also provide some variables that are meant to be overridden. This happens in the extra section +of the configuration file. +Let's say a theme uses a show_twitter variable and sets it to false by default. If you want to set it to true, +you can update your config.toml like so:

+
[extra]
+show_twitter = true
+
+

You can modify files directly in the themes directory but this will make updating the theme harder and live reload +won't work with these files.

+ + +
+
+ +
+ + + + + + diff --git a/documentation/themes/overview/index.html b/documentation/themes/overview/index.html new file mode 100644 index 000000000..8ffa9e54a --- /dev/null +++ b/documentation/themes/overview/index.html @@ -0,0 +1,275 @@ + + + + + + + + + Overview | Zola + + + + + +
+ + +
+ +
+ + +
+ +
+ +

Overview

+

Themes are collections of layouts and styles used to facilitate the creation and management of Zola projects. As such, themes are Zola projects which provide their own templates, content and even static assets.

+

Zola has built-in support for themes which makes it easy to customise and update them.

+

All themes can use the full power of Zola, from shortcodes to Sass compilation.

+

A list of themes is available here.

+ + +
+
+ +
+ + + + + + diff --git a/elasticlunr.min.js b/elasticlunr.min.js new file mode 100644 index 000000000..79dad65f5 --- /dev/null +++ b/elasticlunr.min.js @@ -0,0 +1,10 @@ +/** + * elasticlunr - http://weixsong.github.io + * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.6 + * + * Copyright (C) 2017 Oliver Nightingale + * Copyright (C) 2017 Wei Song + * MIT Licensed + * @license + */ +!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o + + + + + + + + Zola + + + + + +
+ + +
+ +
+ +
+

Your one-stop static site engine

+

+ Forget dependencies. Everything you need in one binary. +

+ Get started +
+ +
+
+
+

No dependencies

+

+ Zola comes as a single executable with Sass compilation, syntax highlighting, table of contents + and many other features that traditionally require setting up a dev environment + or adding some JavaScript libraries to your site. +

+
+ +
+

Blazing fast

+

+ The average site will be generated in less than a second, + including Sass compilation and syntax highlighting. +

+
+ +
+

Scalable

+

+ Zola renders your whole site as static files, making it trivial to handle + any kind of traffic you will throw at it at no cost without having + to worry about managing a server or a database. +

+
+ +
+

Easy to use

+

+ From the CLI to the template engine, everything is designed to be intuitive. + Don't take my word for it though, look at the + documentation and see for yourself. +

+
+ +
+

Flexible

+

+ Zola gets out of your way so you can focus on your content, be it a blog, + a knowledge base, a landing page or a combination of them. +

+
+ +
+

Augmented Markdown

+

+ Zola comes with shortcodes and + internal links + to make it easier to write your content. +

+
+
+
+ + +
+ + + + + + diff --git a/processed_images/01-zola.1a8b81cf026f45cb.png b/processed_images/01-zola.1a8b81cf026f45cb.png new file mode 100644 index 000000000..a32742aba Binary files /dev/null and b/processed_images/01-zola.1a8b81cf026f45cb.png differ diff --git a/processed_images/01-zola.2894991332a9de9e.png b/processed_images/01-zola.2894991332a9de9e.png new file mode 100644 index 000000000..4809047a8 Binary files /dev/null and b/processed_images/01-zola.2894991332a9de9e.png differ diff --git a/processed_images/01-zola.415a7ae280b04f3a.png b/processed_images/01-zola.415a7ae280b04f3a.png new file mode 100644 index 000000000..e161ab9c8 Binary files /dev/null and b/processed_images/01-zola.415a7ae280b04f3a.png differ diff --git a/processed_images/01-zola.88a4046ce11eac5c.png b/processed_images/01-zola.88a4046ce11eac5c.png new file mode 100644 index 000000000..e161ab9c8 Binary files /dev/null and b/processed_images/01-zola.88a4046ce11eac5c.png differ diff --git a/processed_images/01-zola.8b09d4ac023bf17f.png b/processed_images/01-zola.8b09d4ac023bf17f.png new file mode 100644 index 000000000..8a987e72e Binary files /dev/null and b/processed_images/01-zola.8b09d4ac023bf17f.png differ diff --git a/processed_images/01-zola.a7f6fb4842538499.png b/processed_images/01-zola.a7f6fb4842538499.png new file mode 100644 index 000000000..22ff33a5c Binary files /dev/null and b/processed_images/01-zola.a7f6fb4842538499.png differ diff --git a/processed_images/01-zola.aa5c9741e1f54677.png b/processed_images/01-zola.aa5c9741e1f54677.png new file mode 100644 index 000000000..ec483367f Binary files /dev/null and b/processed_images/01-zola.aa5c9741e1f54677.png differ diff --git a/processed_images/01-zola.c31346a8ceb47990.png b/processed_images/01-zola.c31346a8ceb47990.png new file mode 100644 index 000000000..d9bd0c48a Binary files /dev/null and b/processed_images/01-zola.c31346a8ceb47990.png differ diff --git a/processed_images/02-zola-manet.f247a1c1a09dea92.png b/processed_images/02-zola-manet.f247a1c1a09dea92.png new file mode 100644 index 000000000..1bbcfaf99 Binary files /dev/null and b/processed_images/02-zola-manet.f247a1c1a09dea92.png differ diff --git a/processed_images/03-zola-cezanne.54f3edb977adbe2f.png b/processed_images/03-zola-cezanne.54f3edb977adbe2f.png new file mode 100644 index 000000000..26d94952e Binary files /dev/null and b/processed_images/03-zola-cezanne.54f3edb977adbe2f.png differ diff --git a/processed_images/04-gutenberg.6b23c36e66378f24.jpg b/processed_images/04-gutenberg.6b23c36e66378f24.jpg new file mode 100644 index 000000000..e4595c176 Binary files /dev/null and b/processed_images/04-gutenberg.6b23c36e66378f24.jpg differ diff --git a/processed_images/05-example.67dc3b46cdb5d5d4.jpg b/processed_images/05-example.67dc3b46cdb5d5d4.jpg new file mode 100644 index 000000000..b50a4638c Binary files /dev/null and b/processed_images/05-example.67dc3b46cdb5d5d4.jpg differ diff --git a/processed_images/06-example.2c54491c2daefe2f.jpg b/processed_images/06-example.2c54491c2daefe2f.jpg new file mode 100644 index 000000000..d5eb7c0b7 Binary files /dev/null and b/processed_images/06-example.2c54491c2daefe2f.jpg differ diff --git a/processed_images/07-example.3143e7a66ae6fd02.jpg b/processed_images/07-example.3143e7a66ae6fd02.jpg new file mode 100644 index 000000000..9c37769a0 Binary files /dev/null and b/processed_images/07-example.3143e7a66ae6fd02.jpg differ diff --git a/processed_images/08-example.684e6a6497b4e859.jpg b/processed_images/08-example.684e6a6497b4e859.jpg new file mode 100644 index 000000000..c71858f71 Binary files /dev/null and b/processed_images/08-example.684e6a6497b4e859.jpg differ diff --git a/processed_images/08-example.cdf453f9e75156af.jpg b/processed_images/08-example.cdf453f9e75156af.jpg new file mode 100644 index 000000000..332ce0262 Binary files /dev/null and b/processed_images/08-example.cdf453f9e75156af.jpg differ diff --git a/robots.txt b/robots.txt new file mode 100644 index 000000000..f39974753 --- /dev/null +++ b/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: +Allow: / +Sitemap: https://www.getzola.org/sitemap.xml diff --git a/search.js b/search.js new file mode 100644 index 000000000..553b1de36 --- /dev/null +++ b/search.js @@ -0,0 +1,199 @@ +function debounce(func, wait) { + var timeout; + + return function () { + var context = this; + var args = arguments; + clearTimeout(timeout); + + timeout = setTimeout(function () { + timeout = null; + func.apply(context, args); + }, wait); + }; +} + +// Taken from mdbook +// The strategy is as follows: +// First, assign a value to each word in the document: +// Words that correspond to search terms (stemmer aware): 40 +// Normal words: 2 +// First word in a sentence: 8 +// Then use a sliding window with a constant number of words and count the +// sum of the values of the words within the window. Then use the window that got the +// maximum sum. If there are multiple maximas, then get the last one. +// Enclose the terms in . +function makeTeaser(body, terms) { + var TERM_WEIGHT = 40; + var NORMAL_WORD_WEIGHT = 2; + var FIRST_WORD_WEIGHT = 8; + var TEASER_MAX_WORDS = 30; + + var stemmedTerms = terms.map(function (w) { + return elasticlunr.stemmer(w.toLowerCase()); + }); + var termFound = false; + var index = 0; + var weighted = []; // contains elements of ["word", weight, index_in_document] + + // split in sentences, then words + var sentences = body.toLowerCase().split(". "); + + for (var i in sentences) { + var words = sentences[i].split(" "); + var value = FIRST_WORD_WEIGHT; + + for (var j in words) { + var word = words[j]; + + if (word.length > 0) { + for (var k in stemmedTerms) { + if (elasticlunr.stemmer(word).startsWith(stemmedTerms[k])) { + value = TERM_WEIGHT; + termFound = true; + } + } + weighted.push([word, value, index]); + value = NORMAL_WORD_WEIGHT; + } + + index += word.length; + index += 1; // ' ' or '.' if last word in sentence + } + + index += 1; // because we split at a two-char boundary '. ' + } + + if (weighted.length === 0) { + return body; + } + + var windowWeights = []; + var windowSize = Math.min(weighted.length, TEASER_MAX_WORDS); + // We add a window with all the weights first + var curSum = 0; + for (var i = 0; i < windowSize; i++) { + curSum += weighted[i][1]; + } + windowWeights.push(curSum); + + for (var i = 0; i < weighted.length - windowSize; i++) { + curSum -= weighted[i][1]; + curSum += weighted[i + windowSize][1]; + windowWeights.push(curSum); + } + + // If we didn't find the term, just pick the first window + var maxSumIndex = 0; + if (termFound) { + var maxFound = 0; + // backwards + for (var i = windowWeights.length - 1; i >= 0; i--) { + if (windowWeights[i] > maxFound) { + maxFound = windowWeights[i]; + maxSumIndex = i; + } + } + } + + var teaser = []; + var startIndex = weighted[maxSumIndex][2]; + for (var i = maxSumIndex; i < maxSumIndex + windowSize; i++) { + var word = weighted[i]; + if (startIndex < word[2]) { + // missing text from index to start of `word` + teaser.push(body.substring(startIndex, word[2])); + startIndex = word[2]; + } + + // add around search terms + if (word[1] === TERM_WEIGHT) { + teaser.push(""); + } + startIndex = word[2] + word[0].length; + teaser.push(body.substring(word[2], startIndex)); + + if (word[1] === TERM_WEIGHT) { + teaser.push(""); + } + } + teaser.push("…"); + return teaser.join(""); +} + +function formatSearchResultItem(item, terms) { + return '
' + + `${item.doc.title}` + + `
${makeTeaser(item.doc.body, terms)}
` + + '
'; +} + +function initSearch() { + var $searchInput = document.getElementById("search"); + var $searchResults = document.querySelector(".search-results"); + var $searchResultsItems = document.querySelector(".search-results__items"); + var MAX_ITEMS = 10; + + var options = { + bool: "AND", + fields: { + title: {boost: 2}, + body: {boost: 1}, + } + }; + var currentTerm = ""; + var index; + + var initIndex = async function () { + if (index === undefined) { + index = fetch("/search_index.en.json") + .then( + async function(response) { + return await elasticlunr.Index.load(await response.json()); + } + ); + } + let res = await index; + return res; + } + + $searchInput.addEventListener("keyup", debounce(async function() { + var term = $searchInput.value.trim(); + if (term === currentTerm) { + return; + } + $searchResults.style.display = term === "" ? "none" : "block"; + $searchResultsItems.innerHTML = ""; + currentTerm = term; + if (term === "") { + return; + } + + var results = (await initIndex()).search(term, options); + if (results.length === 0) { + $searchResults.style.display = "none"; + return; + } + + for (var i = 0; i < Math.min(results.length, MAX_ITEMS); i++) { + var item = document.createElement("li"); + item.innerHTML = formatSearchResultItem(results[i], term.split(" ")); + $searchResultsItems.appendChild(item); + } + }, 150)); + + window.addEventListener('click', function(e) { + if ($searchResults.style.display == "block" && !$searchResults.contains(e.target)) { + $searchResults.style.display = "none"; + } + }); +} + + +if (document.readyState === "complete" || + (document.readyState !== "loading" && !document.documentElement.doScroll) +) { + initSearch(); +} else { + document.addEventListener("DOMContentLoaded", initSearch); +} diff --git a/search_index.en.json b/search_index.en.json new file mode 100644 index 000000000..72fcc5e8d --- /dev/null +++ b/search_index.en.json @@ -0,0 +1 @@ +{"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":2}}}}},"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951}},"df":1}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":2}}},"4":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1},"1":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}},"5":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}},"7":{"docs":{},"df":0,".":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":3}}},"9":{"docs":{"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":4}}}},"9":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}},"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0}},"df":1}},"1":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1},"2":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1},"3":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1},"4":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1},"6":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"1":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":17,",":{"docs":{},"df":0,"2":{"docs":{},"df":0,"3":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}},".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":3},"2":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1,"3":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}},"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"0":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":6,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":4},"2":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1,":":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}},"1":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1},"2":{"docs":{},"df":0,"7":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,":":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1,"1":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"3":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1,"3":{"docs":{},"df":0,"7":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}},"4":{"docs":{},"df":0,"9":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}},"7":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1,"k":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951}},"df":1}}},"8":{"docs":{},"df":0,"0":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}},"k":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"2":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":17,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":2}},"0":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1}},"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"x":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}}},"3":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}},"1":{"docs":{},"df":0,"7":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951}},"df":1},"8":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1},"9":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":1}},"2":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1},"1":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1},"3":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":2},"4":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"3":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1},"5":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"p":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}},"6":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1},"k":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}},"8":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}},"3":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":16,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2},"4":{"docs":{"https://www.getzola.org/themes/book/":{"tf":1.0}},"df":1}},"0":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0}},"df":1,"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}},"4":{"docs":{},"df":0,"d":{"docs":{},"df":0,"0":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"8":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1},"4":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772}},"df":1}},"k":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":2.23606797749979}},"df":1}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}},"4":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":14,"/":{"docs":{},"df":0,"5":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}}},"0":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":10,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":3}}}}}}},"2":{"docs":{},"df":0,"8":{"docs":{},"df":0,"7":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"5":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":13,".":{"docs":{},"df":0,"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"3":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1,",":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0}},"df":1}}},"1":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}},"k":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}},"6":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6,"4":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}},"7":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":3,"0":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1,"0":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/emily/":{"tf":1.0}},"df":1}}},"5":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951}},"df":1}},"8":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":4,"0":{"docs":{},"df":0,"8":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,":":{"docs":{},"df":0,"8":{"docs":{},"df":0,"0":{"docs":{},"df":0,"8":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}},"9":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1,"0":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2,"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}},"a":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"_":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":3,"0":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1},"6":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1},"7":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":2}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":3.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":23,"'":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}},"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}},"{":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":3}}},"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/seje2/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}},"]":{"docs":{},"df":0,"(":{"docs":{},"df":0,"#":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":2.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":17}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":3.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":2.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":2}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772}},"df":2,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.7320508075688772}},"df":3}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":22,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":4,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":4}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":13}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"k":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":3}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9}},"v":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":4}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":10}}}}},"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":29,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":4}}},"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.23606797749979},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/anemone/":{"tf":2.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/clean-blog/":{"tf":2.449489742783178},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.449489742783178},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":4.795831523312719},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seagull/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.449489742783178},"https://www.getzola.org/themes/tale-zola/":{"tf":3.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":69,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":21,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":10}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":2.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":11}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":2.8284271247461903}},"df":1}}},"t":{"docs":{"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":1,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":1}}}}}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.4142135623730951}},"df":2}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":2}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/after-dark/":{"tf":1.0}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":3,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5}},"k":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":2.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.7320508075688772}},"df":2}}},"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1},"g":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":25,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":1,"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2,"'":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":2}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":25}}}}},"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":11}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":6}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":15}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}},"p":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":16,";":{"docs":{},"df":0,"#":{"docs":{},"df":0,"x":{"docs":{},"df":0,"2":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":13}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772}},"df":1}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":3}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":5}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":2.8284271247461903}},"df":1}}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":3.0}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772}},"df":4,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1},"y":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":18}}},"p":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0}},"df":1}}}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"3":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":11}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":2}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":2},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}},"p":{"docs":{"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":4,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":18}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":5}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":9,"c":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":6}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":2}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951}},"df":2,"v":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":9}}}},"e":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":2}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":4.123105625617661},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.605551275463989},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772}},"df":8}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"6":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0}},"df":7}},"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":15,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951}},"df":1}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":2}},"t":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":4,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}},"k":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":6},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":11}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":4}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":5}}},"u":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":9,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3}}},"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951}},"df":1}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":3}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-paper/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772}},"df":10}}}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1},"t":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":2}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":24,"'":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":4},".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772}},"df":1}}}}},"s":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772}},"df":10,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"m":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":38}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":2.0}},"df":2}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":4.47213595499958},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":44}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":3}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":7}}}},"w":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.449489742783178}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2,"d":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}},"y":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":2}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":9}}}},"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772}},"df":1,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1,"@":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}}}}}}},"z":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"b":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"k":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":8,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772}},"df":7}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":3}}}}}},"d":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":2},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zola-paper/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":10,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":2.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":53,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":4}}}}},"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}},"1":{"docs":{},"df":0,"6":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":3}},"6":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178}},"df":1,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":23,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}},"]":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":2.0}},"df":1}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}},"é":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"}":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}},"{":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":2,"c":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":17}}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979}},"df":1},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0}},"df":3}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":2}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":19}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":4}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":3}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"w":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":19}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":13}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":6}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":11}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907}},"df":1}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":3}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":4}}},"d":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":2}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951}},"df":2}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":2.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.872983346207417},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":28,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}},"g":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":4.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/clean-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":2.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":3.0},"https://www.getzola.org/themes/tabi/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/tale-zola/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":2.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/zplit/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":43,"'":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":1},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772}},"df":1}}}},"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}}}}}}},"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":2}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":1}}}}}},"w":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772}},"df":1}},"u":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772}},"df":2}}},"m":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":3}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/themes/book/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/book/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5}}}},"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":5,"5":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":1}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/boring/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":3},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":17},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":6}}}},"x":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":13}},"d":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.23606797749979}},"df":4}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}}}},"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":7,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772}},"df":1}}},"w":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":19,"'":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.23606797749979}},"df":1}}}},"g":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":13},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":3.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seagull/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":38,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951}},"df":1}}}},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":4}}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":31,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":4,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":3}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":14}}}},"y":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":2}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":2}}},"ö":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":1.0}},"df":1}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}}},"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":15,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":4}}}}},"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":3,"r":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":14,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}},"g":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":2,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1,",":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}},"è":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":23}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/toucan/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":18,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.449489742783178}},"df":6},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.8284271247461903}},"df":5,"'":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":7}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1},"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":2.449489742783178},"https://www.getzola.org/themes/juice/":{"tf":2.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":2.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":53,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.7320508075688772}},"df":1}}}}}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":2.8284271247461903}},"df":2}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":6}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":20,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}},"k":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1},"v":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":2,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":6}}},"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":8}},"o":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":19}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":2,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":4}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2}}}},"è":{"docs":{},"df":0,"v":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":5,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1},"s":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":8,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1},"f":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":16,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951}},"df":5,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":9,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772}},"df":4}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":2}}},"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":23}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":5,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":2.449489742783178}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"o":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":2,"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":2.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":38,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":4,"'":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.23606797749979}},"df":1}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":1}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951}},"df":1}}},"p":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"n":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772}},"df":26},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":5}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":9}}},"e":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":2.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":12},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.449489742783178},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":17,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":23}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":8,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":3}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}},"r":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":7}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":8,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":7},"x":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":2}}},"c":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2},"s":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":2}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":3}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/soapstone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":33,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907}},"df":2}}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":3}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951}},"df":2}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":2.23606797749979},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/andromeda/":{"tf":2.23606797749979},"https://www.getzola.org/themes/anemone/":{"tf":2.0},"https://www.getzola.org/themes/anpu/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hephaestus/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hyde/":{"tf":2.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":2.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":4.0},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":3.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":93,"'":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772}},"df":1},".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":3}}}}}}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":2.23606797749979},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.449489742783178},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":3.605551275463989},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":2.23606797749979},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":2.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zolarwind/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":62,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":2}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":4}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":13},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":6,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":28}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/page/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":2.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":4.123105625617661},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":3.605551275463989},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hephaestus/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hermit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":2.0},"https://www.getzola.org/themes/hyde/":{"tf":2.23606797749979},"https://www.getzola.org/themes/inky/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":2.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ntun/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":2.23606797749979},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zhuia/":{"tf":2.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.3166247903554},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":2.449489742783178}},"df":79,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"*":{"docs":{},"df":0,"*":{"docs":{},"df":0,"/":{"docs":{},"df":0,"*":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":21,"'":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/ntun/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"n":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5,"/":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"1":{"docs":{},"df":0,"8":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}},"2":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}},"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/otherworld/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":2}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":2,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"é":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951}},"df":1}}}},"\\":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}}}}}}},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0}},"df":6}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":4}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/duckquill/":{"tf":2.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":21,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":2}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951}},"df":2}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979}},"df":6}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":2},"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}},"y":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178}},"df":1}}},"p":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.23606797749979},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":31},"r":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1},"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":8}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":6}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":6}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/slim/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":2.23606797749979}},"df":4,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":1}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5}}}},"p":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":4}},"z":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/section/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":3.872983346207417},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":3.7416573867739413},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":2.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.0},"https://www.getzola.org/themes/dose/":{"tf":2.449489742783178},"https://www.getzola.org/themes/feather/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":2.23606797749979},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":68,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}},"v":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":3}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":5}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":1.0}},"df":1},"s":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":2.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":3.872983346207417},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":31,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178}},"df":1}}}}}}}}},":":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772}},"df":1}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"+":{"docs":{},"df":0,"f":{"docs":{},"df":0,"5":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":2}}},"l":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":19,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":2.23606797749979},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/andromeda/":{"tf":2.23606797749979},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/particle/":{"tf":2.449489742783178},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zallery/":{"tf":2.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":2.6457513110645907}},"df":57,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}}}},"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.605551275463989},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":9},"z":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":8}}}}}},"t":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}},"v":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":2.0}},"df":1},"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"%":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"%":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":1}}}}}},"3":{"docs":{},"df":0,"c":{"docs":{},"df":0,"3":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":2.23606797749979}},"df":1,"'":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":1}}}}}},"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/otherworld/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":3.3166247903554},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":2.23606797749979},"https://www.getzola.org/themes/apollo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":38,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":4}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":2}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":2}},"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951}},"df":3}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":4.58257569495584},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":3.0}},"df":12,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"v":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":4}}}},"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/section/":{"tf":3.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":2.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":23,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":2}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":2.449489742783178}},"df":1}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951}},"df":1},"e":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}},"b":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.7320508075688772}},"df":1}}},"u":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.6457513110645907}},"df":1}}},"c":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":5},"m":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":4}}},"e":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772}},"df":1,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":2.0}},"df":1}}}}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/linking/":{"tf":2.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":2.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":4.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":2.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":3.3166247903554},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":2.449489742783178},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":3.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolastrap/":{"tf":4.358898943540674},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":72,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":6}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":19,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":3}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":6,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":2}}},"o":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":51,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":1}}}}}}}}}},"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":19}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":2.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":26}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":2}}}}}},"i":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":1,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":10},"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":2.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":17,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":2.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":25}},"r":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6}},"k":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":3}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":24}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":5}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":4}}}}}},"v":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":21}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":3,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979}},"df":5}}}},"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178}},"df":1}}},"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":2}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":30}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"m":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}}}},"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}}}}}}}},"r":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":27}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":5.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":2.23606797749979},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":2.449489742783178},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":2.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":3.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":2.23606797749979},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":4.69041575982343},"https://www.getzola.org/themes/zplit/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":82}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":18,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0}},"df":1}}}}},"k":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":3.872983346207417},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":23,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772}},"df":5,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":9}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1},"s":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":3}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/soapstone/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0}},"df":1},"o":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3,"c":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":18,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":7,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"8":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":4}}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}},"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":48,"'":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}},"e":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":2,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":12}}}}},"k":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.23606797749979},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":11}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":22}},"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":4}},"e":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":20}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":3,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":4,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":39}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.449489742783178},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":4}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.7320508075688772}},"df":1}}}}}},"e":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":4},"m":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":4}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5}}}}},"e":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178}},"df":19}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":34}},"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":6}}}}},"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":4,"i":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":17,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":4},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":7}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13}}},"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.7320508075688772}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":2.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":22,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}}}},"u":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":2.0}},"df":1}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772}},"df":3}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}}}},"g":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":2},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":3,"'":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}}}}}}}}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"r":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951}},"df":6},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":8}}}}},"i":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":8}}},"b":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772}},"df":2,"e":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178}},"df":4}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/emily/":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":2}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":2.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.6457513110645907}},"df":13}}}},"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":9,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":2.8284271247461903}},"df":58}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951}},"df":2}}},"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":5},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":3}}}}}},"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":15,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":2}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":9}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":8}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":3}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":4}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":11}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":5}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.449489742783178}},"df":2,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":3}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1,"p":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951}},"df":1,"n":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":10}}}}}},"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772}},"df":4}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":2.23606797749979}},"df":1,"'":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1},"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":10}}}},"s":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":4}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":8,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":1,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":11,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/even/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/even/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":8}}}}},"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/page/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":3.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":2.0},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":4.358898943540674},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":60,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0}},"df":3},"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":10}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":3,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":25}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":3}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":6}},"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":8,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":11}},"n":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":3}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":2}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"s":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":5}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":17,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772}},"df":1,"=":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":11}},"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":2,"1":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":2.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.23606797749979}},"df":57,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/otherworld/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":1}}}}}}},"g":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":2}}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}},"z":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":4}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}}}}}}}}},"y":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}},"f":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0}},"df":1,"a":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":2.0}},"df":1,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":3}}}},"t":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":2,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0}},"df":5},"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":2}}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":13}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}},"r":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":14,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":4,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}}}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":10,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":2}}}},"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"v":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.7320508075688772}},"df":2}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/feather/":{"tf":2.23606797749979}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":2.23606797749979},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.449489742783178},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":2.23606797749979}},"df":46,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1,"d":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":4.47213595499958},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":8,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":2}}}}},"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":17}},"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"á":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":3}}},"w":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":12}},"f":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":26}}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":1,"+":{"docs":{},"df":0,"d":{"docs":{},"df":0,"3":{"docs":{},"df":0,"c":{"docs":{},"df":0,"3":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"@":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":4}}},"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/content/linking/":{"tf":2.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":4.358898943540674},"https://www.getzola.org/documentation/content/page/":{"tf":4.242640687119285},"https://www.getzola.org/documentation/content/sass/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":3.872983346207417},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":3.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":5.916079783099616},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":2.23606797749979},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":3.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":2.0},"https://www.getzola.org/themes/seagull/":{"tf":2.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":7.14142842854285},"https://www.getzola.org/themes/zplit/":{"tf":3.3166247903554},"https://www.getzola.org/themes/zulma/":{"tf":2.8284271247461903}},"df":85,"'":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1},":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951}},"df":8}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":2}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1}}}},"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":8},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":9}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":13}},"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772}},"df":20},"e":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":43}}},"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951}},"df":4,"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772}},"df":1}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951}},"df":2}},"x":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":4}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":3.605551275463989},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":3},"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951}},"df":5}}}}},"i":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":2.23606797749979}},"df":2,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951}},"df":1}}},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":5,"s":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5}}},"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/sass/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/docsascode-theme/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zallery/":{"tf":2.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":45}}},"k":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":2.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":2.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":2.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.0},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":72}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":16,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}},"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}},"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772}},"df":3}}}}}}}},"o":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":2.23606797749979},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":22,"'":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1},"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":3},"g":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":2}}},"k":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0}},"df":11},"m":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":4.58257569495584},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":2.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":17}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":2.23606797749979},"https://www.getzola.org/themes/even/":{"tf":2.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":5}}}},"u":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":3}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":14}},"r":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}},"r":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1},"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":21,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":3}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951}},"df":4}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":7}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/section/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":20,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":2.23606797749979},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":11,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":20,"h":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}},"i":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772}},"df":5}}},"n":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":3,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":15}}}}},"d":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.23606797749979}},"df":5}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":5}}}}},"g":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":2.449489742783178},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.0}},"df":7,"a":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}},"m":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":3.7416573867739413},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":42,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}},"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":2}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":16,"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":2}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":3}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":2}}}}}},"h":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772}},"df":1,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}},"a":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,":":{"docs":{},"df":0,"v":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,"9":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":6,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951}},"df":2}}}}},"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":26,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951}},"df":1}}},"@":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,":":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/book/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":4.58257569495584},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-henry/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":34,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":4.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":8}}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":8,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":11}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":10}}}}},"o":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":16,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":3},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772}},"df":2}}}}}}},"d":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0}},"df":1},"e":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":3},"g":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":14,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2},"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{},"df":0,"3":{"docs":{"https://www.getzola.org/themes/boring/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":2},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":11,"q":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}},"v":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772}},"df":1,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":7,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":4}}}},"e":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0}},"df":1},"n":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2},"t":{"docs":{"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":2}}},"u":{"docs":{},"df":0,"v":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":9},"u":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1,"d":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":14,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3}}}}}},"l":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":3}}}}}}}}},"h":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951}},"df":1},"2":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1},"=":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"2":{"docs":{},"df":0,"5":{"docs":{},"df":0,"6":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0}},"df":3,"'":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":2.6457513110645907}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/hallo/":{"tf":2.23606797749979}},"df":1}},"v":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":2.0}},"df":1}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1},"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":7},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951}},"df":3}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":6,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":3}}}}},"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":2.8284271247461903}},"df":1}}}}}},"d":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":9,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":2.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":25,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1},"t":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772}},"df":1}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2,"=":{"docs":{},"df":0,"1":{"docs":{},"df":0,"5":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0}},"df":1}}},"5":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hallo/":{"tf":1.0}},"df":2}},"p":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":15}},"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-henry/":{"tf":2.23606797749979}},"df":1},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":1.7320508075688772}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":46,"'":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":11}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hermit/":{"tf":1.7320508075688772}},"df":1,"_":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/hermit/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":2,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951}},"df":2}}},"e":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":5,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0}},"df":2}}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772}},"df":5,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":4.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":2.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":11,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":2.0}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":3}},"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"3":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":10,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.23606797749979},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":2.23606797749979},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":16}}}}},"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979}},"df":17,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":3,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"@":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":25,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2}}}},"5":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0}},"df":4,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,"7":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,":":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":8,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0}},"df":1}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}},"8":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0}},"df":1}},"8":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/boring/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/after-dark/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,":":{"docs":{},"df":0,"8":{"docs":{},"df":0,"0":{"docs":{},"df":0,"8":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/ntun/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/tilde/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zola-paper/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"#":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":1}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1},"o":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":18,".":{"docs":{},"df":0,"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":2.23606797749979}},"df":2,"'":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1},"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772}},"df":1}}}}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":5}},"m":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":4},"v":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":2}},".":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":6},"1":{"docs":{},"df":0,"8":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":3}}},"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hallo/":{"tf":1.0}},"df":2}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-henry/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.23606797749979}},"df":28,"'":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772}},"df":1},".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hallo/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":2.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":11,"e":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":13,"l":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":2}}},"l":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0}},"df":7,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"i":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":5.291502622129181},"https://www.getzola.org/documentation/content/overview/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":2.449489742783178},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":2.23606797749979},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":2.23606797749979},"https://www.getzola.org/themes/papaya/":{"tf":5.5677643628300215},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":2.6457513110645907}},"df":34,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2},"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}},".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772}},"df":1}}}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"[":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951}},"df":3}}}},"g":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772}},"df":3,"/":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":9}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":13,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":1}}}}},"v":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":12}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hephaestus/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":32,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951}},"df":1}},"d":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":2}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}}},"x":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/search/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":23,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":15}}}},"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":4}},"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1},"c":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":7},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":6}}}}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":3,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":28}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":5,"i":{"docs":{"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":10}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":2}}}},"k":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":2.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":8}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":7}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":6,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":2}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":12},"r":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":18}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.23606797749979},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":2.449489742783178},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":2.0},"https://www.getzola.org/themes/resume/":{"tf":2.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/soapstone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":2.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-paper/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":75,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":4},"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":18}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":13}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1,"r":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":3.0}},"df":8}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951}},"df":4},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":2}}}}},"r":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":6,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}}},"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":6,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":3}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5,"t":{"docs":{"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":3}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":2}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951}},"df":1},"k":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":2},"r":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":7}}},"s":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1},"u":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":2.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":31,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1,"=":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"j":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951}},"df":1}}}}},"t":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907}},"df":21,"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":3.605551275463989},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":16,"'":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}},"r":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":13}}}},"’":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":5}}},"j":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":3.7416573867739413}},"df":24,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951}},"df":14}}},"t":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1,"2":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}}},"o":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0}},"df":1},"h":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":2}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":3}},"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}},"s":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":7,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":5}},"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":2.23606797749979}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}},"k":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":4.242640687119285}},"df":1}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951}},"df":1}},"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/even/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":3.3166247903554}},"df":13,"(":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":3}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0}},"df":2}}}}}}}}}}}}},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}},"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":3}}}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13}},"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"y":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":22,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":8,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/emily/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":2.0}},"df":1}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":6,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0}},"df":4}}}},"n":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":3}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772}},"df":1}}}},"z":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"ł":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"z":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951}},"df":1}},"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.449489742783178}},"df":2,"_":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":1}},"n":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":1.0}},"df":1,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5},"g":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":6,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}}},"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":4.123105625617661}},"df":28,"e":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"#":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":1}}},".":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"z":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.0}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":3}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":4,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":7},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":8}},"x":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":2.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":4}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.7320508075688772}},"df":1}}}},"w":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1,"@":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"d":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5},"n":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1},"p":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":10}},"v":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":4}},"f":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":13}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/feather/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":3}},"t":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":3,"'":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0}},"df":6},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.0}},"df":1}}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":9}}},"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":2.23606797749979},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":2.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":2.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772}},"df":37,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":2.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":28,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":3}}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}},"r":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":3},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772}},"df":1}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":4}}}},"n":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":9}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":11}}},"n":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":3.7416573867739413},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":18,"n":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"=":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}},"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":4.242640687119285},"https://www.getzola.org/documentation/content/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":55,"'":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}},"]":{"docs":{},"df":0,"(":{"docs":{},"df":0,"@":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1,"#":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":2}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.4142135623730951}},"df":3}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":2.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":42,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903}},"df":1}},"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":32,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":18,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":2}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":13,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,":":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":2}}}}}}}}},"i":{"docs":{},"df":0,"z":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13}}},"g":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178}},"df":1},"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":2}},"o":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":8}},"n":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1},"g":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":32},"p":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951}},"df":1}}}}},"t":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":5}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":3,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"(":{"docs":{},"df":0,"^":{"docs":{},"df":0,"_":{"docs":{},"df":0,"^":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}}},"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}},"3":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1},"a":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":3,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":2}}}},"c":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772}},"df":1}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":3}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":2}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":2,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3}}},"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":5}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772}},"df":1,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}},"x":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}},"m":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1,"1":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":3.0}},"df":1}}}},"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":8}}},"o":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.449489742783178}},"df":4}}},"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":20},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":3},"n":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":21,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":6}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":5}}},"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":3}}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zplit/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":45}},"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":8}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0}},"df":8}}}}}},"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":3}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":11}}}},"p":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":2},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":2}}},"k":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":2.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":3.872983346207417},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":33,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.7416573867739413}},"df":4}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":7}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}},"h":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":2.23606797749979},"https://www.getzola.org/themes/even/":{"tf":2.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":9,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":5}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":1}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.7320508075688772}},"df":4}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/section/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":23}}}},"x":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":4,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0}},"df":3}}}}},"y":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":1}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":1}}}}}},"b":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951}},"df":1},"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":12},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":9,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9},"u":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9}}}},"u":{"docs":{"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":3.7416573867739413},"https://www.getzola.org/themes/sam/":{"tf":2.23606797749979},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":2.449489742783178}},"df":25,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1},"g":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":5}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0}},"df":4,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":5,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":2.6457513110645907}},"df":1}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}},"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":5},"i":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":2,"i":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":2}},"m":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":14,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":9}}}}},"u":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}},"u":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0}},"df":2,"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":2},"t":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":3}},"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":29},"x":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}},"m":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951}},"df":1},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zhuia/":{"tf":2.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":17,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/papermod/":{"tf":2.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":26,"(":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":2}}}},"l":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772}},"df":1,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":2.0}},"df":1}}}}},"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":8}}},"i":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":7,"i":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":2.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":25}}},"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":2.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":45,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":5}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907}},"df":5},"i":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":2}}},"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1}},"r":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951}},"df":1},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":7}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":6,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":3}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":12}}}}},"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":13}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0}},"df":1,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"é":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}},"ü":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/content/sass/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":3.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":2.23606797749979},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":2.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hyde/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":53,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"}":{"docs":{},"df":0,".":{"docs":{},"df":0,"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/nasm-theme/":{"tf":2.0}},"df":1,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":3,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"v":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":8,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951}},"df":1}}}}},"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":7}}},"i":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":3.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":2.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":25,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":2.8284271247461903}},"df":1}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":14}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hephaestus/":{"tf":3.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":4.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":63}},"g":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/neovim-theme/":{"tf":2.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":3}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":14},"y":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":2}}}}}}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":3}}},"w":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":2.449489742783178},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":2.0}},"df":34,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":3},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":2,"n":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}},"x":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":11,"j":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":2}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":5,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/soapstone/":{"tf":1.0}},"df":1}}}},"x":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,"o":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1},"p":{"docs":{},"df":0,"k":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4}}}},"j":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":2},"m":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}},"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":12,"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":7}}}},"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":5}},"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":37,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"_":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":3},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":7},"f":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"w":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":3.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":27}},"p":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3}},"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772}},"df":1},"u":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/ntun/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":2.23606797749979},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":14,"(":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":2}}}},"b":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":5}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1,"s":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/oceanic-zen/":{"tf":2.0}},"df":3}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":3.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":18}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":2}}}}},"g":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951}},"df":1,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":3}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":1}}},"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolastrap/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":37,"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951}},"df":12},"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":2}}},"p":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1},"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":37,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.0}},"df":1}}}},"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":3}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}},"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":2.23606797749979},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":2.0},"https://www.getzola.org/themes/kangae/":{"tf":2.23606797749979},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ntun/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/papermod/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":3.0},"https://www.getzola.org/themes/zhuia/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zolarwind/":{"tf":3.3166247903554},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":2.6457513110645907}},"df":72}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":1}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":18}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1},"z":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":26}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":5,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"ó":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":4,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/otherworld/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":30,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":3.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":15,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":6}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":11,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":14,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.449489742783178}},"df":3}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0}},"df":9}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0}},"df":7,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178}},"df":3}}}}},"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":4.0},"https://www.getzola.org/documentation/content/page/":{"tf":4.123105625617661},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":5.830951894845301},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":4.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":3.872983346207417},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":4.47213595499958},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/pagination/":{"tf":3.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":2.449489742783178},"https://www.getzola.org/themes/after-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/albatros/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":2.23606797749979},"https://www.getzola.org/themes/apollo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":3.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":2.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/papaya/":{"tf":4.358898943540674},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":2.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":3.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tabi/":{"tf":2.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":3.3166247903554},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.605551275463989},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolarwind/":{"tf":3.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zulma/":{"tf":3.1622776601683795}},"df":96,"'":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":8},".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"d":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.0}},"df":1}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":7}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.0}},"df":1}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":2}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0}},"df":1}}}},"/":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":3}}}}},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.7320508075688772}},"df":1},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}}}},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/after-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":2.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":26,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":4}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":3.0}},"df":1,"'":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":2.0}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":2.23606797749979}},"df":3,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papermod/":{"tf":2.6457513110645907}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":4}}}}},"m":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":4}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":2,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772}},"df":1}}}}}},"s":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":6,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":2}}},"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":15,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":2,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"*":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":2.449489742783178}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":7},"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0}},"df":6}},"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":2.0},"https://www.getzola.org/documentation/content/page/":{"tf":4.123105625617661},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":4.898979485566356},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.449489742783178},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":37,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}}},"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":2}}}}},"w":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}}},"y":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":2}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":3}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":2}}},"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":8,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":5}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":9}}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}},"k":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0}},"df":5}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":4}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":18,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":2}}}}}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1},"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6,"l":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772}},"df":1}},"o":{"docs":{"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951}},"df":3}}}},"e":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1,"c":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}},"n":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1,"k":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":2}}}}},"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":2}},"y":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979}},"df":1}}}},"k":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/sass/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":18,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":2}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178}},"df":3,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":4},"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}}}},"y":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":30}}},"u":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":2}}}},"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":14}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.449489742783178}},"df":1}},"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":2.449489742783178}},"df":1}}}}}},"p":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":4,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":30,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}},"l":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951}},"df":5}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":2.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":19}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":2.0},"https://www.getzola.org/themes/kangae/":{"tf":2.449489742783178},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":2.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zolarwind/":{"tf":4.358898943540674},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":44,"'":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":1}}},"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":2.0}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":8,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6,"'":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2}}}}},"e":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":17},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/otherworld/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":3}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1},"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":11,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":2}},"t":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0}},"df":4}},"s":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":3}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13}},"o":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":6,"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":3}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":4}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951}},"df":6}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":18,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}}}},"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772}},"df":3,"t":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":7,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":2}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951}},"df":5,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":3}}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":2.23606797749979},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":2.449489742783178},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":4.123105625617661},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":2.449489742783178},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.3166247903554},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":46,"'":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":8},"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"1":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}},"2":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":1}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":6}},"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":2},"y":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":43}}}}},"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":14,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":13}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":13,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":10}},"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":20}},"w":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/halve-z/":{"tf":1.0}},"df":2,"=":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":4}}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":8}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":10,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":3}}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3}},"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":3,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}},"r":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"ł":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"1":{"docs":{},"df":0,"6":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":2}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}},"n":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}},"g":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951}},"df":3}},"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"[":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"]":{"docs":{},"df":0,"g":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":2}}},"w":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":20,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":4}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":3}},"i":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":7,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}},"m":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":8,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":2}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.6457513110645907}},"df":5,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":12}}}},"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/book/":{"tf":1.4142135623730951}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":4}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":22,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":2}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":2}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":2}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":3}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":2}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}}}},"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":10,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":6}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":9}},"v":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979}},"df":2}},"i":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":3},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":11}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6}}},"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":3},"v":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":8}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":3}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":2.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":2.23606797749979}},"df":25}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":25}}},"o":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":20,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951}},"df":10}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":4.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":29},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":7,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":20}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":45,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"z":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":4.358898943540674},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":3,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":2}},"v":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":3.0}},"df":5}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":7}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":21}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":5,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":15}},"m":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":2.23606797749979}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.3166247903554}},"df":5}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.7320508075688772}},"df":3}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":2}}}}},"f":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1,"3":{"docs":{},"df":0,"3":{"docs":{},"df":0,"3":{"docs":{},"df":0,"9":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":2.0}},"df":1}}}}}},"h":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":15}}},"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.7320508075688772}},"df":2}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":2}}}},"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":2},"l":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}}}}}},"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":32}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951}},"df":1}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.23606797749979},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":3,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":4}},"n":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":33,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.23606797749979}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9,"b":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"3":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.0}},"df":1,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":1},"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772}},"df":4}},"k":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}},"m":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":2.23606797749979}},"df":1,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/sass/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":34},"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,")":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":3.872983346207417},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":2.23606797749979},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":16,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":3}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":8},"v":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":1}}},"y":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}},"b":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951}},"df":1}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.23606797749979}},"df":1,"=":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"5":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772}},"df":1}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":2},"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":11}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":4}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":5,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":13,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}},"]":{"docs":{},"df":0,"(":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979}},"df":12}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":3,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951}},"df":8}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,")":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}},".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/seagull/":{"tf":1.7320508075688772}},"df":1}}},"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/abridge/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":2.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":2.449489742783178}},"df":28,",":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,",":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}}}}}}}}}},".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":6}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":3.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":5.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/pagination/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":3.7416573867739413},"https://www.getzola.org/themes/hook/":{"tf":2.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":3.872983346207417},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":6.164414002968976},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":4.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":70,"'":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":4},".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":3}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0}},"df":1}}}},"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}},"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/soapstone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":63,"m":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":3},"n":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/seje2/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":14}}},"f":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":2}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":2},"s":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}},"o":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":2.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":15},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":10}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":2.449489742783178}},"df":2}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"v":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979}},"df":25,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":6}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":3.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/search/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.872983346207417},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/andromeda/":{"tf":2.23606797749979},"https://www.getzola.org/themes/anemone/":{"tf":2.449489742783178},"https://www.getzola.org/themes/anpu/":{"tf":2.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":2.449489742783178},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":2.449489742783178},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":2.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":3.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":2.23606797749979},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/tale-zola/":{"tf":2.0},"https://www.getzola.org/themes/zallery/":{"tf":4.123105625617661},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-hacker/":{"tf":3.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zolarwind/":{"tf":4.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":4.58257569495584}},"df":84,"u":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":14}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":9}}}},"h":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772}},"df":1,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/shadharon/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":6,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":7.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":3.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-pickles/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":22}},"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}}}}},"w":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":23,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":2}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}},"n":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":11}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":8}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":6,"u":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.0}},"df":1,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}},"d":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":17,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":2}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.449489742783178},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":36,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0}},"df":1}},"x":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":12,"f":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":3}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}}}}},"g":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":2.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":16,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":3.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":3.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":3.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":2.23606797749979},"https://www.getzola.org/themes/deepthought/":{"tf":2.23606797749979},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/particle/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":2.23606797749979},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.449489742783178},"https://www.getzola.org/themes/tabi/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/tale-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":4.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.449489742783178}},"df":84,"'":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":12},"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":3.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":3,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951}},"df":2}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"x":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1},"z":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772}},"df":11}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951}},"df":1}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0}},"df":2}},"n":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1,"k":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":4}},"t":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1},"k":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3,"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{"https://www.getzola.org/themes/slim/":{"tf":2.23606797749979}},"df":1}},"u":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.0}},"df":7,"i":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":4},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951}},"df":1}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":2.6457513110645907}},"df":2,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":6,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":7}}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/soapstone/":{"tf":1.4142135623730951}},"df":1}}}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":2.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":23,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}}}}}}}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":2.449489742783178},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":3}},"e":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":3}},"v":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":5}},"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":7,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":2}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":4.898979485566356},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":13,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772}},"df":1}},"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":2.23606797749979}},"df":28,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":2.8284271247461903}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":4,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2},"n":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951}},"df":4}},"c":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":2,"i":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951}},"df":2,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":11}},"f":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772}},"df":23,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":22}}},"t":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951}},"df":4,"i":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":2.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":2}}}},"t":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":2,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":3},"l":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0}},"df":1}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}},"g":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":4}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":6},"t":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}},"2":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":37,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":3}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":3.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":32,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}},"g":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"$":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}}}}}}},"j":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"u":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":4}},"y":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":3}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":1}}}},"p":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/adidoks/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/tale-zola/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.6457513110645907}},"df":18}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":2}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":10}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"p":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":10},"i":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":2}}}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.23606797749979}},"df":2}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolastrap/":{"tf":5.0}},"df":8}},"p":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":2,"e":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":2.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":22,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1,"o":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":2}}},"f":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":2}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":28,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1},"t":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}},"z":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.0}},"df":1,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/book/":{"tf":2.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":4}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":2}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":2}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":27}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.7320508075688772}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":3}},"q":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":2,"i":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}}}},"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":17},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772}},"df":1}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"x":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":2}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":3}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":4,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":2}}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":7}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":2.449489742783178},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":2.23606797749979},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":2.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":2.449489742783178},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolarwind/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zplit/":{"tf":2.6457513110645907}},"df":52}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":21},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}}},"v":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.7320508075688772}},"df":1}}}},"g":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":3}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":2}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":9,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":6}}}}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":3}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":14,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":13}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":3,"i":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":3.4641016151377544}},"df":1},"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":17,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}},"g":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":2.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":51,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178}},"df":4,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.0}},"df":3,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":2}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":17,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":6}}},"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/tale-zola/":{"tf":1.4142135623730951}},"df":1},"e":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":2.6457513110645907}},"df":2,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}},"k":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":3},"t":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}},"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":1,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":4.358898943540674},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/pagination/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":2.23606797749979},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.23606797749979},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":2.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.8284271247461903}},"df":36},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":2}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":2}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":3}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":4}}}}}}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951}},"df":2,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":4}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/linking/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":4.58257569495584},"https://www.getzola.org/documentation/templates/404/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/templates/overview/":{"tf":5.916079783099616},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":2.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":4.795831523312719},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/after-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":2.449489742783178}},"df":58,"e":{"docs":{},"df":0,"(":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951}},"df":1}}}}},"/":{"docs":{},"df":0,"*":{"docs":{},"df":0,"*":{"docs":{},"df":0,"/":{"docs":{},"df":0,"*":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":3,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":6}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":2}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":2}}}}}}}}},"\\":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"\\":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":12},"m":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":14,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":8,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772}},"df":2}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":4}},"x":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":24,"(":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}},"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":13}},"t":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":5}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}},"e":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":4.123105625617661},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":4.795831523312719},"https://www.getzola.org/documentation/themes/overview/":{"tf":2.23606797749979},"https://www.getzola.org/themes/abridge/":{"tf":3.872983346207417},"https://www.getzola.org/themes/adidoks/":{"tf":3.3166247903554},"https://www.getzola.org/themes/after-dark/":{"tf":2.0},"https://www.getzola.org/themes/albatros/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/anatole-zola/":{"tf":3.0},"https://www.getzola.org/themes/andromeda/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/anemone/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/anpu/":{"tf":2.449489742783178},"https://www.getzola.org/themes/apollo/":{"tf":2.449489742783178},"https://www.getzola.org/themes/archie-zola/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/bearblog/":{"tf":2.449489742783178},"https://www.getzola.org/themes/blow/":{"tf":3.0},"https://www.getzola.org/themes/book/":{"tf":2.0},"https://www.getzola.org/themes/boring/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/clean-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/codinfox-zola/":{"tf":3.605551275463989},"https://www.getzola.org/themes/d3c3nt/":{"tf":2.449489742783178},"https://www.getzola.org/themes/deepthought/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/even/":{"tf":2.449489742783178},"https://www.getzola.org/themes/feather/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/hallo/":{"tf":2.23606797749979},"https://www.getzola.org/themes/halve-z/":{"tf":2.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/hermit/":{"tf":2.0},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":3.605551275463989},"https://www.getzola.org/themes/inky/":{"tf":3.7416573867739413},"https://www.getzola.org/themes/juice/":{"tf":2.0},"https://www.getzola.org/themes/kangae/":{"tf":2.23606797749979},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/kodama-theme/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/lightspeed/":{"tf":2.0},"https://www.getzola.org/themes/mabuya/":{"tf":3.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":2.23606797749979},"https://www.getzola.org/themes/ntun/":{"tf":2.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":2.23606797749979},"https://www.getzola.org/themes/otherworld/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.23606797749979},"https://www.getzola.org/themes/papermod/":{"tf":2.23606797749979},"https://www.getzola.org/themes/particle/":{"tf":2.449489742783178},"https://www.getzola.org/themes/pico/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/polymathic/":{"tf":4.898979485566356},"https://www.getzola.org/themes/resume/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/sam/":{"tf":2.449489742783178},"https://www.getzola.org/themes/seagull/":{"tf":2.23606797749979},"https://www.getzola.org/themes/seje2/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/slim/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tabi/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/tale-zola/":{"tf":3.3166247903554},"https://www.getzola.org/themes/tilde/":{"tf":2.0},"https://www.getzola.org/themes/toucan/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tranquil/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/zallery/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zerm/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zhuia/":{"tf":3.0},"https://www.getzola.org/themes/zola-386/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":3.872983346207417},"https://www.getzola.org/themes/zola-henry/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-paper/":{"tf":2.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":3.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":4.795831523312719},"https://www.getzola.org/themes/zolarwind/":{"tf":6.164414002968976},"https://www.getzola.org/themes/zolastrap/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zplit/":{"tf":3.0},"https://www.getzola.org/themes/zulma/":{"tf":4.69041575982343}},"df":100,"'":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":9},".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":7,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}}}}}}}}},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}},"1":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"*":{"docs":{},"df":0,"*":{"docs":{},"df":0,"/":{"docs":{},"df":0,"*":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/emily/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":2}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":2,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":2.23606797749979}},"df":1,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"1":{"docs":{},"df":0,"8":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"s":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3},"b":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":6}}}}},"s":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1},"v":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":12,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":1}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":10}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":5,"t":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":3}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}},"e":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":10,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":15,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}}},"u":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951}},"df":8,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772}},"df":4}}}}}}}},"i":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/tilde/":{"tf":1.4142135623730951}},"df":1}},"m":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1,"e":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":18,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":2}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":2}}},"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":2}}}}},"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":2}}}}}}}},"p":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":2.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":2.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/nasm-theme/":{"tf":2.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":2.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-grayscale/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolastrap/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":33,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951}},"df":1}}}}},"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":2}}}}}}}}}},"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":2}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":7},"d":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":4}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":2.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":9}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.7416573867739413},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772}},"df":6}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":11},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":4,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}}},"p":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":2.0}},"df":22,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":3}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":2}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/toucan/":{"tf":1.4142135623730951}},"df":1}},"h":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4,"3":{"docs":{"https://www.getzola.org/themes/hermit/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":5}}}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":5,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":2.0}},"df":1}}}},"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":2}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":2}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":2.23606797749979},"https://www.getzola.org/themes/papaya/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":13,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.872983346207417}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":4}},"e":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":2},"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.7320508075688772}},"df":5}}}},"m":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951}},"df":2}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":2}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":2}}}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolastrap/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":31,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":7}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":4}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.0}},"df":3}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}},"g":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":16}}}}},"o":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":31,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":1}}}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/pagination/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":4.123105625617661},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":16,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"+":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":4}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"i":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":3}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":1}}}},"ɐ":{"docs":{},"df":0,"ˈ":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":2,")":{"docs":{},"df":0,":":{"docs":{},"df":0,"$":{"docs":{},"df":0,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}}}},"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":4},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":2.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/slim/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":44,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":3}}},"t":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":3}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772}},"df":2}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"q":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}},"x":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":7}}},"i":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":3}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951}},"df":2}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":2}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":2}}}},"p":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":32,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":20,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951}},"df":1}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951}},"df":1},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951}},"df":2}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":2}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.7416573867739413},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/andromeda/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ntun/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":2.23606797749979}},"df":43,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":3.1622776601683795},"https://www.getzola.org/documentation/content/linking/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/page/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/sass/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/search/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":4.795831523312719},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":3.7416573867739413},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":3.872983346207417},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.0},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":3.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/templates/overview/":{"tf":5.291502622129181},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":2.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":2.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":2.449489742783178},"https://www.getzola.org/themes/adidoks/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/andromeda/":{"tf":2.0},"https://www.getzola.org/themes/anemone/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/anpu/":{"tf":2.0},"https://www.getzola.org/themes/apollo/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/blow/":{"tf":2.0},"https://www.getzola.org/themes/clean-blog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":2.449489742783178},"https://www.getzola.org/themes/duckquill/":{"tf":2.23606797749979},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/even/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/feather/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":2.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hayflow/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/hephaestus/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":4.69041575982343},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":2.23606797749979},"https://www.getzola.org/themes/kodama-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/mabuya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/no-style-please/":{"tf":2.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":2.23606797749979},"https://www.getzola.org/themes/polymathic/":{"tf":2.449489742783178},"https://www.getzola.org/themes/resume/":{"tf":2.23606797749979},"https://www.getzola.org/themes/sam/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/seagull/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":2.449489742783178},"https://www.getzola.org/themes/tale-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/tranquil/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zerm/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-386/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":3.3166247903554},"https://www.getzola.org/themes/zola-hacker/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0},"https://www.getzola.org/themes/zola-pickles/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/zolarwind/":{"tf":5.916079783099616},"https://www.getzola.org/themes/zolastrap/":{"tf":3.1622776601683795},"https://www.getzola.org/themes/zplit/":{"tf":2.0},"https://www.getzola.org/themes/zulma/":{"tf":3.0}},"df":104,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}},"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":17,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":3}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":2.6457513110645907}},"df":24,"'":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":3},"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":3}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":2},"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":3}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/float/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":2.449489742783178}},"df":5,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,"6":{"docs":{},"df":0,".":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}},"7":{"docs":{},"df":0,".":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}},"8":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":2}}},"9":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"1":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,"3":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":10},"n":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}},"u":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/documentation/content/section/":{"tf":2.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/anpu/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":28}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":3.7416573867739413},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":4.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.605551275463989},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/pagination/":{"tf":2.8284271247461903},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/book/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/boring/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":2.23606797749979},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/feather/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":53,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"–":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":6}}}}},"c":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":3.605551275463989},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":4,"'":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951}},"df":1},".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0}},"df":1}}}}}}}},"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":16},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":33}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":2}}},"ö":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zhuia/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":18},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":2.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":7}}},"e":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":11,"'":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1,"'":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":1}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":2}},"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.4142135623730951}},"df":8,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":6}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":2},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}},"3":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}},"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":2}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/bearblog/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hephaestus/":{"tf":2.0},"https://www.getzola.org/themes/kangae/":{"tf":2.449489742783178},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/particle/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":2.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":54}},"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":7}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951}},"df":1}},"y":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kita/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/particle/":{"tf":1.0},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-paper/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":29}},"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":4},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":2.449489742783178},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":3}},"r":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":4},"v":{"docs":{"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":1}},"b":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/lightspeed/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":19,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":2}}}},"p":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":2.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":3,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}},"g":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":2.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/dose/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":2.23606797749979},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":33,"e":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951}},"df":3},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":3.4641016151377544},"https://www.getzola.org/themes/book/":{"tf":2.23606797749979},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":6}}},"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":6}}},"l":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":16},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,")":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":1},"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":3}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":2.0}},"df":5}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":10}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":2,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/page/":{"tf":2.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":4}}}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":2}}},"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":7}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/polymathic/":{"tf":1.4142135623730951}},"df":4,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zhuia/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zolastrap/":{"tf":2.0}},"df":3}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":4.358898943540674},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951}},"df":6,"=":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}},"5":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772}},"df":1}}},"5":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}}},"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":2,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/otherworld/":{"tf":1.0}},"df":5}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0}},"df":1}}},"h":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951}},"df":11}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":2.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":2.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":16}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":21}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":9}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":2.449489742783178}},"df":1}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/shadharon/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":6,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0}},"df":2,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}}}}},"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0},"https://www.getzola.org/themes/even/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/pico/":{"tf":1.0},"https://www.getzola.org/themes/resume/":{"tf":1.0},"https://www.getzola.org/themes/seje2/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/tabi/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.0},"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":32,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.4142135623730951}},"df":1}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":6}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":2,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.7320508075688772}},"df":1}}}}},"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":2}},"t":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1,"h":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.7320508075688772}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":5}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0},"https://www.getzola.org/themes/albatros/":{"tf":1.0},"https://www.getzola.org/themes/book/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/karzok/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.4142135623730951}},"df":14,":":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":7}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1,"2":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"w":{"docs":{},"df":0,"y":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}},"ö":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.7320508075688772}},"df":1}},"y":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1}},"y":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":5,"/":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"v":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":1.0},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951}},"df":5}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":5},"l":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0},"https://www.getzola.org/themes/blow/":{"tf":1.0},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":7}},"r":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/ergo/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/papaya/":{"tf":1.0},"https://www.getzola.org/themes/zola-386/":{"tf":1.0},"https://www.getzola.org/themes/zolarwind/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":13},"v":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.4142135623730951}},"df":5}},"r":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":2,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/emily/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/themes/adidoks/":{"tf":1.0},"https://www.getzola.org/themes/dose/":{"tf":1.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/mabuya/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":10}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.449489742783178},"https://www.getzola.org/themes/abridge/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}}}},"y":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.4142135623730951}},"df":1}}}},"z":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":2,"_":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1},"a":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":2.0}},"df":1},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}}}}}},"p":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":3.1622776601683795}},"df":1,"'":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1}},"n":{"docs":{"https://www.getzola.org/themes/oceanic-zen/":{"tf":2.0}},"df":1,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.4142135623730951}},"df":1}}},"h":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{"https://www.getzola.org/themes/slim/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/slim/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951}},"df":1}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/multilingual/":{"tf":2.0},"https://www.getzola.org/documentation/content/overview/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/content/sass/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/content/search/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/content/shortcodes/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":2.23606797749979},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":2.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":3.3166247903554},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":3.4641016151377544},"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":2.449489742783178},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":2.6457513110645907},"https://www.getzola.org/documentation/getting-started/installation/":{"tf":5.196152422706632},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":4.47213595499958},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0},"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":3.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0},"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.7320508075688772},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":2.0},"https://www.getzola.org/themes/abridge/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/adidoks/":{"tf":2.449489742783178},"https://www.getzola.org/themes/albatros/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/anatole-zola/":{"tf":2.0},"https://www.getzola.org/themes/andromeda/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anemone/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/anpu/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/apollo/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/archie-zola/":{"tf":2.449489742783178},"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/bearblog/":{"tf":2.23606797749979},"https://www.getzola.org/themes/blow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/boring/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/clean-blog/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/codinfox-zola/":{"tf":3.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/deepthought/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/docsascode-theme/":{"tf":2.8284271247461903},"https://www.getzola.org/themes/duckquill/":{"tf":1.0},"https://www.getzola.org/themes/emily/":{"tf":1.0},"https://www.getzola.org/themes/ergo/":{"tf":2.23606797749979},"https://www.getzola.org/themes/feather/":{"tf":2.449489742783178},"https://www.getzola.org/themes/float/":{"tf":2.0},"https://www.getzola.org/themes/hallo/":{"tf":1.0},"https://www.getzola.org/themes/halve-z/":{"tf":1.0},"https://www.getzola.org/themes/hayflow/":{"tf":2.449489742783178},"https://www.getzola.org/themes/hephaestus/":{"tf":1.0},"https://www.getzola.org/themes/hermit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/hook/":{"tf":1.0},"https://www.getzola.org/themes/hyde/":{"tf":1.0},"https://www.getzola.org/themes/inky/":{"tf":2.6457513110645907},"https://www.getzola.org/themes/juice/":{"tf":1.0},"https://www.getzola.org/themes/kangae/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/karzok/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kita/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/kodama-theme/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/lightspeed/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/mabuya/":{"tf":2.449489742783178},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0},"https://www.getzola.org/themes/no-style-please/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0},"https://www.getzola.org/themes/otherworld/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/papaya/":{"tf":2.0},"https://www.getzola.org/themes/papermod/":{"tf":2.449489742783178},"https://www.getzola.org/themes/particle/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/polymathic/":{"tf":2.449489742783178},"https://www.getzola.org/themes/resume/":{"tf":2.449489742783178},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/seagull/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/shadharon/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":2.449489742783178},"https://www.getzola.org/themes/slim/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/soapstone/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tabi/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/tale-zola/":{"tf":3.605551275463989},"https://www.getzola.org/themes/tilde/":{"tf":1.0},"https://www.getzola.org/themes/toucan/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zerm/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zhuia/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":2.449489742783178},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-hacker/":{"tf":3.3166247903554},"https://www.getzola.org/themes/zola-henry/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":2.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-pickles/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.7320508075688772},"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":2.23606797749979},"https://www.getzola.org/themes/zolarwind/":{"tf":3.605551275463989},"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zplit/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":119,"'":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0},"https://www.getzola.org/themes/deepthought/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papaya/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/papermod/":{"tf":1.0},"https://www.getzola.org/themes/sam/":{"tf":1.0},"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0},"https://www.getzola.org/themes/zulma/":{"tf":1.4142135623730951}},"df":9},".":{"docs":{},"df":0,"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":2.8284271247461903}},"df":1}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/boring/":{"tf":1.0}},"df":2}}}}}}}}}}},"z":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}}}}},"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.4142135623730951},"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":4}}}}},"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":2.449489742783178}},"df":1}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.4142135623730951}},"df":1}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0},"https://www.getzola.org/themes/tranquil/":{"tf":1.4142135623730951},"https://www.getzola.org/themes/zallery/":{"tf":1.4142135623730951}},"df":3}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":2.449489742783178}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":2.449489742783178}},"df":1,"_":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}}}}}}},"title":{"root":{"docs":{},"df":0,"4":{"docs":{},"df":0,"0":{"docs":{},"df":0,"4":{"docs":{"https://www.getzola.org/documentation/templates/404/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/abridge/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/adidoks/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/albatros/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/andromeda/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/anemone/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/anpu/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/apollo/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/archie-zola/":{"tf":1.0}},"df":1,"v":{"docs":{"https://www.getzola.org/documentation/templates/archive/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/ataraxia-zola/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/bearblog/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0},"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":2},"w":{"docs":{"https://www.getzola.org/themes/blow/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/book/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/boring/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/clean-blog/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/zola-theme-course/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"3":{"docs":{},"df":0,"c":{"docs":{},"df":0,"3":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/d3c3nt/":{"tf":1.0}},"df":1}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/after-dark/":{"tf":1.0},"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/deepthought/":{"tf":1.0}},"df":1}}}}}}}}},"v":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/themes/dinkleberg/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/docsascode-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/dose/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/duckquill/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/zola-easydocs-theme/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/edgio/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/emily/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/ergo/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/templates/404/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/even/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/feather/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/templates/feeds/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/float/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/documentation/deployment/flyio/":{"tf":1.0}},"df":1}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://www.getzola.org/themes/hallo/":{"tf":1.0}},"df":1}},"v":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/themes/hayflow/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-henry/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/themes/hephaestus/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/hermit/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zola-theme-hikari/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/hook/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/hyde/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/docker-image/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/inky/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/getting-started/installation/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://www.getzola.org/themes/juice/":{"tf":1.0}},"df":1}}}},"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kangae/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/themes/karzok/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kita/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/kodama-theme/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/lightspeed/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"k":{"docs":{"https://www.getzola.org/documentation/content/linking/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/mabuya/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/minimal-dark/":{"tf":1.0},"https://www.getzola.org/themes/zola-minimal/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/neovim-theme/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/deployment/netlify/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/ntun/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/otherworld/":{"tf":1.0}},"df":1}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://www.getzola.org/documentation/content/overview/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/overview/":{"tf":1.0},"https://www.getzola.org/documentation/getting-started/overview/":{"tf":1.0},"https://www.getzola.org/documentation/templates/overview/":{"tf":1.0},"https://www.getzola.org/documentation/themes/overview/":{"tf":1.0}},"df":5}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/page/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/github-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"tf":1.0},"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0},"https://www.getzola.org/documentation/templates/404/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0}},"df":8},"i":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/templates/pagination/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/papaya/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/zola-paper/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/papermod/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/particle/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/zola-pickles/":{"tf":1.0}},"df":1}},"o":{"docs":{"https://www.getzola.org/themes/pico/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/themes/polymathic/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/image-processing/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/resume/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/templates/robots/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"3":{"docs":{"https://www.getzola.org/documentation/deployment/aws-s3/":{"tf":1.0}},"df":1},"a":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/sam/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/content/sass/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/seagull/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://www.getzola.org/documentation/content/search/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/documentation/content/section/":{"tf":1.0},"https://www.getzola.org/documentation/templates/pages-sections/":{"tf":1.0}},"df":2}}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"2":{"docs":{"https://www.getzola.org/themes/seje2/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/serene/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/shadharon/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/documentation/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/simple-dev-blog/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/content/multilingual/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/documentation/templates/sitemap/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/slim/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/soapstone/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/documentation/deployment/sourcehut/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/no-style-please/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"https://www.getzola.org/documentation/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/tabi/":{"tf":1.0}},"df":1},"l":{"docs":{"https://www.getzola.org/documentation/content/table-of-contents/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/themes/tale-zola/":{"tf":1.0}},"df":1}},"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/documentation/content/taxonomies/":{"tf":1.0},"https://www.getzola.org/documentation/templates/taxonomies/":{"tf":1.0}},"df":2}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zola-theme-terminimal/":{"tf":1.0}},"df":1}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://www.getzola.org/documentation/themes/creating-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"tf":1.0},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0},"https://www.getzola.org/themes/nasm-theme/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0}},"df":6}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/tilde/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://www.getzola.org/themes/toucan/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/themes/tranquil/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"g":{"docs":{"https://www.getzola.org/documentation/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://www.getzola.org/documentation/deployment/vercel/":{"tf":1.0}},"df":1}}}}}},"z":{"docs":{"https://www.getzola.org/themes/halve-z/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://www.getzola.org/themes/zallery/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://www.getzola.org/documentation/deployment/zeabur/":{"tf":1.0}},"df":1}}}},"n":{"docs":{"https://www.getzola.org/themes/oceanic-zen/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"m":{"docs":{"https://www.getzola.org/themes/zerm/":{"tf":1.0}},"df":1}}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zhuia/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/anatole-zola/":{"tf":1.0},"https://www.getzola.org/themes/archie-zola/":{"tf":1.0},"https://www.getzola.org/themes/codinfox-zola/":{"tf":1.0},"https://www.getzola.org/themes/ntun/":{"tf":1.0},"https://www.getzola.org/themes/solar-theme-zola/":{"tf":1.0},"https://www.getzola.org/themes/tale-zola/":{"tf":1.0},"https://www.getzola.org/themes/zola-grayscale/":{"tf":1.0},"https://www.getzola.org/themes/zola-hacker/":{"tf":1.0},"https://www.getzola.org/themes/zola-paper/":{"tf":1.0}},"df":9,".":{"docs":{},"df":0,"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{"https://www.getzola.org/themes/zola-386/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://www.getzola.org/themes/zolarwind/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://www.getzola.org/themes/zolastrap/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://www.getzola.org/themes/zplit/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"https://www.getzola.org/themes/zulma/":{"tf":1.0}},"df":1}}}}}}}},"documentStore":{"save":true,"docs":{"https://www.getzola.org/":{"body":"","id":"https://www.getzola.org/","title":""},"https://www.getzola.org/documentation/content/image-processing/":{"body":"Zola provides support for automatic image resizing through the built-in function resize_image,\nwhich is available in template code as well as in shortcodes.\nThe function usage is as follows:\n\n🔗Arguments\n\n\npath: The path to the source image. The following directories will be searched, in this order:\n\n/ (the root of the project; that is, the directory with your config.toml)\n/static\n/content\n/public\n/themes/current-theme/static\n\n\n\nwidth and height: The dimensions in pixels of the resized image. Usage depends on the op argument.\n\n\nop (optional): Resize operation. This can be one of:\n\n\"scale\"\n\"fit_width\"\n\"fit_height\"\n\"fit\"\n\"fill\"\n\nWhat each of these does is explained below. The default is \"fill\".\n\n\nformat (optional): Encoding format of the resized image. May be one of:\n\n\"auto\"\n\"jpg\"\n\"png\"\n\"webp\"\n\nThe default is \"auto\", this means that the format is chosen based on input image format.\nJPEG is chosen for JPEGs and other lossy formats, and PNG is chosen for PNGs and other lossless formats.\n\n\nquality (optional): JPEG or WebP quality of the resized image, in percent. Only used when encoding JPEGs or WebPs; for JPEG default value is 75, for WebP default is lossless.\n\n\n🔗Image processing and return value\nZola performs image processing during the build process and places the resized images in a subdirectory in the static files directory:\n\nThe filename of each resized image is a hash of the function arguments,\nwhich means that once an image is resized in a certain way, it will be stored in the above directory and will not\nneed to be resized again during subsequent builds (unless the image itself, the dimensions, or other arguments have changed).\nThe function returns an object with the following schema:\n\n🔗Resize operations\nThe source for all examples is this 300 pixel × 380 pixel image:\n\n🔗\"scale\"\nSimply scales the image to the specified dimensions (width & height) irrespective of the aspect ratio.\nresize_image(..., width=150, height=150, op=\"scale\")\n\n\n🔗\"fit_width\"\nResizes the image such that the resulting width is width and height is whatever will preserve the aspect ratio.\nThe height argument is not needed.\nresize_image(..., width=100, op=\"fit_width\")\n\n\n🔗\"fit_height\"\nResizes the image such that the resulting height is height and width is whatever will preserve the aspect ratio.\nThe width argument is not needed.\nresize_image(..., height=150, op=\"fit_height\")\n\n\n🔗\"fit\"\nLike \"fit_width\" and \"fit_height\" combined, but only resize if the image is bigger than any of the specified dimensions.\nThis mode is handy, if for example images are automatically shrunk to certain sizes in a shortcode for\nmobile optimization.\nResizes the image such that the result fits within width and height while preserving the aspect ratio. This\nmeans that both width or height will be at max width and height, respectively, but possibly one of them\nsmaller so as to preserve the aspect ratio.\nresize_image(..., width=5000, height=5000, op=\"fit\")\n\n\nresize_image(..., width=150, height=150, op=\"fit\")\n\n\n🔗\"fill\"\nThis is the default operation. It takes the image's center part with the same aspect ratio as the width and\nheight given and resizes that to width and height. This means that parts of the image that are outside\nof the resized aspect ratio are cropped away.\nresize_image(..., width=150, height=150, op=\"fill\")\n\n\n🔗Using resize_image in markdown via shortcodes\nresize_image is a Zola built-in Tera function (see the templates chapter),\nbut it can be used in Markdown using shortcodes.\nThe examples above were generated using a shortcode file named resize_image.html with this content:\n\n🔗Creating picture galleries\nThe resize_image() can be used multiple times and/or in loops. It is designed to handle this efficiently.\nThis can be used along with assets page metadata to create picture galleries.\nThe assets variable holds paths to all assets in the directory of a page with resources\n(see asset colocation); if you have files other than images you\nwill need to filter them out in the loop first like in the example below.\nThis can be used in shortcodes. For example, we can create a very simple html-only clickable\npicture gallery with the following shortcode named gallery.html:\n\nAs you can notice, we didn't specify an op argument, which means that it'll default to \"fill\". Similarly,\nthe format will default to \"auto\" (choosing PNG or JPEG as appropriate) and the JPEG quality will default to 75.\nTo call it from a Markdown file, simply do:\n\nHere is the result:\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n Image attribution: Public domain, except: _06-example.jpg_: Willi Heidelbach, _07-example.jpg_: Daniel Ullrich.\n\n🔗Get image size and relative resizing\nSometimes when building a gallery it is useful to know the dimensions of each asset. You can get this information with\nget_image_metadata.\nThis can also be useful in combination with resize_image() to do a relative resizing. So we can create a relative image resizing function with the following shortcode named resize_image_relative.html:\n\nIt can be invoked from Markdown like this:\nresize_image_relative(..., scale=0.5)\n\n\n🔗Creating scaled-down versions of high-resolution images\nWith the above, we can also create a shortcode that creates a 50% scaled-down version of a high-resolution image (e.g. screenshots taken on Retina Macs), along with the proper HTML5 srcset for the original image to be displayed on high-resolution / retina displays.\nConsider the following shortcode named high_res_image.html:\n\n\n\n\n\n","id":"https://www.getzola.org/documentation/content/image-processing/","title":"Image processing"},"https://www.getzola.org/documentation/content/linking/":{"body":"🔗Heading id and anchor insertion\nWhile rendering the Markdown content, a unique id will automatically be assigned to each heading. \nThis id is created by converting the heading text to a slug if slugify.anchors is set to \"on\" (the default).\nIf slugify.paths is set to \"safe\", whitespaces are replaced by - and the following characters are stripped: #, %, <, >, [, ], (, ), `, ^, {, |, }.\nIf slugify.paths is set to \"off\", no modifications are made, and you may be left with nominally illegal ids.\nA number is appended at the end if the slug already exists for that article.\nFor example:\n\nYou can also manually specify an id with a {#…} suffix on the heading line as well as CSS classes:\n\nThis is useful for making deep links robust, either proactively (so that you can later change the text of a heading\nwithout breaking links to it) or retroactively (keeping the slug of the old header text when changing the text). It\ncan also be useful for migration of existing sites with different header id schemes, so that you can keep deep\nlinks working.\n🔗Anchor insertion\nIt is possible to have Zola automatically insert anchor links next to the heading, as you can see on this documentation\nif you hover a title or covering the full heading text.\nThis option is set at the section level: the insert_anchor_links variable on the\nsection front matter page.\nThe default template is very basic and will need CSS tweaks in your project to look decent.\nIf you want to change the anchor template, it can be easily overwritten by\ncreating an anchor-link.html file in the templates directory. Here you can find the default template.\nThe anchor link template has the following variables:\n\nid: the heading's id after applying the rules defined by slugify.anchors\nlang: the current language, unless called from the markdown template filter, in which case it will always be en\nlevel: the heading level (between 1 and 6)\n\nIf you use insert_anchor = \"heading\", the template will still be used but only the opening <a> tag will get extracted\nfrom it, everything else will not be used.\n🔗Internal links\nLinking to other pages and their headings is so common that Zola adds a\nspecial syntax to Markdown links to handle them: start the link with @/ and point to the .md file you want\nto link to. The path to the file starts from the content directory.\nFor example, linking to a file located at content/pages/about.md would be [my link](@/pages/about.md).\nYou can still link to an anchor directly; [my link](@/pages/about.md#example) will work as expected.\nBy default, broken internal links are treated as errors. To treat them as warnings instead, visit the [link_checker] section of config.toml and set internal_level = \"warn\". Note: treating broken links as warnings allows the site to be built with broken links intact, so a link such as [my link](@/pages/whoops.md) will be rendered to HTML as <a href=\"@/pages/whoops.md\">.\n","id":"https://www.getzola.org/documentation/content/linking/","title":"Internal links & deep linking"},"https://www.getzola.org/documentation/content/multilingual/":{"body":"Zola supports having a site in multiple languages.\n🔗Configuration\nTo get started, you will need to add the languages you want to support\nto your config.toml. For example:\n\nNote: By default, Chinese and Japanese search indexing is not included. You can include\nthe support by building zola using cargo build --features indexing-ja --features indexing-zh.\nPlease also note that, enabling Chinese indexing will increase the binary size by approximately\n5 MB while enabling Japanese indexing will increase the binary size by approximately 70 MB\ndue to the incredibly large dictionaries.\n🔗Content\nOnce the languages have been added, you can start to translate your content. Zola\nuses the filename to detect the language:\n\ncontent/an-article.md: this will be the default language\ncontent/an-article.fr.md: this will be in French\n\nIf the language code in the filename does not correspond to one of the languages or\nthe default language configured, an error will be shown.\nIf your default language has an _index.md in a directory, you will need to add an _index.{code}.md\nfile with the desired front-matter options as there is no language fallback.\n🔗Output\nZola outputs the translated content with a base URL of {base_url}/{code}/.\nThe only exception to this is if you are setting a translated page path directly in the front matter.\n","id":"https://www.getzola.org/documentation/content/multilingual/","title":"Multilingual sites"},"https://www.getzola.org/documentation/content/overview/":{"body":"Zola uses the directory structure to determine the site structure.\nEach child directory in the content directory represents a section\nthat contains pages (your .md files).\n\nEach page path (the part after base_url, for example blog/cli-usage/) can be customised by changing the path or\nslug attribute of the page front-matter.\nYou might have noticed a file named _index.md in the example above.\nThis file is used to store both the metadata and content of the section itself and is not considered a page.\nTo ensure that the terminology used in the rest of the documentation is understood, let's go over the example above.\nThe content directory in this case has three sections: content, blog and landing. The content section has only\none page (something.md), the landing section has no pages and the blog section has 4 pages (cli-usage.md,\nconfiguration.md, directory-structure.md and installation.md).\nSections can be nested indefinitely.\n🔗Asset colocation\nThe content directory is not limited to markup files. It's natural to want to co-locate a page and some related\nassets, such as images or spreadsheets. Zola supports this pattern out of the box for both sections and pages.\nAll non-Markdown files you add in a page/section directory will be copied alongside the generated page when the site is\nbuilt, which allows us to use a relative path to access them.\nPages with co-located assets should not be placed directly in their section directory (such as latest-experiment.md), but\nas an index.md file in a dedicated directory (latest-experiment/index.md), like so:\n\nWith this setup, you may access research.jpg from your 'research' section\nand javascript.js from your 'latest-experiment' page directly within the Markdown:\n\nBy default, this page's slug will be the directory name and thus its permalink will be https://example.com/research/latest-experiment/.\n🔗Excluding files from assets\nIt is possible to ignore selected asset files using the\nignored_content setting in the config file.\nFor example, say that you have several code files which you are linking to on your website.\nFor maintainability, you want to keep your code in the same directory as the Markdown file,\nbut you don't want to copy the build folders to the public web site. You can achieve this by setting ignored_content in the config file:\n(Note of caution: {Cargo.lock,target} is not the same as {Cargo.lock, target})\n\n🔗Static assets\nIn addition to placing content files in the content directory, you may also place content\nfiles in the static directory. Any files/directories that you place in the static directory\nwill be copied, without modification, to the public directory.\nTypically, you might put site-wide assets (such as a CSS file, the site favicon, site logos or site-wide\nJavaScript) in the root of the static directory. You can also place any HTML or other files that\nyou wish to be included without modification (that is, without being parsed as Markdown files)\ninto the static directory.\nNote that the static directory provides an alternative to co-location. For example, imagine that you\nhad the following directory structure (a simplified version of the structure presented above):\n\nTo add an image to the https://mywebsite.com/blog/configuration page, you have three options:\n\nYou could save the image to the content/blog/configuration directory and then link to it with a\nrelative path from the index.md page. This is the approach described under co-location\nabove.\nYou could save the image to a static/blog/configuration directory and link to it in exactly the\nsame way as if you had co-located it. If you do this, the generated files will be identical to those\nobtained if you had co-located the image; the only difference will be that all static files will be saved in the\nstatic directory rather than in the content directory. The choice depends on your organizational needs.\nOr you could save the image to some arbitrary directory within the static directory. For example,\nyou could save all images to static/images. Using this approach, you can no longer use relative links. Instead,\nyou must use an absolute link to images/[filename] to access your\nimage. This might be preferable for small sites or for sites that associate images with\nmultiple pages (e.g., logo images that appear on every page).\n\n","id":"https://www.getzola.org/documentation/content/overview/","title":"Overview"},"https://www.getzola.org/documentation/content/page/":{"body":"A page is any file ending with .md in the content directory, except files\nnamed _index.md. Note: page file names must not contain _index. at all.\nIf a file ending with .md is named index.md, it will generate a page\nwith the name of its directory (for example, /content/about/index.md would\ncreate a page at [base_url]/about). (Note the lack of an underscore; if the file\nwere named _index.md, then it would create a section at [base_url]/about, as\ndiscussed in a previous part of this documentation. In contrast, naming the file index.md will\ncreate a page at [base_url]/about).\nIf the file is given any name other than index.md or _index.md, then it will\ncreate a page with that name (without the .md). For example, naming a file in the root of your\ncontent directory about.md would create a page at [base_url]/about.\nAnother exception to this rule is that a filename starting with a datetime (YYYY-mm-dd or an RFC3339 datetime) followed by\nan underscore (_) or a dash (-) will use that date as the page date, unless already set\nin the front matter. The page name will be anything after _/-, so the file 2018-10-10-hello-world.md will\nbe available at [base_url]/hello-world. Note that the full RFC3339 datetime contains colons, which is not a valid\ncharacter in a filename on Windows.\nThis behavior can be disabled by setting slugify.paths_keep_dates to true (the default is false). Note that a _ separating the date would be slugified into a - with the default value for slugify.paths of \"on\".\nAs you can see, creating an about.md file is equivalent to creating an\nabout/index.md file. The only difference between the two methods is that creating\nthe about directory allows you to use asset co-location, as discussed in the\noverview section.\n🔗Output paths\nFor any page within your content folder, its output path will be defined by either:\n\nits slug frontmatter key\nits filename\n\nEither way, these proposed path will be sanitized before being used.\nIf slugify.paths is set to \"on\" in the site's config - the default - paths are slugified.\nIf it is set to \"safe\", only sanitation is performed, with the following characters being removed: <, >, :, /, |, ?, *, #, \\\\, (, ), [, ] as well as newlines and tabulations. This ensures that the path can be represented on all operating systems.\nAdditionally, trailing whitespace and dots are removed and whitespaces are replaced by _.\nIf slugify.paths is set to \"off\", no modifications are made.\nIf you want URLs containing non-ASCII characters, slugify.paths needs to be set to \"safe\" or \"off\".\n🔗Path from frontmatter\nThe output path for the page will first be read from the slug key in the page's frontmatter.\nExample: (file content/zines/élevage-chèvre.md)\n\nThis frontmatter will output the article to [base_url]/zines/élevage-chèvre-carrière-alternative with slugify.paths set to \"safe\" or \"off\", and to [base_url]/zines/elevage-chevre-carriere-alternative with the default value for slugify.paths of \"on\".\n🔗Path from filename\nWhen the article's output path is not specified in the frontmatter, it is extracted from the file's path in the content folder. Consider a file content/foo/bar/thing.md. The output path is constructed:\n\nif the filename is index.md, its parent folder name (bar) is used as output path\notherwise, the output path is extracted from thing (the filename without the .md extension)\n\nIf the path found starts with a datetime string (YYYY-mm-dd or a RFC3339 datetime) followed by optional whitespace and then an underscore (_) or a dash (-), this date is removed from the output path and will be used as the page date (unless already set in the front-matter). Note that the full RFC3339 datetime contains colons, which is not a valid character in a filename on Windows.\nThe output path extracted from the file path is then slugified or not, depending on the slugify.paths config, as explained previously.\nExample:\nThe file content/blog/2018-10-10-hello-world.md will yield a page at [base_url]/blog/hello-world. With optional whitespace, the file content/blog/2021-01-23 -hello new world.md will yield a page at [base_url]/blog/hello-new-world\n🔗Front matter\nThe TOML front matter is a set of metadata embedded in a file at the beginning of the file enclosed\nby triple pluses (+++).\nAlthough none of the front matter variables are mandatory, the opening and closing +++ are required.\nNote that even though the use of TOML is encouraged, YAML front matter is also supported to ease porting\nlegacy content. In this case the embedded metadata must be enclosed by triple minuses (---).\nHere is an example page with all the available variables. The values provided below are the\ndefault values.\n\n🔗Summary\nYou can ask Zola to create a summary if, for example, you only want to show the first\nparagraph of the page content in a list.\nTo do so, add <!-- more --> in your content at the point\nwhere you want the summary to end. The content up to that point will be\navailable separately in the\ntemplate via page.summary.\nA span element in this position with a continue-reading id is created, so you can link directly to it if needed. For example:\n<a href=\"{{ page.permalink }}#continue-reading\">Continue Reading</a>.\n","id":"https://www.getzola.org/documentation/content/page/","title":"Page"},"https://www.getzola.org/documentation/content/sass/":{"body":"Sass is a popular CSS preprocessor that adds special features (e.g., variables, nested rules) to facilitate the\nmaintenance of large sets of CSS rules. If you're curious about what Sass\nis and why it might be useful for styling your static site, the following links\nmay be of interest:\n\nThe official Sass website\nWhy Sass?, by Dan Cederholm\n\nIt currently uses grass, a Rust implementation of Sass roughly equivalent\nwith dart-sass.\n🔗Using Sass in Zola\nZola always compiles Sass files in theme directories.\nHowever, for Zola to process files in the sass folder, you need to set compile_sass = true in your config.toml.\nZola processes any files with the sass or scss extension in the sass\nfolder, and places the processed output into a css file with the same folder\nstructure and base name into the public folder:\n\nFiles with a leading underscore in the name are not placed into the public\nfolder, but can still be used as @import dependencies. For more information, see the \"Partials\" section of\nSass Basics.\nFiles with the scss extension use \"Sassy CSS\" syntax,\nwhile files with the sass extension use the \"indented\" syntax: https://sass-lang.com/documentation/syntax.\nZola will return an error if scss and sass files with the same\nbase name exist in the same folder to avoid confusion -- see the example above.\n","id":"https://www.getzola.org/documentation/content/sass/","title":"Sass"},"https://www.getzola.org/documentation/content/search/":{"body":"Zola can build a search index from the sections and pages content to\nbe used by a JavaScript library such as elasticlunr or fuse.\nTo enable it, you only need to set build_search_index = true in your config.toml and Zola will\ngenerate an index for the default_language set for all pages not excluded from the search index.\nIt is very important to set the default_language in your config.toml if you are writing a site not in\nEnglish; the index building pipelines are very different depending on the language.\nAs each site will be different, Zola makes no assumptions about your search function and doesn't provide\nthe JavaScript/CSS code to do an actual search and display results. You can look at how this site\nimplements it (using elasticlunr) to get an idea: search.js.\n🔗Configuring the search index\nIn some cases, the default indexing strategy is not suitable. You can customize which fields to include and whether\nto truncate the content in the search configuration.\n🔗Index Formats\n🔗Elasticlunr\nCompatible with elasticlunr. Also produces elasticlunr.min.js.\n\nIf you are using a language other than English, you will also need to include the corresponding JavaScript stemmer file.\nSee https://github.com/weixsong/lunr-languages#in-a-web-browser for details.\n🔗Fuse\nCompatible with fuse.js and tinysearch.\n\n","id":"https://www.getzola.org/documentation/content/search/","title":"Search"},"https://www.getzola.org/documentation/content/section/":{"body":"A section is created whenever a directory (or subdirectory) in the content section contains an\n_index.md file. If a directory does not contain an _index.md file, no section will be\ncreated, but Markdown files within that directory will still create pages (known as orphan pages).\nThe homepage (i.e., the page displayed when a user browses to your base_url) is a section,\nwhich is created whether or not you add an _index.md file at the root of your content directory.\nIf you do not create an _index.md file in your content directory, this main content section will\nnot have any content or metadata. If you would like to add content or metadata, you can add an\n_index.md file at the root of the content directory and edit it just as you would edit any other\n_index.md file; your index.html template will then have access to that content and metadata.\nAny non-Markdown file in a section directory is added to the assets collection of the section, as explained in the\ncontent overview. These files are then available in the\nMarkdown file using relative links.\n🔗Drafting\nJust like pages sections can be drafted by setting the draft option in the front matter. By default this is not done. When a section is drafted it's descendants like pages, subsections and assets will not be processed unless the --drafts flag is passed. Note that even pages that don't have a draft status will not be processed if one of their parent sections is drafted.\n🔗Front matter\nThe _index.md file within a directory defines the content and metadata for that section. To set\nthe metadata, add front matter to the file.\nThe TOML front matter is a set of metadata embedded in a file at the beginning of the file enclosed by triple pluses (+++).\nAfter the closing +++, you can add content, which will be parsed as Markdown and made available\nto your templates through the section.content variable.\nAlthough none of the front matter variables are mandatory, the opening and closing +++ are required.\nNote that even though the use of TOML is encouraged, YAML front matter is also supported to ease porting\nlegacy content. In this case the embedded metadata must be enclosed by triple minuses (---).\nHere is an example _index.md with all the available variables. The values provided below are the\ndefault values.\n\nKeep in mind that any configuration options apply only to the direct pages, not to the subsections' pages.\n🔗Pagination\nTo enable pagination for a section's pages, set paginate_by to a positive number. See\npagination template documentation for more information\non what variables are available in the template.\nYou can also change the pagination path (the word displayed while paginated in the URL, like page/1)\nby setting the paginate_path variable, which defaults to page.\n🔗Sorting\nIt is very common for Zola templates to iterate over pages or sections\nto display all pages/sections in a given directory. Consider a very simple\nexample: a blog directory with three files: blog/Post_1.md,\nblog/Post_2.md and blog/Post_3.md. To iterate over these posts and\ncreate a list of links to the posts, a simple template might look like this:\n\nThis would iterate over the posts in the order specified\nby the sort_by variable set in the _index.md page for the corresponding\nsection. The sort_by variable can be given a few values: date, update_date\ntitle, title_bytes, weight, slug or none. If sort_by is not set, the pages will be\nsorted in the none order, which is not intended for sorted content.\nAny page that is missing the data it needs to be sorted will be ignored and\nwon't be rendered. For example, if a page is missing the date variable and its\nsection sets sort_by = \"date\", then that page will be ignored.\nThe terminal will warn you if this occurs.\nIf several pages have the same date/weight/order, their permalink will be used\nto break the tie based on alphabetical order.\n🔗Sorting pages\nThe sort_by front-matter variable can have the following values:\n🔗date\nThis will sort all pages by their date field, from the most recent (at the\ntop of the list) to the oldest (at the bottom of the list). Each page will\nget page.lower and page.higher variables that contain the pages with\nearlier and later dates, respectively.\n🔗update_date\nSame as date except it will take into account any updated date for the pages.\n🔗title\nThis will sort all pages by their title field in natural lexical order, as\ndefined by natural_lexical_cmp in the lexical-sort crate. Each page will\nget page.lower and page.higher variables that contain the pages\nwith previous and next titles, respectively.\nFor example, here is a natural lexical ordering: \"bachata, BART, bolero,\nμ-kernel, meter, Métro, Track-2, Track-3, Track-13, underground\". Notice how\nspecial characters and numbers are sorted reasonably.\n🔗title_bytes\nSame as title except it uses the bytes directly to sort.\nNatural sorting treats non-ascii\ncharacters like their closest ascii character. This can lead to unexpected\nresults for languages with different character sets. The last three characters\nof the Swedish alphabet, åäö, for example would be considered by the natural\nsort as aao. In that case the standard byte-order sort may be more suitable.\n🔗weight\nThis will sort all pages by their weight field, from the lightest weight\n(at the top of the list) to the heaviest (at the bottom of the list). Each\npage gets page.lower and page.higher variables that contain the\npages with lighter and heavier weights, respectively.\n🔗slug\nThis will sort pages or sections by their slug in natural lexical order.\n🔗Reversed sorting\nWhen iterating through pages, you may wish to use the Tera reverse filter,\nwhich reverses the order of the pages. For example, after using the reverse filter,\npages sorted by weight will be sorted from lightest (at the top) to heaviest\n(at the bottom); pages sorted by date will be sorted from oldest (at the top)\nto newest (at the bottom).\nreverse has no effect on page.lower / page.higher.\nIf the section is paginated the paginate_reversed=true in the front matter of the relevant section should be set instead of using the filter.\n🔗Sorting subsections\nSorting sections is a bit less flexible: sections can only be sorted by weight,\nand do not have variables that point to the heavier/lighter sections.\nBy default, the lightest (lowest weight) subsections will be at\nthe top of the list and the heaviest (highest weight) will be at the bottom;\nthe reverse filter reverses this order.\nNote: Unlike pages, permalinks will not be used to break ties between\nequally weighted sections. Thus, if the weight variable for your section is not set (or if it\nis set in a way that produces ties), then your sections will be sorted in\nrandom order. Moreover, that order is determined at build time and will\nchange with each site rebuild. Thus, if there is any chance that you will\niterate over your sections, you should always assign them distinct weights.\n","id":"https://www.getzola.org/documentation/content/section/","title":"Section"},"https://www.getzola.org/documentation/content/shortcodes/":{"body":"Zola borrows the concept of shortcodes from WordPress.\nIn our case, a shortcode corresponds to a template defined in the templates/shortcodes directory that can be used in a Markdown file.\nBroadly speaking, Zola's shortcodes cover two distinct use cases:\n\nInject more complex HTML: Markdown is good for writing, but it isn't great when you need to add inline HTML or styling.\nEase repetitive data based tasks: when you have external data that you\nwant to display in your page's body.\n\nThe latter may also be solved by writing HTML, however Zola allows the use of Markdown based shortcodes which end in .md\nrather than .html. This may be particularly useful if you want to include headings generated by the shortcode in the\ntable of contents.\nIf you want to use something similar to shortcodes in your templates, you can use Tera macros. They are functions or components that you can call to return some text.\n🔗Writing a shortcode\nLet's write a shortcode to embed YouTube videos as an example.\nIn a file called youtube.html in the templates/shortcodes directory, paste the\nfollowing:\n\nThis template is very straightforward: an iframe pointing to the YouTube embed URL wrapped in a <div>.\nIn terms of input, this shortcode expects at least one variable: id (example here).\nBecause the other variables are in an if statement, they are optional.\nThat's it. Zola will now recognise this template as a shortcode named youtube (the filename minus the .html extension).\nThe Markdown renderer will wrap an inline HTML node such as <a> or <span> into a paragraph.\nIf you want to disable this behaviour, wrap your shortcode in a <div>.\nA Markdown based shortcode in turn will be treated as if what it returned was part of the page's body. If we create\nbooks.md in templates/shortcodes for example:\n\nThis will create a shortcode books with the argument path pointing to a .toml file where it loads lists of books with\ntitles and descriptions. They will flow with the rest of the document in which books is called.\nShortcodes are rendered before the page's Markdown is parsed so they don't have access to the page's table of contents.\nBecause of that, you also cannot use the get_page / get_section / get_taxonomy / get_taxonomy_term global functions. It might work while\nrunning zola serve because it has been loaded but it will fail during zola build.\n🔗Using shortcodes\nThere are two kinds of shortcodes:\n\nones that do not take a body, such as the YouTube example above\nones that do, such as one that styles a quote\n\nIn both cases, the arguments must be named and they will all be passed to the template. \nParentheses are mandatory even if there are no arguments.\nNote that while shortcodes look like normal Tera expressions, they are not Tera at all -- they can\npretty much just shuttle arguments to their template. Several limitions of note are:\n\nAll arguments are required\nThe shortcode cannot reference Tera variables\nConcatenation and other operators are unavailable\n\nIf the shortcode is invalid, it will not be interpreted by the markdown parser and will instead\nget rendered directly into the final HTML.\nLastly, a shortcode name (and thus the corresponding .html file) as well as the argument names\ncan only contain numbers, letters and underscores, or in Regex terms [0-9A-Za-z_].\nAlthough theoretically an argument name could be a number, it will not be possible to use such an argument in the template.\nArgument values can be of one of five types:\n\nstring: surrounded by double quotes, single quotes or backticks\nbool: true or false\nfloat: a number with a decimal point (e.g., 1.2)\ninteger: a whole number or its negative counterpart (e.g., 3)\narray: an array of any kind of value, except arrays\n\nMalformed values will be silently ignored.\nBoth types of shortcode will also get either a page or section variable depending on where they were used\nand a config variable. These values will overwrite any arguments passed to a shortcode so these variable names\nshould not be used as argument names in shortcodes.\n🔗Shortcodes without body\nSimply call the shortcode as if it was a Tera function in a variable block.\n\nNote that if you want to have some content that looks like a shortcode but not have Zola try to render it,\nyou will need to escape it by using {{/* and */}} instead of {{ and }}.\n🔗Shortcodes with body\nLet's imagine that we have the following shortcode quote.html template:\n\nWe could use it in our Markdown file like so:\n\nThe body of the shortcode will be automatically passed down to the rendering context as the body variable and needs\nto be on a new line.\n🔗Shortcodes with no arguments\nNote that for both cases that the parentheses for shortcodes are necessary. \nA shortcode without the parentheses will render as plaintext and no warning will be emitted.\nAs an example, this is how an aside shortcode-with-body with no arguments would be defined in aside.html:\n\nWe could use it in our Markdown file like so:\n\n🔗Content similar to shortcodes\nIf you want to have some content that looks like a shortcode but not have Zola try to render it,\nyou will need to escape it by using {%/* and */%} instead of {% and %}. You won't need to escape\nanything else until the closing tag.\n🔗Shortcode context\nEvery shortcode can access some variables, beyond what you explicitly passed as parameter. These variables are explained in the following subsections:\n\ninvocation count (nth)\ncurrent language (lang), unless called from the markdown template filter (in which case it will always be the same value as default_language in configuration, or en when it is unset)\ncolocated_path\n\nWhen one of these variables conflict with a variable passed as argument, the argument value will be used.\n🔗nth: invocation count\nEvery shortcode context is passed in a variable named nth that tracks how many times a particular shortcode has\nbeen invoked in the current Markdown file. Given a shortcode true_statement.html template:\n\nIt could be used in our Markdown as follows:\n\nThis is useful when implementing custom markup for features such as sidenotes or end notes.\n🔗lang: current language\nNOTE: When calling a shortcode from within the markdown template filter, the lang variable will always be en. \nIf you feel like you need that, please consider using template macros instead. \nIf you really need that, you can rewrite your Markdown content to pass lang as argument to the shortcode.\nEvery shortcode can access the current language in the lang variable in the context. \nThis is useful for presenting/filtering information in a shortcode depending in a per-language manner. For example, to display a per-language book cover for the current page in a shortcode called bookcover.md:\n\n🔗page or section\nYou can access a slighty stripped down version of the equivalent variables in the normal templates.\nThe following attributes will be empty:\n\ntranslations\nbacklinks\npages\n\n(Note: this is because the rendering of markdown is done before populating the sections)\nA useful attribute to page in shortcodes is colocated_path.\nThis is used when you want to pass the name of some assets to shortcodes without repeating the full folders path.\nMostly useful when combined with load_data or resize_image.\n\n🔗Examples\nHere are some shortcodes for inspiration.\n🔗YouTube\nEmbed a responsive player for a YouTube video.\nThe arguments are:\n\nid: the video id (mandatory)\nplaylist: the playlist id (optional)\nclass: a class to add to the <div> surrounding the iframe\nautoplay: when set to \"true\", the video autoplays on load\n\nCode:\n\nUsage example:\n\n🔗Image Gallery\nSee content processing page for code and example.\n","id":"https://www.getzola.org/documentation/content/shortcodes/","title":"Shortcodes"},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"body":"Zola comes with built-in syntax highlighting but you first\nneed to enable it in the configuration.\nOnce this is done, Zola will automatically highlight all code blocks\nin your content. A code block in Markdown looks like the following:\n\nYou can replace rust with another language or not put anything to get the text\ninterpreted as plain text.\nHere is a full list of supported languages and their short names:\n\nNote: due to some issues with the JavaScript syntax, the TypeScript syntax will be used instead.\nIf the language you want to highlight is not on this list, the extra_syntaxes_and_themes configuration option can be used to add additional syntax and theme files.\nIf your site source is laid out as follows:\n\nyou would set your extra_syntaxes_and_themes to [\"syntaxes\", \"syntaxes/Sublime-Language1\"] to load lang1.sublime-syntax and lang2.sublime-syntax.\nYou can see the list of available themes on the configuration page.\n🔗Inline VS classed highlighting\nIf you use a highlighting scheme like\n\nfor a code block like\n\nyou get the colors directly encoded in the html file.\n\nThis is nice, because your page will load faster if everything is in one file.\nBut if you would like to have the user choose a theme from a\nlist, or use different color schemes for dark/light color schemes, you need a\ndifferent solution.\nIf you use the special css color scheme\n\nyou get CSS class definitions, instead.\n\nZola can output a css file for a theme in the static directory using the highlight_themes_css option.\n\nYou can then support light and dark mode like so:\n\nAlternately, you can reference the stylesheets in your base template to reduce request chains:\n\nThemes can conditionally include code-highlighting stylesheet <link> tags by wrapping them in a conditional:\n\n🔗Annotations\nYou can use additional annotations to customize how code blocks are displayed:\n\nlinenos to enable line numbering.\n\n\n\nlinenostart to specify the number for the first line (defaults to 1)\n\n\n\nhl_lines to highlight lines. You must specify a list of inclusive ranges of lines to highlight,\nseparated by (whitespace). Ranges are 1-indexed and linenostart doesn't influence the values, it always refers to the codeblock line number.\n\n\n\nhide_lines to hide lines. You must specify a list of inclusive ranges of lines to hide,\nseparated by (whitespace). Ranges are 1-indexed.\n\n\n🔗Styling codeblocks\nDepending on the annotations used, some codeblocks will be hard to read without any CSS. We recommend using the following\nsnippet in your sites:\n\nThis snippet makes the highlighting work on the full width and ensures that a user can copy the content without\nselecting the line numbers. Obviously you will probably need to adjust it to fit your site style.\nHere's an example with all the options used: scss, linenos, linenostart=10, hl_lines=3-4 8-9, hide_lines=2 7 with the\nsnippet above.\n\nLine 2 and 7 are comments that are not shown in the final output.\nWhen line numbers are active, the code block is turned into a table with one row and two cells. The first cell contains the line number and the second cell contains the code.\nHighlights are done via the <mark> HTML tag. When a line with line number is highlighted two <mark> tags are created: one around the line number(s) and one around the code.\n🔗Custom Highlighting Themes\nThe default theme for syntax highlighting is called base16-ocean-dark, you can choose another theme from the built in set of highlight themes using the highlight_theme configuration option.\nFor example, this documentation site currently uses the kronuz theme, which is built in.\n\nAlternatively, the extra_syntaxes_and_themes configuration option can be used to add additional theme files.\nYou can load your own highlight theme from a TextMate .tmTheme file.\nIt works the same way as adding extra syntaxes. It should contain a list of paths to folders containing the .tmTheme files you want to include.\nYou would then set highlight_theme to the name of one of these files, without the .tmTheme extension.\nIf your site source is laid out as follows:\n\nyou would set your extra_syntaxes_and_themes to [\"highlight_themes\", \"highlight_themes/MyGroovyTheme\"] to load theme1.tmTheme and theme2.tmTheme.\nThen choose one of them to use, say theme1, by setting highlight_theme = theme1.\n","id":"https://www.getzola.org/documentation/content/syntax-highlighting/","title":"Syntax Highlighting"},"https://www.getzola.org/documentation/content/table-of-contents/":{"body":"Each page/section will automatically generate a table of contents for itself based on the headers generated with markdown.\nIt is available in the template through the page.toc or section.toc variable.\nYou can view the template variables\ndocumentation for information on its structure.\nHere is an example of using that field to render a two-level table of contents:\n\nWhile headers are neatly ordered in this example, it will work just as well with disjoint headers.\nNote that all existing HTML tags from the title will NOT be present in the table of contents to\navoid various issues.\n","id":"https://www.getzola.org/documentation/content/table-of-contents/","title":"Table of Contents"},"https://www.getzola.org/documentation/content/taxonomies/":{"body":"Zola has built-in support for taxonomies. Taxonomies are a way for users to group content according to user-defined categories.\n🔗Definitions\n\nTaxonomy: A category that can be used to group content \nTerm: A specific group within a taxonomy \nValue: A piece of content that can be associated with a term\n\n🔗Example: a movie website\nImagine that you want to make a website to display information about various movies. In that case you could use the following taxonomies:\n\nDirector\nGenres\nAwards\nRelease year\n\nThen at build time Zola can create pages for each taxonomy listing all of the known terms as well as pages for each term in a taxonomy, listing all of the pieces of content associated with that term. \nImagine again we have the following movies: \n\nIn this example the page for Release year would include links to pages for both 2003 and 2017, where the page for 2017 would list both Shape of Water and Bright.\n🔗Configuration\nA taxonomy has six variables:\n\nname: a required string that will be used in the URLs, usually the plural version (i.e., tags, categories, etc.)\npaginate_by: if this is set to a number, each term page will be paginated by this much.\npaginate_path: if set, this path will be used by the paginated page and the page number will be appended after it.\nFor example the default would be page/1.\nfeed: if set to true, a feed (atom by default) will be generated for each term.\nlang: only set this if you are making a multilingual site and want to indicate which language this taxonomy is for\nrender: if set to false, pages will not be rendered for the taxonomy or for individual terms.\n\nInsert into the configuration file (config.toml):\n⚠️ Place the taxonomies key in the main section and not in the [extra] section\nExample 1: (one language)\n\nExample 2: (multilingual site)\n\n🔗Using taxonomies\nOnce the configuration is done, you can then set taxonomies in your content and Zola will pick them up:\nExample:\n\n🔗Output paths\nIn a similar manner to how section and pages calculate their output path:\n\nthe taxonomy name is never slugified\nthe taxonomy term (e.g. as specific tag) is slugified when slugify.taxonomies is enabled (\"on\", the default) in the configuration\n\nThe taxonomy pages are then available at the following paths:\n\nNote that taxonomies are case insensitive so terms that have the same slug will get merged, e.g. sections and pages containing the tag \"example\" will be shown in the same taxonomy page as ones containing \"Example\" \n","id":"https://www.getzola.org/documentation/content/taxonomies/","title":"Taxonomies"},"https://www.getzola.org/documentation/deployment/aws-s3/":{"body":"Amazon Simple Storage Service (Amazon S3) is an object storage service offering static website hosting. We're going to look at the setup required to build and deploy your Zola website to S3 via GitHub Actions.\n🔗AWS Setup\nThe official AWS developer guide has detailed instruction on how to create your bucket and set it up correctly for static website hosting. In AWS you can not only host the website files, but also buy a domain name and speed up your website via their global CDN (CloudFront).\nFor GitHub Actions to modify the files in your bucket, you need to create an IAM user in your AWS account that has just enough permissions to perform what we need and no more.\nFirst we need to create a new policy by logging on to AWS Console and going to IAM > Policies > Create policy. Switch from the visual editor to JSON and paste the following snippet. Remember to update your bucket name:\n\nThe AccessToCloudfront portion is not required if you're not going to speed up your website with CloudFront.\nOnce the policy is created you need to create a new user under IAM > Users. Give it a name such as github-actions-user. On the Set permissions step select Attach policies directly and find the policy we created in the last step. \nFrom the list of users click on your newly created account and then open the Security Credentials tab. Under Access keys select > Create access key and choose Command Line Interface (CLI). Click \"I understand the above recommendation\" and then Create access key. Note the Access key ID and Secret access key.\n🔗Setup Secrets in GitHub\nThe access keys we just created need to be configured as secrets in your GitHub repo. To do so, navigate to Setting > expand Secrets and variables > click on Actions.\nUnder Repository secrets click Add repository secret. In the Name field enter AWS_ACCESS_KEY_ID and in the Secret field enter the value from the previous step. Do the same for the secret access key, naming it AWS_SECRET_ACCESS_KEY. Finally create one secret for your bucket name S3_BUCKET and one CLOUDFRONT_DISTRIBUTION_ID if you have created a distribution for your website.\n🔗GitHub Actions\nNext we need to create the Github Action to build and deploy our files to S3. We need to create a workflow file in .github/workflows directory of our repository. This can be done by navigating to the Actions tab in GitHub or by commiting the file from your machine.\n.github/workflows/publish.yml:\n\nNote, that you may need to change the branch name in the above snippet if you desire a different behavior.\n","id":"https://www.getzola.org/documentation/deployment/aws-s3/","title":"AWS S3 Bucket"},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"body":"Cloudflare is a cloud solutions provider with a huge proprietary content delivery network (CDN). Like Netlify or Vercel, Cloudflare Pages makes the deployment process flexible and easy. You can add a GitHub repo to the service and build & host Zola-based websites after each PR automatically.\n🔗Step-by-step\n\nSign in or create a new Cloudflare account and choose \"Pages\" on the right nav column\nPress the button \"Create a project\"\nSelect the GitHub repo that contains your Zola website and connect it to Cloudflare Pages\nClick \"Begin setup\"\nEnter your project name. Keep in mind that if you would like to use the default Pages domain (pages.dev), this will be your website's future URL (\"yourprojectname.pages.dev\"). Additionally, select a production branch.\nIn Build settings, select Zola as the Framework preset. Build command and Build output directory will be filled automatically.\nToggle Environment variables below and add ZOLA_VERSION as a variable name. Use 0.17.2 or a different Zola version as the value.\nFinally, save and deploy.\n\nYour website is now built and deployed to Cloudflare's network! You can add a custom domain or modify settings in the Pages dashboard.\nYou may find documentation and guides like Getting started with Cloudflare Pages and\nDeploying Zola with Cloudflare Pages in the Developers portal.\n🔗Troubleshooting\nSome tips to help troubleshoot issues getting started with Cloudflare Pages.\n🔗zola: not found\nIf you see build output that resembles something like this:\n\nThen it might be due to an outstanding issue. There are currently two recommended workarounds:\n🔗Change the build system version to v1\nFrom within the workers & pages dash, go to the following:\n Settings > Builds & deployments > Build system version > Configure build system\nThen select v1 and save.\n🔗Or use UNSTABLE_PRE_BUILD environment variable + asdf\nFrom within the workers & pages dash, do the following:\n Settings > Environment variables > Edit variables\nAnd add an environment variable UNSTABLE_PRE_BUILD, with the following value and save.\n\n","id":"https://www.getzola.org/documentation/deployment/cloudflare-pages/","title":"Cloudflare Pages"},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"body":"We are going to use the Woodpecker CI hosted by Codeberg to host the site on Codeberg Pages.\n🔗Configuring your repository\nIt is required that you create a repository on Codeberg that contains only your Zola project. The Zola directory structure should be in the root of your repository.\nInformation on how to create and manage a repository on Codeberg can be found at https://docs.codeberg.org/getting-started/first-repository/.\n🔗Ensuring that Woodpecker CI can access your theme\nDepending on how you added your theme, your repository may not contain it. The best way to ensure that the theme is added is to use submodules. Make sure you use the https version of the URL.\n\nFor example, this could look like:\n\n🔗Setting up Woodpecker CI\nAssuming you have access to Codeberg's Woodpecker CI, we can build the site and automatically deploy it to Codeberg Pages on every commit.\nFirst, place the following sample Zola CI file in the root of your project:\n\nThen add the following secrets to Woodpecker:\n\nmail: Your email address as used by Codeberg.\ncodeberg_token: Codeberg access token with write:repository permission.\n\nOnce done, you can trigger the CI by pushing something to the repository, and Woodpecker will build the site and copy the resulting site to the pages branch and it will be available at https://<repository>.<user>.codeberg.page.\nFor custom domain, create the .domains file inside the ./static/ directory so that it will be copied to the resulting build.\nMore information about Codeberg Pages is available in the official Codeberg documentation.\n","id":"https://www.getzola.org/documentation/deployment/codeberg-pages/","title":"Codeberg Pages"},"https://www.getzola.org/documentation/deployment/docker-image/":{"body":"If you have to distribute a Zola based web site through Docker, it's easy to do with a multi-stage build.\nHere is an example that builds the current folder, and put the result in a docker image that will be served by\nstatic-web-server, a minimalist web server written in rust.\nOf course, you may want to replace the second stage with another static web server like Nginx or Apache.\n\nTo build your website as a docker image, you then run:\n\nTo test your site, just run the docker image and browse http://localhost:8000\n\nNote that, if you want to be able to use your docker image from multiple locations, you'll have to set base_url to /.\n","id":"https://www.getzola.org/documentation/deployment/docker-image/","title":"Docker image"},"https://www.getzola.org/documentation/deployment/edgio/":{"body":"If you don't have an account with Edgio, you can sign up here.\n🔗Manual deploys\nFor a command-line manual deploy, follow these steps:\n\nInstall the Edgio CLI: \n\n\n\nCreate a package.json at the root of your project with the following:\n\n\n\nInitialize your project with:\n\n\n\nUpdate routes.js at the root of your project to the following:\n\n\n\nBuild your zola app:\n\n\n\nDeploy!\n\n\n","id":"https://www.getzola.org/documentation/deployment/edgio/","title":"Edgio"},"https://www.getzola.org/documentation/deployment/flyio/":{"body":"If you don't have an account with fly.io, you can sign up here.\nThen install the flyctl tool following the instructions here.\nCreate a Dockerfile:\n\nYou can now run fly launch. It will detect the Dockerfile and mostly auto-configure everything. Fill out the necessary information, but say \"no\" to (1) launching any databases and (2) deploying immediately.\nTake note of the hostname assigned to your app.\nIf you already have a Zola site you must now ensure that base_url in config.toml is set correctly using the hostname from your app (or whatever domain you have pointing to the app):\n\nIf you don't have an existing site, initialize one with zola init -f and remember to set the correct base_url.\nYou're now ready to launch your site! Run flyctl deploy and have fun!\nFinally, to set up continuous deployment of your site from GitHub, follow this guide, steps 4-8. Any changes to your site will now be pushed automatically.\n","id":"https://www.getzola.org/documentation/deployment/flyio/","title":"Fly.io"},"https://www.getzola.org/documentation/deployment/github-pages/":{"body":"By default, GitHub Pages uses Jekyll (a ruby based static site generator),\nbut you can also publish any generated files provided you have an index.html file in the root of a branch called\ngh-pages, main or master. In addition you can publish from a docs directory in your repository. That branch name can\nalso be manually changed in the settings of a repository. To serve a site at <username>.github.io or\n<organization>.github.io, you must name the repository <username>.github.io or\n<organization>.github.io (otherwise GitHub will append the repository name to the URL, e.g.:\n<username>.github.io/<repositoryname>.\nWe can use any continuous integration (CI) server to build and deploy our site. For example:\n\nGithub Actions\nTravis CI\n\nIn either case, it seems to work best if you use git submodule to include your theme, e.g.:\n\n🔗Github Actions\nUsing Github Actions for the deployment of your Zola-Page on Github-Pages is pretty easy. You basically need three things:\n\nA Personal access token to give the Github Action the permission to push into your repository ONLY IF you are publishing from another repo\nCreate the Github Action.\nCheck the Github Pages section in repository settings.\n\nLet's start with the token. Remember, if you are publishing the site on the same repo, you do not need to follow that step. But you will still need to pass in the automatic GITHUB_TOKEN as explained here.\nFor creating the token either click on here or go to Settings > Developer Settings > Personal access tokens. Under the Select Scopes section, give it public_repo permissions and click Generate token. Then copy the token, navigate to your repository and add in the Settings tab the Secret TOKEN and paste your token in it.\nNext we need to create the Github Action. Here we can make use of the zola-deploy-action. Go to the Actions tab of your repository, click on set up a workflow yourself to get a blank workflow file. Copy the following script into it and commit it afterwards; note that you may need to change the github.ref branch from main to master or similar, as the action will only run for the branch you choose.\nIf you get a permissions denied error, you may need to change the workflow permissions to read and write in Settings > Actions > Workflow permissions.\n\nThis script is pretty simple, because the zola-deploy-action is doing everything for you. You just need to provide some details. For more configuration options check out the README.\nBy committing the action your first build is triggered. Wait until it's finished, then you should see in your repository a new branch gh-pages with the compiled Zola page in it.\nFinally we need to check the Github Pages section of the repository settings. Click on the Settings tab and scroll down to the Github Pages section. Check if the source is set to gh-pages branch and the directory is / (root). You should also see your Github Pages link.\nThere you can also configure a custom domain and Enforce HTTPS mode. Before configuring a custom domains, please check out this.\nIf you want to keep the source of your site in a private repository (including, for example, draft\nposts), adapt the following .github/workflows/main.yml (making sure to update the branches as required):\n\nby substituting your username or organization.\n🔗Travis CI\nAlternatively, you can use Travis CI to automatically publish the site. If you are not using Travis\nalready, you will need to login with the GitHub OAuth and activate Travis for the repository.\nDon't forget to also check if your repository allows GitHub Pages in its settings.\n🔗Ensure that Travis can access your theme\nDepending on how you added your theme, Travis may not know how to access\nit. The best way to ensure that it will have full access to the theme is to use git\nsubmodules. When doing this, ensure that you are using the https version of the URL.\n\n🔗Allowing Travis to push to GitHub\nBefore pushing anything, Travis needs a Github private access key to make changes to your repository.\nIf you're already logged in to your account, just click here to go to\nyour tokens page.\nOtherwise, navigate to Settings > Developer Settings > Personal Access Tokens.\nGenerate a new token and give it any description you'd like.\nUnder the \"Select Scopes\" section, give it repo permissions. Click \"Generate token\" to finish up.\nYour token will now be visible.\nCopy it into your clipboard and head back to Travis.\nOnce on Travis, click on your project, and navigate to \"Settings\". Scroll down to \"Environment Variables\" and input a name of GH_TOKEN with a value of your access token.\nMake sure that \"Display value in build log\" is off, and then click add. Now Travis has access to your repository.\n🔗Setting up Travis\nWe're almost done. We just need some scripts in a .travis.yml file to tell Travis what to do.\nNOTE: The script below assumes that we're taking the code from the code branch and will generate the HTML to be published in the master branch of the same repository. You're free to use any other branch for the Markdown files but if you want to use <username>.github.io or <org>.github.io, the destination branch MUST be master.\n\nIf your site is using a custom domain, you will need to mention it in the ghp-import command:\nghp-import -c vaporsoft.net -n public for example.\nCredits: The Travis-CI section of this page is based on the article https://vaporsoft.net/publishing-gutenberg-to-github/\n🔗Custom Domain\nIf you're using a custom domain for your GitHub Pages site, put the CNAME in static/CNAME so that Zola puts it in the root of the public folder which is where GitHub expects it to be.\n","id":"https://www.getzola.org/documentation/deployment/github-pages/","title":"GitHub Pages"},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"body":"We are going to use the GitLab Runner in GitLab CI/CD to host\nthe site on GitLab Pages.\n🔗Configuring your repository\nIt is possible to host your Zola site on either the SaaS instance offered by\nGitLab (https://gitlab.com) or on a self-hosted instance.\nIt is recommended to create a repository on GitLab that contains solely your\nZola project. The Zola's directory structure\nshould be located in the root directory of your repository.\nFor information on how to create and manage a repository on GitLab, refer to:\nhttps://docs.gitlab.com/ee/user/project/repository/\n🔗Ensuring that the runner can access your theme\nDepending on how you added your theme, your repository may not contain it.\nThe best way to ensure that the theme will be added is to use submodules.\nWhen doing this, ensure that you are using the https version of the URL.\n\nFor example, this could look like:\n\n🔗Setting up the GitLab Runner\nThe GitLab Runner needs to know how to create your site in order to deploy\nit to the GitLab Pages server.\nWe provide you with a template to accomplish this task easily.\nCreate a file called .gitlab-ci.yml in the root directory of your\nrepository and copy the contents of the template below.\n\nPlease, keep in mind that this template assumes you are using the\nDocker executor\non your GitLab Runner.\nFeel free to adjust the file to your workflow and specific requirements.\nAfter you push this file to the default branch of your repository\n(e.g. \"master\" or \"main\"), your site will be ready. The GitLab CI/CD pipelines\nwill ensure your site is published and updated automatically.\nOn the left sidebar of GitLab, navigate to Deploy > Pages to find the URL of your\nwebsite inside the Access pages section.\nMore information on how to host your site on GitLab Pages is available\nin the official GitLab documentation.\n","id":"https://www.getzola.org/documentation/deployment/gitlab-pages/","title":"GitLab Pages"},"https://www.getzola.org/documentation/deployment/netlify/":{"body":"If you don't have an account with Netlify, you can sign up for one.\n🔗Automatic deploys\nOnce you are in the admin interface, you can add a site from a Git provider (GitHub, GitLab or Bitbucket). At the end\nof this process, you can select the deploy settings for the project:\n\nbuild command: zola build (replace the version number in the variable by the version you want to use)\npublish directory: the path to where the public directory is\nimage selection: use the latest\nEnvironment variables: ZOLA_VERSION with for example 0.13.0 as value\n\nWith this setup, your site should be automatically deployed on every commit on master. For ZOLA_VERSION, you may\nuse any of the tagged release versions in the GitHub repository. Netlify will automatically fetch the tagged version\nand use it to build your site.\nHowever, if you want to use everything that Netlify gives you, you should also publish temporary sites for pull requests.\nThis is done by adding the following netlify.toml file in your repository and removing the build command/publish\ndirectory in the admin interface.\n\n🔗Manual deploys\nIf you would prefer to use a version of Zola that isn't a tagged release (for example, after having built Zola from\nsource and made modifications), then you will need to manually deploy your public folder to Netlify. You can do\nthis through Netlify's web GUI or via the command line.\nFor a command-line manual deploy, follow these steps:\n\nGenerate a Personal Access Token from the settings section of your Netlify account (not an OAuth Application).\nBuild your site with zola build.\nCreate a zip folder containing the public directory.\nRun the curl command below, filling in your values for PERSONAL_ACCESS_TOKEN_FROM_STEP_1, FILE_NAME.zip\nand SITE_NAME.\n(Optional) delete the zip folder.\n\n\n","id":"https://www.getzola.org/documentation/deployment/netlify/","title":"Netlify"},"https://www.getzola.org/documentation/deployment/overview/":{"body":"Zola outputs plain files, no databases needed. This makes hosting and deployment\ntrivial on many providers.\n","id":"https://www.getzola.org/documentation/deployment/overview/","title":"Overview"},"https://www.getzola.org/documentation/deployment/sourcehut/":{"body":"Deploying your static Zola website on Sourcehut Pages is very simple.\nYou need to create a .build.yml manifest file in the root folder of your Zola project and push your changes to the\nSourcehut git/hg repository.\nTo create your .build.yml file you can start with a template or use the following example:\n\nThis manifest will clone your source code, build the website and upload the generated static files to the domain\nyou specified in site.\nFor publishing the website, the build manifest uses hut, a commandline tool which takes care of automatically\ngenerating authentication tokens, so there is nothing else you need to do.\nFrom this template you need to customize the variable site with the domain that will host your website and\nsources to point to your Sourcehut git/hg public URL (in this example my-website is the name of the repository).\nThen commit and push your changes:\n\nThe build job will be automatically triggered.\nNotice that Sourcehut returns a direct link to the build page, where you can check the progress and success status.\nBy default you can use a subdomain of Sourcehut Pages to host your static website - your_username.srht.site.\nIf you want to use a custom domain (e.g. \"blog.mydomain.org\"), you will need to configure a DNS record to point to\nthe Sourcehut server.\nInstructions on how to do this are available on Sourcehut.\n","id":"https://www.getzola.org/documentation/deployment/sourcehut/","title":"Sourcehut Pages"},"https://www.getzola.org/documentation/deployment/vercel/":{"body":"Vercel (previously Zeit) is similar to Netlify, making the deployment of your site easy as pie.\nThe sites are hosted by Vercel and automatically deployed whenever we push a commit to our\nselected production branch (e.g, master).\nIf you don't have an account with Vercel, you can sign up here.\n🔗Automatic deploys\nOnce you sign up you can import your site from a Git provider (Github, GitLab or Bitbucket). \nWhen you import your repository, Vercel will try to find out what framework your site is using.\nIf it doesn't default to Zola:\n\nSet Framework Preset as Zola.\n\nBy default, Vercel chooses output directory as public. If you use a different directory, then\nspecify output directory under the \"Build and Output Settings\" dropdown.\nYou can learn more about how to setup a custom domain and how to get the most out of Vercel\nvia their documentation. \nAfter you click the blue \"Deploy\" button, it's off to the races!\nTo use a specific version of Zola, set ZOLA_VERSION environment variable in project settings to a valid\nrelease tag, for example 0.17.2.\n🔗Troubleshooting\n🔗GLIBC_X.XX not found\nThis is because Vercel's build images comes with an older glibc version whereas Zola \ndepends on a newer glibc. However, Vercel provides a newer build image which can be used in\ndeployments by setting Node.js version to \"20.x\", allowing Zola to work properly.\n🔗Additional options\n🔗Enable trailing slashes\nVisiting a page without trailing slash may break relative paths, so you might want to configure\nVercel to always redirect paths with a trailing slash. By default, redirecting to a trailing\nslash is not enabled on Vercel.\nFor example if you have an about.md file, and when visiting the path without a trailing\nslash, like /about, Vercel will redirect with trailing slash, resulting in /about/.\nPaths with a file extension will not redirect to a trailing slash, for example if you\nhave a static file named favicon.ico, it will stay as-is.\nTo enable that, create a file in the root of your git repository named vercel.json\n(if it doesn't exists already), and set this option:\n\n🔗Prefer clean URLs\nWhen enabled, all HTML files will be served without their file extension. For example\nif you have an about.md file, Zola will generate a about/index.html file, but Vercel\nwill serve the file as /about, without its index.html suffix.\nTo enable that, create a file in the root of your git repository named vercel.json\n(if it doesn't exists already), and set this option:\n\n🔗Using a custom Zola binary\nIf you want to use your own Zola binary that published on GitHub, or if you want to\nalways use the latest version of Zola, you can run a shell command to grab the\nlatest release from GitHub.\nTo do that, set \"Framework Preset\" to \"Other\", and override \"Install Command\" to:\n\nThis command will fetch the latest release from GitHub, download the archive and extract it.\nThen, set \"Build Command\" to ./zola build. Now Vercel will use the downloaded Zola \nbinary to build the documentation instead of using the built-in one.\nIf you prefer to use vercel.json instead, (which overrides the options set in the dashboard)\nyou can use this configuration.\n\n🔗See also\nSee Vercel's own documentation \nfor all available options in vercel.json.\n","id":"https://www.getzola.org/documentation/deployment/vercel/","title":"Vercel"},"https://www.getzola.org/documentation/deployment/zeabur/":{"body":"In this tutorial, we'll guide you through the process of deploying your Zola site onto the Zeabur. Zeabur provides a seamless deployment experience, with automatic SSL certificates and global-edge network delivery. Let's get started!\n🔗Prerequisites\n\nA Zola site project on your local machine.\nA GitHub account and your Zola site project repository hosted on GitHub.\nA Zeabur account. If you don't have one, sign up at here.\n\n🔗Step 1: Create a Project on Zeabur\n\nLog in to your Zeabur account.\nNavigate to the dashboard and click on the Create Project button.\nFollow the on-screen instructions to set up a new project.\n\n🔗Step 2: Push Your Zola Files to GitHub\n\n\nInitialize a Git repository in your Zola project folder if you haven't already:\n\n\n\nPush your Zola project to GitHub:\n\n\n\nReplace <your-github-repo-url> with the URL of your GitHub repository.\n🔗Step 3: Create a Service on Zeabur\n\nBack in your Zeabur dashboard, click on Create Service.\nChoose the git option to connect your GitHub repository.\n\n🔗Step 4: Select Your Zola Repository\n\nFrom the list of repositories, select the repository where your Zola project is located.\n\n🔗Step 5: Automatic Deployment\nZeabur will automatically detect that you're deploying a Zola project and will handle the deployment process for you without any additional configuration needed.\nTo use a specific version of Zola, set ZOLA_VERSION environment variable in project settings to a valid\nrelease tag, for example 0.17.2.\n🔗Step 6: Domain Binding\n\nOnce the deployment is complete, bind a domain name to your service.\nYou can choose to use a free .zeabur.app subdomain or bind your own custom domain.\nZeabur will automatically provide a free SSL certificate for your domain, ensuring secure browsing for your visitors.\n\n🔗Step 7: Your Site is Live!\nCongratulations! Your Zola site is now deployed and live, served through Zeabur's edge network. \nYou can now visit your website at the domain you've set up.\n","id":"https://www.getzola.org/documentation/deployment/zeabur/","title":"Zeabur"},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"body":"Zola only has 4 commands: init, build, serve and check.\nYou can view the help for the whole program by running zola --help and\nthat for a specific command by running zola <cmd> --help.\n🔗init\nCreates the directory structure used by Zola at the given directory after asking a few basic configuration questions.\nAny choices made during these prompts can be easily changed by modifying config.toml.\n\nIf the my_site directory already exists, Zola will only populate it if it contains only hidden files (dotfiles are ignored). If no my_site argument is passed, Zola will try to populate the current directory.\nIn case you want to attempt to populate a non-empty directory and are brave, you can use zola init --force. Note that this will not overwrite existing folders or files; in those cases you will get a File exists (os error 17) error or similar.\nYou can initialize a git repository and a Zola site directly from within a new folder:\n\n🔗build\nThis will build the whole site in the public directory (if this directory already exists, it is deleted).\n\nYou can override the config base_url by passing a new URL to the base-url flag.\n\nThis is useful for example when you want to deploy previews of a site to a dynamic URL, such as Netlify\ndeploy previews.\nYou can override the default output directory public by passing another value to the output-dir flag. If this directory already exists, the user will be prompted whether to replace the folder; you can override this prompt by passing the --force flag.\n\nYou can point to a config file other than config.toml like so (note that the position of the config option is important):\n\nYou can also process a project from a different directory with the root flag. If building a project 'out-of-tree' with the root flag, you may want to combine it with the output-dir flag. (Note that like config, the position is important):\n\nBy default, drafts are not loaded. If you wish to include them, pass the --drafts flag.\n🔗serve\nThis will build and serve the site using a local server. You can also specify\nthe interface/port combination to use if you want something different than the default (127.0.0.1:1111).\nYou can also specify different addresses for the interface and base_url using --interface and -u/--base-url, respectively, if for example you are running Zola in a Docker container.\n\nBy default, devices from the local network won't be able to access the served pages. This may be of importance when you want to test page interaction and layout on your mobile device or tablet. If you set the interface to 0.0.0.0 however, devices from your local network will be able to access the served pages by requesting the local ip-address of the machine serving the pages and port used.\nIn order to have everything work correctly, you might also have to alter the base-url flag to your local ip or set it to / to use server-base relative paths.\n\nUse the --open flag to automatically open the locally hosted instance in your\nweb browser.\nBefore starting, Zola will delete the output directory (by default public in project root) to start from a clean slate.\nIf you are specifying the directory but are also using the output-dir flag, Zola will not use the specified directory if it already exists unless the --force flag is used.\n\nThe serve command will watch all your content and provide live reload without\na hard refresh if possible. If you are using WSL2 on Windows, make sure to store the website on the WSL file system.\nSome changes cannot be handled automatically and thus live reload may not always work. If you\nfail to see your change or get an error, try restarting zola serve.\nYou can also point to a config file other than config.toml like so (note that the position of the config option is important):\n\nBy default, drafts are not loaded. If you wish to include them, pass the --drafts flag.\n🔗check\nThe check subcommand will try to build all pages just like the build command would, but without writing any of the\nresults to disk. Additionally, it will also check all external links in Markdown files by trying to fetch\nthem (links in the template files are not checked).\nBy default, drafts are not loaded. If you wish to include them, pass the --drafts flag.\n🔗Colored output\nColored output is used if your terminal supports it.\nNote: coloring is automatically disabled when the output is redirected to a pipe or a file (i.e., when the standard output is not a TTY).\nYou can disable this behavior by exporting one of the following two environment variables:\n\nNO_COLOR (the value does not matter)\nCLICOLOR=0\n\nTo force the use of colors, you can set the following environment variable:\n\nCLICOLOR_FORCE=1\n\n","id":"https://www.getzola.org/documentation/getting-started/cli-usage/","title":"CLI usage"},"https://www.getzola.org/documentation/getting-started/configuration/":{"body":"The default configuration is sufficient to get Zola running locally but not more than that.\nIt follows the philosophy of paying for only what you need, almost everything is turned off by default.\nTo change the configuration, edit the config.toml file.\nIf you are not familiar with TOML, have a look at the TOML spec.\n⚠️ If you add keys to your config.toml, you must pay attention to which TOML section it belongs to. A TOML section starts with a header, e.g. [search], and ends at the next section or EOF.\nHere are the current config.toml sections:\n\nmain (unnamed)\nmarkdown\nlink_checker\nslugify\nsearch\ntranslations\nlanguages\nextra\n\nOnly the base_url variable is mandatory. Everything else is optional. All configuration variables\nused by Zola as well as their default values are listed below:\n\n🔗Syntax highlighting\nZola currently has the following highlight themes available:\n\n1337\nagola-dark\nascetic-white\naxar\nayu-dark\nayu-light\nayu-mirage\nbase16-atelierdune-light\nbase16-ocean-dark\nbase16-ocean-light\nbbedit\nboron\ncharcoal\ncheerfully-light\nclassic-modified\ndemain\ndimmed-fluid\ndracula\ngray-matter-dark\ngreen\ngruvbox-dark\ngruvbox-light\nidle\ninspired-github\nir-white\nkronuz\nmaterial-dark\nmaterial-light\nmonokai\nnord\nnyx-bold\none-dark\nOneHalfDark\nOneHalfLight\nrailsbase16-green-screen-dark\nsolarized-dark\nsolarized-light\nsubway-madrid\nsubway-moscow\nTomorrow\ntwo-dark\nvisual-studio-dark\nzenburn\n\nZola uses the Sublime Text themes, making it very easy to add more.\nIf you want a theme not listed above, please open an issue or a pull request on the Zola repo.\nAlternatively you can use the extra_syntaxes_and_themes configuration option to load your own custom themes from a .tmTheme file.\nSee Syntax Highlighting for more details.\n🔗Slugification strategies\nBy default, Zola will turn every path, taxonomies and anchors to a slug, an ASCII representation with no special characters.\nYou can however change that strategy for each kind of item, if you want UTF-8 characters in your URLs for example. There are 3 strategies:\n\non: the default one, everything is turned into a slug\nsafe: characters that cannot exist in files on Windows (<>:\"/\\|?*) or Unix (/) are removed, everything else stays\noff: nothing is changed, your site might not build on some OS and/or break various URL parsers\n\nSince there are no filename issues with anchors, the safe and off strategies are identical in their case: the only change\nis space being replaced by _ since a space is not valid in an anchor.\nNote that if you are using a strategy other than the default, you will have to manually escape whitespace and Markdown\ntokens to be able to link to your pages. For example an internal link to a file named some space.md will need to be\nwritten like some%20space.md in your Markdown files.\n","id":"https://www.getzola.org/documentation/getting-started/configuration/","title":"Configuration"},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"body":"After running zola init, you should see the following structure in your directory:\n\nYou might also see a public directory if you are running the default zola build/serve commands which contains some output for the site: the full site for zola build and only the static assets for zola serve. This folder will be deleted/created automatically by zola serve.\nHere's a high-level overview of each of these directories and config.toml.\n🔗config.toml\nA mandatory Zola configuration file in TOML format.\nThis file is explained in detail in the configuration documentation.\n🔗content\nContains all your markup content (mostly .md files).\nEach child directory of the content directory represents a section\nthat contains pages (your .md files).\nTo learn more, read the content overview page.\n🔗sass\nContains the Sass files to be compiled. Non-Sass files will be ignored.\nThe directory structure of the sass folder will be preserved when copying over the compiled files; for example, a file at\nsass/something/site.scss will be compiled to public/something/site.css.\n🔗static\nContains any kind of file. All the files/directories in the static directory will be copied as-is to the output directory.\nIf your static files are large, you can configure Zola to hard link them\ninstead of copying them by setting hard_link_static = true in the config file.\n🔗templates\nContains all the Tera templates that will be used to render your site.\nHave a look at the templates documentation to learn more about default templates\nand available variables.\n🔗themes\nContains themes that can be used for your site. If you are not planning to use themes, leave this directory empty.\nIf you want to learn about themes, see the themes documentation.\n","id":"https://www.getzola.org/documentation/getting-started/directory-structure/","title":"Directory structure"},"https://www.getzola.org/documentation/getting-started/installation/":{"body":"Zola provides pre-built binaries for MacOS, Linux and Windows on the\nGitHub release page.\n🔗macOS\nZola is available on Brew:\n\nZola is also available on MacPorts:\n\n🔗Arch Linux\nZola is available in the official Arch Linux repositories.\n\n🔗Alpine Linux\nZola is available in the official Alpine Linux community repository since Alpine v3.13.\nSee this section of the Alpine Wiki explaining how to enable the community repository if necessary: https://wiki.alpinelinux.org/wiki/Repositories#Enabling_the_community_repository\n\n🔗Debian\nZola is available over at barnumbirr/zola-debian.\nGrab the latest .deb for your Debian version then simply run:\n\n🔗Fedora\nOn Fedora, Zola is available via COPR.\n\n🔗Gentoo\nZola is available via GURU.\n\n🔗Void Linux\nZola is available in the official Void Linux repositories.\n\n🔗FreeBSD\nZola is available in the official package repository.\n\n🔗OpenBSD\nZola is available in the official package repository.\n\n🔗openSUSE\n🔗openSUSE Tumbleweed\nZola is available in the official openSUSE Tumbleweed main OSS repository.\n\n🔗openSUSE Leap\nZola is available in the official experimental utilities repository.\n\n🔗pkgsrc\nZola is available in the official package repository, with pkgin.\n\n🔗Snapcraft\nZola is available on snapcraft:\n\n🔗Flatpak\nZola is available as a flatpak on flathub:\n\nTo use zola:\n\nTo avoid having to type this every time, an alias can be created in ~/.bashrc:\n\n🔗NixOS / Nixpkgs\nZola is available\nin the nixpkgs repository. If you're using NixOS, you can install Zola\nby adding the following to /etc/nixos/configuration.nix:\n\nIf you're using Nix as a package manager in another OS, you can install it using:\n\n🔗Via Github Actions\nZola can be installed in a GHA workflow with taiki-e/install-action.\nSimply add it in your CI config, for example:\n\nSee the action repo for docs and more examples.\n🔗Docker\nZola is available on the GitHub registry.\nIt has no latest tag, you will need to specify a specific version to pull.\n\n🔗Build\n\n🔗Serve\n\nYou can now browse http://localhost:8080.\n\nTo enable live browser reload, you may have to bind to port 1024. Zola searches for an open\nport between 1024 and 9000 for live reload. The new docker command would be\n$ docker run -u \"$(id -u):$(id -g)\" -v $PWD:/app --workdir /app -p 8080:8080 -p 1024:1024 ghcr.io/getzola/zola:v0.19.1 serve --interface 0.0.0.0 --port 8080 --base-url localhost\n\n🔗Multi-stage build\nSince there is no shell in the Zola docker image, if you want to use it from inside a Dockerfile, you have to use the\nexec form of RUN, like:\n\n🔗Windows\nZola could be installed using official Winget command:\n\nAlso it is available on Scoop:\n\nand Chocolatey:\n\nZola does not work in PowerShell ISE.\n🔗From source\nTo build Zola from source, you will need to have Git, Rust and Cargo\ninstalled.\nFrom a terminal, you can now run the following commands:\n\nIf you encountered compilation errors like error: failed to run custom build command for 'ring v0.16.20', you can try the command below instead:\n\nThe binary will be available in the target/release directory. You can move it in your $PATH to have the\nzola command available globally:\n\nor in a directory if you want for example to have the binary in the same repository as the site.\n","id":"https://www.getzola.org/documentation/getting-started/installation/","title":"Installation"},"https://www.getzola.org/documentation/getting-started/overview/":{"body":"🔗Zola at a Glance\nZola is a static site generator (SSG), similar to Hugo, Pelican, and Jekyll (for a comprehensive list of SSGs, please see Jamstack). It is written in Rust and uses the Tera template engine, which is similar to Jinja2, Django templates, Liquid, and Twig.\nContent is written in CommonMark, a strongly defined, highly compatible specification of Markdown. Zola uses pulldown-cmark to parse markdown files. The goal of this library is 100% compliance with the CommonMark spec. It adds a few additional features such as parsing footnotes, Github flavored tables, Github flavored task lists and strikethrough.\nSSGs use dynamic templates to transform content into static HTML pages. Static sites are thus very fast and require no databases, making them easy to host. A comparison between static and dynamic sites, such as WordPress, Drupal, and Django, can be found here.\nTo get a taste of Zola, please see the quick overview below.\n🔗First Steps with Zola\nUnlike some SSGs, Zola makes no assumptions regarding the structure of your site. In this overview, we'll be making a simple blog site.\n🔗Initialize Site\n\nThis overview is based on Zola 0.19.1.\n\nPlease see the detailed installation instructions for your platform. With Zola installed, let's initialize our site:\n\nYou will be asked a few questions.\n\nFor our blog, let's accept the default values (i.e., press Enter for each question). We now have a myblog directory with the following structure:\n\nFor reference, by the end of this overview, our myblog directory will have the following structure:\n\nChange directory into the newly-created myblog directory.\n🔗Templates\nWe'll first create some templates to describe the structure of our site.\n🔗Home Page Template\nLet's make a template for a home page. Create templates/base.html with the following content. This step will make more sense as we move through this overview.\n\nNow, let's create templates/index.html with the following content.\n\nThis tells Zola that index.html extends our base.html file and replaces the block called \"content\" with the text between the {% block content %} and {% endblock content %} tags.\n🔗Blog Template\nTo create a template for a page that lists all blog posts, create templates/blog.html with the following content.\n\nAs done by index.html, blog.html extends base.html, but in this template we want to list the blog posts. Here we also see expressions such as {{ section.[...] }} and {{ page.[...] }} which will be replaced with values from our content when zola combines content with this template to render a page. In the list below the header, we loop through all the pages in our section (blog directory; more on this when we create content) and output each page title and URL using {{ page.title }} and {{ page.permalink | safe }}, respectively. We use the | safe filter because the permalink doesn't need to be HTML escaped (escaping would cause / to render as &#x2F;).\n🔗Blog Post Template\nWe have templates describing our home page and a page that lists all blog posts. Let's now create a template for an individual blog post. Create templates/blog-page.html with the following content.\n\n\nNote the | safe filter for {{ page.content }}.\n\n🔗Zola Live Reloading\nNow that we've outlined our site's structure, let's start the Zola development server in the myblog directory.\n\nIf you point your web browser to http://127.0.0.1:1111, you will see a message saying, \"This is my blog made with Zola.\"\nIf you go to http://127.0.0.1:1111/blog/, you will currently get a 404 which we will fix next.\n🔗Content\nWe'll now create some content that Zola will use to generate site pages based on our templates.\n🔗Sections\nWe'll start by creating content/blog/_index.md. This file tells Zola that blog is a section, which is how content is categorized in Zola. In the _index.md file, we'll set the following variables in TOML format:\n\n\nNote that although no variables are mandatory, the opening and closing +++ are required.\n\n\nsort_by = \"date\" tells Zola to use the date to order our section pages (more on pages below). \ntemplate = \"blog.html\" tells Zola to use templates/blog.html as the template for listing the Markdown files in this section. \npage_template = \"blog-page.html\" tells Zola to use templates/blog-page.html as the template for individual Markdown files. \n\nFor a full list of section variables, please see the section documentation.\nThe value of our title variable here is available to templates such as blog.html as {{ section.title }}.\nIf you now go to http://127.0.0.1:1111/blog/, you will see an empty list of posts.\n🔗Markdown\nWe'll now create some blog posts. Create content/blog/first.md with the following content.\n\nThe title and date will be available to us in the blog-page.html template as {{ page.title }} and {{ page.date }}, respectively. All text below the closing +++ will be available to templates as {{ page.content }}.\nIf you now go back to our blog list page at http://127.0.0.1:1111/blog/, you should see our lonely post. Let's add another. Create content/blog/second.md with the contents:\n\nBack at http://127.0.0.1:1111/blog/, our second post shows up on top of the list because it's newer than the first post and we had set sort_by = \"date\" in our _index.md file.\nAs a final step, let's modify templates/index.html (our home page) to link to our list of blog posts:\n\nThis has been a quick overview of Zola. You can now dive into the rest of the documentation.\n","id":"https://www.getzola.org/documentation/getting-started/overview/","title":"Overview"},"https://www.getzola.org/documentation/templates/404/":{"body":"Zola will look for a 404.html file in the templates directory or\nuse the built-in one. The default template is very basic and gets config in its context.\n","id":"https://www.getzola.org/documentation/templates/404/","title":"404 error page"},"https://www.getzola.org/documentation/templates/archive/":{"body":"Zola doesn't have a built-in way to display an archive page (a page showing\nall post titles ordered by year). However, this can be accomplished directly in the templates:\n\nThis snippet assumes that posts are sorted by date and that you want to display the archive\nin descending order. If you want to show articles in ascending order, you need to further\nprocess the list of pages:\n\n","id":"https://www.getzola.org/documentation/templates/archive/","title":"Archive"},"https://www.getzola.org/documentation/templates/feeds/":{"body":"If the site config.toml file sets generate_feeds = true, then Zola will\ngenerate feed files for the site, named according to the feed_filenames\nsetting in config.toml, which defaults to atom.xml. Given the feed filename\natom.xml, the generated file will live at base_url/atom.xml, based upon the\natom.xml file in the templates directory, or the built-in Atom template.\nfeed_filenames can be set to any value, but built-in templates are provided\nfor atom.xml (in the preferred Atom 1.0 format), and rss.xml (in the RSS\n2.0 format). If you choose a different filename (e.g. feed.xml), you will\nneed to provide a template yourself.\nIn case you want to extend, or modify, the built-in templates, you can get a\ncopy from the source code here\nand place it in the templates/ directory with the appropriate name. You can\ncheck the documentation for the specifications for Atom 1.0 and RSS 2.0 in\nW3C Feed Validation Service.\nOnly pages with a date will be available.\nThe author in the feed is set as\n\nThe first author in authors set in the \nfront matter\nIf that is not present it falls back to the author in the \nConfiguration\nIf that is also not preset it is set to Unknown.\n\nNote that atom.xml and rss.xml require different formats for specifying the\nauthor. According to RFC 4287 atom.xml requires the author's\nname, for example \"John Doe\". While according to the \nRSS 2.0 Specification the email address is required, and the name\noptionally included, for example \"lawyer@boyer.net\" or \n\"lawyer@boyer.net (Lawyer Boyer)\".\nThe feed template gets five variables:\n\nconfig: the site config\nfeed_url: the full url to that specific feed\nlast_updated: the most recent updated or date field of any post\npages: see page variables\nfor a detailed description of what this contains\nlang: the language code that applies to all of the pages in the feed,\nif the site is multilingual, or config.default_language if it is not\n\nFeeds for taxonomy terms get two more variables, using types from the\ntaxonomies templates:\n\ntaxonomy: of type TaxonomyConfig\nterm: of type TaxonomyTerm, but without term.pages (use pages instead)\n\nYou can also enable separate feeds for each section by setting the\ngenerate_feeds variable to true in the respective section's front matter.\nSection feeds will use the same template as indicated in the config.toml file.\nSection feeds, in addition to the five feed template variables, get the\nsection variable from the section\ntemplate.\nEnable feed autodiscovery allows feed readers and browsers to notify user about a RSS or Atom feed available on your web site. So it is easier for user to subscribe.\nAs an example this is how it looks like using Firefox Livemarks addon.\n\nYou can enable posts autodiscovery modifying your blog base.html template adding the following code in between the <head> tags.\n\nYou can as well use an Atom feed using type=\"application/atom+xml\" and path=\"atom.xml\".\nAll pages on your site will refer to your post feed.\nIn order to enable the tag feeds as well, you can overload the block rss using the following code in your tags/single.html template.\n\nEach tag page will refer to it's dedicated feed.\n","id":"https://www.getzola.org/documentation/templates/feeds/","title":"Feeds"},"https://www.getzola.org/documentation/templates/overview/":{"body":"Zola uses the Tera template engine, which is very similar\nto Jinja2, Liquid and Twig.\nAs this documentation will only talk about how templates work in Zola, please read\nthe Tera template documentation if you want\nto learn more about it first.\nAll templates live in the templates directory. If you are not sure what variables are available in a template,\nyou can place {{ __tera_context }} in the template to print the whole context.\nA few variables are available on all templates except feeds and the sitemap:\n\nconfig: the language aware configuration\ncurrent_path: the path (full URL without base_url) of the current page, always starting with a /\ncurrent_url: the full URL for the current page\nlang: the language for the current page\n\nConfig variables can be accessed like config.variable, in HTML for example with {{ config.base_url }}.\nThe 404 template does not get current_path and current_url (this information cannot be determined).\nOn top of the config attributes mentioned above, it also gets config.mode which is whether it's run in build, serve or check.\n🔗Standard templates\nBy default, Zola will look for three templates: index.html, which is applied\nto the site homepage; section.html, which is applied to all sections (any HTML\npage generated by creating a directory within your content directory); and\npage.html, which is applied to all pages (any HTML page generated by creating an\n.md file within your content directory).\nThe homepage is always a section (regardless of whether it contains other pages).\nThus, the index.html and section.html templates both have access to the\nsection variables. The page.html template has access to the page variables.\nThe page and section variables are described in more detail in the next section.\n🔗Built-in templates\nZola comes with four built-in templates: atom.xml and rss.xml (described in\nFeeds), sitemap.xml (described in Sitemap),\nand robots.txt (described in Robots.txt).\nAdditionally, themes can add their own templates, which will be applied if not\noverridden. You can override built-in or theme templates by creating a template with\nthe same name in the correct path. For example, you can override the Atom template by\ncreating a templates/atom.xml file.\n🔗Custom templates\nIn addition to the standard index.html, section.html and page.html templates,\nyou may also create custom templates by creating an .html file in the templates\ndirectory. These custom templates will not be used by default. Instead, a 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:\n\nCustom templates are not required to live at the root of your templates directory.\nFor example, product_pages/with_pictures.html is a valid template.\n🔗Built-in filters\nZola adds a few filters in addition to those already present\nin Tera.\n🔗markdown\nConverts the given variable to HTML using Markdown. There are a few differences compared to page/section Markdown rendering:\n\nshortcodes evaluated by this filter cannot access the current rendering context: config will be available, but accessing section or page (among others) from a shortcode called within the markdown filter will prevent your site from building (see this discussion)\nlang in shortcodes will always be equal to the site's config.default_language (or en otherwise) ; it should not be a problem, but if it is in most cases, but if you need to use language-aware shortcodes in this filter, please refer to the Shortcode context section of the docs.\n\nBy default, the filter will wrap all text in a paragraph. To disable this behaviour, you can\npass true to the inline argument:\n\nYou do not need to use this filter with page.content or section.content, the content is already rendered.\n🔗base64_encode\nEncode the variable to base64.\n🔗base64_decode\nDecode the variable from base64.\n🔗regex_replace\nReplace text via regular expressions.\n\n🔗num_format\nFormat a number into its string representation.\n\nBy default this will format the number using the locale set by config.default_language in config.toml.\nTo format a number for a specific locale, you can use the locale argument and pass the name of the desired locale:\n\n🔗Built-in functions\nZola adds a few Tera functions to those built-in in Tera\nto make it easier to develop complex sites.\n🔗File searching logic\nFor functions that are searching for a file on disk other than through get_page and get_section, the following\nlogic applies.\n\nThe base directory is the Zola root directory, where the config.toml is\nFor the given path: if it starts with @/, replace that with content/ instead and trim any leading /\nSearch in the following locations in this order, returning the first where the file exists:\n\n$base_directory + $path\n$base_directory + \"static/\" + $path\n$base_directory + \"content/\" + $path\n$base_directory + $output_path + $path\n$base_directory + \"themes\" + $theme + \"static/\" + $path (only if using a theme)\n\n\n\nIn practice this means that @/some/image.jpg, /content/some/image.jpg and content/some/image.jpg will point to the\nsame thing.\nIt will error if the path is outside the Zola directory.\n🔗get_page\nTakes a path to an .md file and returns the associated page. The base path is the content directory.\n\nIf selecting a specific language for the page, you can pass lang with the language code to the function:\n\n🔗get_section\nTakes a path to an _index.md file and returns the associated section. The base path is the content directory.\n\nIf you only need the metadata of the section, you can pass metadata_only=true to the function:\n\nIf selecting a specific language for the section, you can pass lang with the language code to the function:\n\n🔗get_taxonomy_url\nGets the permalink for the taxonomy item found.\n\nname will almost always come from a variable but in case you want to do it manually,\nthe value should be the same as the one in the front matter, not the slugified version.\nlang (optional) default to config.default_language in config.toml\nrequired (optional) if a taxonomy is defined but there isn't any content that uses it then throw an error. Defaults to true.\n🔗get_taxonomy\nGets the whole taxonomy of a specific kind.\n\nThe type of the output is:\n\nlang (optional) default to config.default_language in config.toml\nrequired (optional) if a taxonomy is defined but there isn't any content that uses it then throw an error. Defaults to true.\nSee the Taxonomies documentation for a full documentation of those types.\n🔗get_taxonomy_term\nGets a single term from a taxonomy of a specific kind.\n\nThe type of the output is a single TaxonomyTerm item.\nlang (optional) default to config.default_language in config.toml\ninclude_pages (optional) default to true. If false, the pages item in the TaxonomyTerm will be empty, regardless of what pages may actually exist for this term. page_count will correctly reflect the number of pages for this term in both cases.\nrequired (optional) if a taxonomy or term is not found`.\nSee the Taxonomies documentation for a full documentation of those types.\n🔗get_url\nGets the permalink for the given path.\nIf the path starts with @/, it will be treated as an internal link to a Markdown file, \nstarting from the root content directory as well as validated.\n\nIt accepts an optional parameter lang in order to compute a language-aware URL in multilingual websites. Assuming config.base_url is \"http://example.com\", the following snippet will:\n\nreturn \"http://example.com/blog/\" if config.default_language is \"en\"\nreturn \"http://example.com/en/blog/\" if config.default_language is not \"en\" and \"en\" appears in config.languages\nfail otherwise, with the error message \"'en' is not an authorized language (check config.languages).\"\n\n\nThis can also be used to get the permalink for a static file, for example if\nyou want to link to the file that is located at static/css/app.css:\n\nBy default, the link will not have a trailing slash. You can force one by passing trailing_slash=true to the get_url function.\nAn example is:\n\nIn the case of a non-internal link, you can also add a cachebust of the format ?h=<sha256> at the end of a URL\nby passing cachebust=true to the get_url function. In this case, the path will need to resolve to an actual file. \nSee File Searching Logic for details.\n🔗get_hash\nReturns the hash digest (SHA-256, SHA-384 or SHA-512) of a file or a string literal.\nIt can take the following arguments:\n\npath: mandatory, see File Searching Logic for details\nor literal: mandatory, the string value to be hashed\nsha_type: optional, one of 256, 384 or 512, defaults to 384\nbase64: optional, true or false, defaults to true. Whether to encode the hash as base64\n\nEither path or literal must be given.\n\nThe function can also output a base64-encoded hash value when its base64\nparameter is set to true. This can be used to implement subresource\nintegrity.\n\nDo note that subresource integrity is typically used when using external scripts, which get_hash does not support.\n🔗get_image_metadata\nGets metadata for an image. This supports common formats like JPEG, PNG, WebP, BMP, GIF as well as SVG.\nIt can take the following arguments:\n\npath: mandatory, see File Searching Logic for details\nallow_missing: optional, true or false, defaults to false. Whether a missing file should raise an error or not.\n\nThe method returns a map containing width, height, format, and mime. The format returned is the most common file extension for the file format, which may not match the one used for the image.\n\n🔗load_data\nLoads data from a file, URL, or string literal. Supported file types include toml, json, csv, bibtex, yaml/yml, \nand xml and only supports UTF-8 encoding.\nAny other file type will be loaded as plain text.\nThe path argument specifies the path to a local data file, according to the File Searching Logic.\n\nAlternatively, the url argument specifies the location of a remote URL to load.\n\nAlternatively, the literal argument specifies an object literal. Note: if the format argument is not specified, then plain text will be what is assumed.\n\nNote: the required parameter has no effect when used in combination with the literal argument.\nThe optional required boolean argument can be set to false so that missing data (HTTP error or local file not found) does not produce an error, but returns a null value instead. However, permission issues with a local file and invalid data that could not be parsed to the requested data format will still produce an error even with required=false.\nThe snippet below outputs the HTML from a Wikipedia page, or \"No data found\" if the page was not reachable, or did not return a successful HTTP code:\n\nThe optional format argument allows you to specify and override which data type is contained within the specified file or URL.\nValid entries are toml, json, csv, bibtex, yaml, xml or plain. If the format argument isn't specified, then the \npath extension is used. In the case of a literal, plain is assumed if format is unspecified.\n\nUse the plain format for when your file has a supported extension but you want to load it as plain text.\nFor toml, json, yaml and xml, the data is loaded into a structure matching the original data file;\nhowever, for csv there is no native notion of such a structure. Instead, the data is separated\ninto a data structure containing headers and records. See the example below to see\nhow this works.\nIn the template:\n\nIn the content/blog/story/data.csv file:\n\nThe equivalent json value of the parsed data would be stored in the data variable in the\ntemplate:\n\nThe bibtex format loads data into a structure matching the format used by the\nnom-bibtex crate. The following is an example of data\nin bibtex format:\n\nThe following is the json-equivalent format of the produced bibtex data structure:\n\nFinally, the bibtex data can be accessed from the template as follows:\n\n🔗Remote content\nInstead of using a file, you can load data from a remote URL. This can be done by specifying a url parameter\nto load_data rather than path.\n\nBy default, the response body will be returned with no parsing. This can be changed by using the format argument\nas below.\n\nWhen no other parameters are specified the URL will always be retrieved using a HTTP GET request.\nUsing the parameter method, since version 0.14.0, you can also choose to retrieve the URL using a POST request.\nWhen using method=\"POST\" you can also use the parameters body and content_type.\nThe parameter body is the actual contents sent in the POST request.\nThe parameter content_type should be the mimetype of the body.\nThis example will make a POST request to the kroki service to generate a SVG.\n\nIf you need additional handling for the HTTP headers, you can use the headers parameter.\nYou might need this parameter when the resource requires authentication or require passing additional\nparameters via special headers.\nPlease note that the headers will be appended to the default headers set by Zola itself instead of replacing them.\nThis example will make a POST request to the GitHub markdown rendering service.\n\nThe following example shows how to send a GraphQL query to GitHub (requires authentication).\nIf you want to try this example on your own machine, you need to provide a GitHub PAT (Personal Access Token),\nyou can acquire the access token at this link: https://github.com/settings/tokens and then set GITHUB_TOKEN\nenvironment variable to the access token you have obtained.\n\nIn case you need to specify multiple headers with the same name, you can specify them like this:\n\nWhich is equivalent to two Accept headers with application/json and text/html.\nIf it doesn't work, you can instead specify the headers multiple times to achieve a similar effect:\n\n🔗Data caching\nData file loading and remote requests are cached in memory during the build, so multiple requests aren't made\nto the same endpoint.\nURLs are cached based on the URL, and data files are cached based on the file modified time.\nThe format is also taken into account when caching, so a request will be sent twice if it's loaded with two\ndifferent formats.\n🔗trans\nGets the translation of the given key, for the default_language, the language given or the active language:\n\n🔗resize_image\nResizes an image file.\nPlease refer to Content / Image Processing for complete documentation.\n","id":"https://www.getzola.org/documentation/templates/overview/","title":"Overview"},"https://www.getzola.org/documentation/templates/pages-sections/":{"body":"Templates for pages and sections are very similar.\n🔗Page variables\nZola will try to load the templates/page.html template, the page.html template of the theme if one is used\nor render the built-in template (a blank page).\nWhichever template you decide to render, you will get a page variable in your template\nwith the following fields:\n\n🔗Section variables\nBy default, Zola will try to load templates/index.html for content/_index.md\nand templates/section.html for other _index.md files. If there isn't\none, it will render the built-in template (a blank page).\nWhichever template you decide to render, you will get a section variable in your template\nwith the following fields:\n\n🔗Table of contents\nBoth page and section templates have a toc variable that corresponds to an array of Header.\nA Header has the following fields:\n\n🔗Translated content\nBoth pages and sections have a translations field that corresponds to an array of TranslatedContent. If your\nsite is not using multiple languages, this will always be an empty array.\nTranslatedContent has the following fields:\n\n","id":"https://www.getzola.org/documentation/templates/pages-sections/","title":"Sections and Pages"},"https://www.getzola.org/documentation/templates/pagination/":{"body":"Two things can get paginated: a section and a taxonomy term.\nBoth kinds get a paginator variable of the Pager type, on top of the common variables mentioned in the\noverview page:\n\nThe variable will not be defined if paginate_by is not set to a positive number.\nA pager is a page of the pagination; if you have 100 pages and paginate_by is set to 10, you will have 10 pagers each\ncontaining 10 pages.\n🔗Section\nA paginated section gets the same section variable as a normal\nsection page\nminus its pages. The pages are instead in paginator.pages.\n🔗Taxonomy term\nA paginated taxonomy gets two variables aside from the paginator variable:\n\na taxonomy variable of type TaxonomyConfig\na term variable of type TaxonomyTerm.\n\nSee the taxonomies page for a detailed version of the types.\n🔗Example\nHere is an example from a theme on how to use pagination on a page (index.html in this case):\n\n","id":"https://www.getzola.org/documentation/templates/pagination/","title":"Pagination"},"https://www.getzola.org/documentation/templates/robots/":{"body":"Zola will look for a robots.txt file in the templates directory or\nuse the built-in one.\nRobots.txt is the simplest of all templates: it only gets config\nand the default is what most sites want:\n\n","id":"https://www.getzola.org/documentation/templates/robots/","title":"Robots.txt"},"https://www.getzola.org/documentation/templates/sitemap/":{"body":"Zola will look for a sitemap.xml file in the templates directory or\nuse the built-in one.\nIf your site has more than 30 000 pages, it will automatically split\nthe links into multiple sitemaps, as recommended by Google:\n\nAll formats limit a single sitemap to 50MB (uncompressed) and 50,000 URLs. \nIf you have a larger file or more URLs, you will have to break your list into multiple sitemaps. \nYou can optionally create a sitemap index file (a file that points to a list of sitemaps) and submit\nthat single index file to Google.\n\nIn such a case, Zola will use a template called split_sitemap_index.xml to render the index sitemap.\nThe sitemap.xml template gets a single variable:\n\nentries: all pages of the site, as a list of SitemapEntry\n\nA SitemapEntry has the following fields:\n\nThe split_sitemap_index.xml also gets a single variable:\n\nsitemaps: a list of permalinks to the sitemaps\n\n","id":"https://www.getzola.org/documentation/templates/sitemap/","title":"Sitemap"},"https://www.getzola.org/documentation/templates/taxonomies/":{"body":"Zola will look up the following, taxon-specific files in the templates directory:\n\n$TAXONOMY_NAME/single.html\n$TAXONOMY_NAME/list.html\n\nif they are not found, it will attempt to fall back on the following generic template files:\n\ntaxonomy_single.html\ntaxonomy_list.html\n\nThe taxonomy templates are required only if at least one taxonomy exists with render set to true.\nFirst, TaxonomyTerm has the following fields:\n\nand TaxonomyConfig has the following fields:\n\n🔗Taxonomy list (list.html)\nThis template is never paginated and therefore gets the following variables in all cases.\n\n🔗Single term (single.html)\n\nA paginated taxonomy term will also get a paginator variable; see the\npagination page for more details.\n","id":"https://www.getzola.org/documentation/templates/taxonomies/","title":"Taxonomies"},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"body":"Creating a theme is exactly like creating a normal site with Zola, except you\nwill want to use many Tera blocks to\nallow users to easily modify it.\n🔗Getting started\nAs mentioned, a theme is just like any site; start by running zola init MY_THEME_NAME.\nThe only thing needed to turn that site into a theme is to add a theme.toml configuration file with the\nfollowing fields:\n\nA simple theme you can use as an example is Hyde.\n🔗Working on a theme\nAs a theme is just a site, you can simply use zola serve and make changes to your\ntheme, with live reload working as expected.\nMake sure to commit every directory (including content) in order for other people\nto be able to build the theme from your repository.\n🔗Submitting a theme to the gallery\nIf you want your theme to be featured in the themes section\nof this site, make sure that the theme meets the following three requirements:\n\nhave a screenshot.png of the theme in action with a max size of around 2000x1000\nhave a thorough README.md explaining how to use the theme and any other information\nof importance\nbe of reasonably high quality\n\nWhen your theme is ready, you can submit it to the themes repository\nby following the process in the README.\n","id":"https://www.getzola.org/documentation/themes/creating-a-theme/","title":"Creating a theme"},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"body":"When your site uses a theme, you can replace parts of it in your site's templates folder. For any given theme template, you can either override a single block in it, or replace the whole template. If a site template and a theme template collide, the site template will be given priority. Whether a theme template collides or not, theme templates remain accessible from any template within theme_name/templates/.\n🔗Replacing a template\nWhen your site uses a theme, the generated structure follows the theme's structure whenever possible, i.e. there are no user defined templates with the same name and relative path as the theme's; for example: with two files templates/page.html and themes/theme_name/templates/page.html, the site template is the one that will be used. Such a conflict results in the theme's template being ignored in favor of the template defined by the user.\n🔗Overriding a block\nIf you don't want to replace a whole template, but override parts of it, you can extend the template and redefine some specific blocks. For example, if you want to override the title block in your theme's page.html, you can create a page.html file in your site templates with the following content:\n\nIf you extend page.html and not theme_name/templates/page.html specifically, it will extend the site's page template if it exists, and the theme's page template otherwise. This makes it possible to override your theme's base template(s) from your site templates, as long as the theme templates do not hardcode the theme name in template paths. For instance, children templates in the theme should use {% extends 'index.html' %}, not {% extends 'theme_name/templates/index.html' %}.\n","id":"https://www.getzola.org/documentation/themes/extending-a-theme/","title":"Customizing a theme"},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"body":"🔗Installing a theme\nThe easiest way to install a theme is to clone its repository in the themes\ndirectory:\n\nCloning the repository using Git or another VCS will allow you to easily\nupdate. Alternatively, you can download the files manually and place\nthem in a folder.\nYou can find a list of themes here.\n🔗Using a theme\nNow that you have the theme in your themes directory, you need to tell\nZola to use it by setting the theme variable in the\nconfiguration file. The theme\nname has to be the name of the directory you cloned the theme in.\nFor example, if you cloned a theme in themes/simple-blog, the theme name to use\nin the configuration file is simple-blog. Also make sure to place the variable in the top level of the \n.toml hierarchy and not after a dict like [extra] or [markdown].\nSome themes require additional configuration before they can work properly. Be sure to follow the instructions found on your chosen theme's documentation to properly configure the theme. \n🔗Customizing a theme\nAny file from the theme can be overridden by creating a file with the same path and name in your templates or static\ndirectory. Here are a few examples of that, assuming that the theme name is simple-blog:\n\nYou can also choose to only override parts of a page if a theme defines some blocks by extending it. If we wanted\nto only change a single block from the post.html page in the example above, we could do the following:\n\nMost themes will also provide some variables that are meant to be overridden. This happens in the extra section\nof the configuration file.\nLet's say a theme uses a show_twitter variable and sets it to false by default. If you want to set it to true,\nyou can update your config.toml like so:\n\nYou can modify files directly in the themes directory but this will make updating the theme harder and live reload\nwon't work with these files.\n","id":"https://www.getzola.org/documentation/themes/installing-and-using-themes/","title":"Installing & using themes"},"https://www.getzola.org/documentation/themes/overview/":{"body":"Themes are collections of layouts and styles used to facilitate the creation and management of Zola projects. As such, themes are Zola projects which provide their own templates, content and even static assets. \nZola has built-in support for themes which makes it easy to customise and update them. \nAll themes can use the full power of Zola, from shortcodes to Sass compilation.\nA list of themes is available here.\n","id":"https://www.getzola.org/documentation/themes/overview/","title":"Overview"},"https://www.getzola.org/themes/":{"body":"","id":"https://www.getzola.org/themes/","title":""},"https://www.getzola.org/themes/abridge/":{"body":"\n\nAbridge Zola Theme\nA fast, lightweight, and modern Zola theme utilizing abridge.css (a class-light semantic HTML CSS Framework). Perfect Lighthouse, YellowLabTools, and Observatory scores. Here is a Zola Themes Benchmarks Page.\n\nMaintenance of this project is made possible by all the contributors and sponsors. If you'd like to sponsor this project and have your avatar or company logo appear below click here. 💖\n\n\nView Abridge demo\nView Abridge.css demo [abridge.css framework]\nThe Abridge.css demo is simply using Abridge theme as a submodule: config.toml, sass/abridge.scss\n\nFeatures\n\n\nPerfect Lighthouse, YellowLabTools, and Observatory scores.\n\nPWA support (Progressive Web Application).\n\nAll JavaScript can be fully disabled.\n\nDark, Light, Auto, and Switcher themes. (colors can be customized, css variables)\n\nCode syntax highlighting. (colors can be customized, css variables)\n\nNumbered code blocks with line highlighting.\n\nEntirely Offline Site by using the PWA or by setting offline = true in config.toml (full search support).\n\nMulti-language support.\n\nSearch support. (elasticlunr, pagefind, tinysearch)\n\nSearch Suggestions navigation keys, / focus, arrow move, enter select, escape close.\n\nSearch Results Page, type search query then hit Enter Key or click the search button icon.\n\nSEO support. (Search Engine Optimization)\n\nPagination with numbered paginator on index.\n\nTitle Based Previous and Next Article links at bottom of Article.\n\nTable of Contents in page Index (Optional, clickable links)\n\nRecent Posts Block. (Optional)\n\nBack to Top button. (uses css only)\n\nCode Blocks copy button.\n\nEmail link in footer obfuscation. (anti-spam)\n\nKaTeX support.\n\nArchive page.\n\nTags.\n\nCategories. (similar to Tags, disabled/commented out by default)\n\nSocial icon links in footer.\n\nResponsive design. (mobile first)\n\nVideo Shortcodes: Youtube, Vimeo, Streamable.\n\nMedia Shortcodes: video, img, imgswap, image, gif, audio.\n\nOther Shortcodes: showdata, katex.\n\nComplete Documentation is available here\nQuick Start\nThis theme requires version 0.19.1 or later of Zola\n\nInstallation\nThe Quick Start shows how to run the theme directly. Next we will use abridge as a theme to a NEW site.\n1: Create a new zola site\n\n2: Install Abridge\nAdd the theme as a git submodule:\n\nOr clone the theme into your themes directory:\n\n3: Configuration\nCopy some files from the theme directory to your project's root directory:\n\n\nconfig.toml base configuration with all config values.\ncontent/_index.md required to set pagination.\nCOPY-TO-ROOT-SASS/abridge.scss overrides to customize Abridge variables.\nnetlify.toml settings to deploy your repo with netlfiy.\npackage_abridge.js node script to: update cache files list in PWA, minify js, bundle js\npackage.json to facilitate use of package_abridge.js\n\nUncomment the theme line in your project's root config.toml:\n\n4: Add new content\nCopy the content from the theme directory to your project or make a new post:\n\n5: Run the project\nJust run zola serve in the root path of the project:\n\nZola will start the dev web server, accessible by default at http://127.0.0.1:1111.\nSaved changes will live reload in the browser. (press ctrl+f5, or while developing set pwa=false in config.toml)\nCustomization\nFor further customization be sure to check the docs.\nSponsor\nDo you love this theme? Was it useful to you? Please leave a github star, and if you feel inclined to donate you can make a donation to me through github sponsors.\nContributing and Philosophy\nWe'd love your help! Especially with fixes to issues, or improvements to existing features.\nThe goal is for Abridge to be lightweight, fast, and to work properly even if javascript is disabled or blocked.\nThe only feature that may be considered a necessity that relies on javascript is the Search.\nLicense\nAbridge is distributed under the terms of the MIT license.\n","id":"https://www.getzola.org/themes/abridge/","title":"abridge"},"https://www.getzola.org/themes/adidoks/":{"body":"Zola Theme AdiDoks\nAdiDoks is a modern documentation theme, which is a port of the Hugo\ntheme Doks for Zola.\nDemo\nLive Preview.\nRequirements\nBefore using the theme, you need to install the Zola ≥ 0.15.0.\nQuick Start\n\nRead more from the document of the AdiDoks.\nInstallation\nJust earlier we showed you how to run the theme directly. Now we start to\ninstall the theme in an existing site step by step.\nStep 1: Create a new zola site\n\nStep 2: Install AdiDoks\nDownload this theme to your themes directory:\n\nOr install as a submodule:\n\nStep 3: Configuration\nEnable the theme in your config.toml in the site directory:\n\nOr copy the config.toml.example from the theme directory to your project's\nroot directory:\n\nStep 4: Add new content\nYou can copy the content from the theme directory to your project:\n\nYou can modify or add new posts in the content/blog, content/docs or other\ncontent directories as needed.\nStep 5: Run the project\nJust run zola serve in the root path of the project:\n\nAdiDoks will start the Zola development web server accessible by default at\nhttp://127.0.0.1:1111. Saved changes will live reload in the browser.\nCustomisation\nYou can customize your configurations, templates and content for yourself. Look\nat the config.toml, theme.toml, content files and templates files in this\nrepo for an idea.\nGlobal Configuration\nThere are some configuration options that you can customize in config.toml.\nConfiguration options before extra options\nSet the authors's taxonomies for the site.\n\nUse search function for the content.\n\nConfiguration options under the extra\nThe following options should be under the [extra] in config.toml\n\nlanguage_code - set HTML file language (default to en-US)\ntheme_color - your site's HTML color (default to #fff)\ntitle_separator - the separator to your site title, like | and - (defaults to |)\ntitle_addition - the additon content for the title of the homepage\ntimeformat - the timeformat for the blog article published date\ntimezone - the timezone for the blog article published date\nedit_page (and docs_repo, repo_branch) - whether to show the edit page in the github repo for your docs\nmath (and library) - set KaTeX or MathJax library\n[extra.open] - Open Graph + Twitter Cards for the site\n[extra.schema] - set JSON-LD for the site\n[[extra.menu.main]] - the header navigations for the site\n[[extra.menu.social]] - the social links on the header of the page\n[extra.footer] - the footer content on the left\n[[extra.footer.nav]] - the footer navigations on the right\n\nTemplates\nAll pages are extend to the base.html, and you can customize them as need.\nContent\nHomepage\nGo to the content/_index.md file to add your own homepage content.\n\n[extra] - the main content of the homepage\n[[extra.ist]] - the lists' content of the homepage\n\nSections\nEach section includes a _index.md, and you can customize it or add your new\nsection under the content folder.\nPages\nThere are mainly three types of pages in the site.\n\nblog - blog article\ndocs - documentation article\nauthors - authors page if you need to add some information for a new author\n\nReporting Issues\nWe use GitHub Issues as the official bug tracker for the AdiDoks. Please\nsearch existing issues. It’s\npossible someone has already reported the same problem.\nIf your problem or idea is not addressed yet, open a new issue.\nContributing\nWe'd love your help! Please see CONTRIBUTING.md to learn\nabout the kinds of contributions we're looking for.\nLicense\nAdiDoks is distributed under the terms of the\nMIT license.\n","id":"https://www.getzola.org/themes/adidoks/","title":"adidoks"},"https://www.getzola.org/themes/after-dark/":{"body":"after-dark\n\nContents\n\nInstallation\nOptions\n\nTop menu\nTitle\nAuthor\n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nThis theme requires your index section (content/_index.md) to be paginated to work:\n\nThe posts should therefore be in directly under the content folder.\nThe theme requires tags and categories taxonomies to be enabled in your config.toml:\n\nIf you want to paginate taxonomies pages, you will need to overwrite the templates\nas it only works for non-paginated taxonomies by default.\nOptions\nTop-menu\nSet a field in extra with a key of after_dark_menu:\n\nIf you put $BASE_URL in a url, it will automatically be replaced by the actual\nsite URL.\nTitle\nThe site title is shown on the homepage. As it might be different from the <title>\nelement that the title field in the config represents, you can set the after_dark_title\ninstead.\nAuthor\nYou can set this on a per page basis or in the config file.\nconfig.toml:\n\nIn a page (wrap this in +++):\n\nOriginal\nThis template is based on the Hugo template https://git.habd.as/comfusion/after-dark\n","id":"https://www.getzola.org/themes/after-dark/","title":"after-dark"},"https://www.getzola.org/themes/albatros/":{"body":"Albatros theme for Zola\nThis theme was made for Duniter website. It was then abstracted and turned into Albatros.\n\nInstallation\nAdd the theme as a git submodule:\n\nand enable the theme in your config.toml\ntheme = \"albatros\"\nFeatures\nIt has a lot of feature that I could not find time to document yet. Most of the available customization is in theme.toml/extra section and sass/_albatros.sass file (e.g. for colors).\nSee:\n\nhttps://duniter.fr/\nhttps://duniter.org/\n\nfor reference.\nLanding pages\nYou are encouraged to provide custom landing pages that you can write in template/custom.\nThe theme will take care of the rest (pages organised as wiki with breadcrumb).\nAuthors\nEach author must have a card in content/team folder.\nSupport\nI'll provide support on demand on Zola forum by documenting the theme step by step.\n","id":"https://www.getzola.org/themes/albatros/","title":"Albatros"},"https://www.getzola.org/themes/anatole-zola/":{"body":"Anatole Theme for Zola\nAnatole theme for Farbox ported to Zola\n\nZola Homepage | Demo with customizations\n\n\n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nAnd copy the content/about, content/archive, content/_index.md in the theme folder to your own content folder. And edit the _index.md in about folder to edit the content of your about page.\nOptions\nBasic\nAdd title, description and base_url:\n\nMode\nThough the origin theme only support light mode, we added a dark mode option here.\nYou can either \n\nset the extra.mode field in config.toml to use the dark/light mode\nor set the extra.default_mode field in config.toml to read the dark/light mode from localStorage (the key is 'mode'), and use some Javascript to control the theme each reader is using\nor do nothing, we'll use light mode by default\n\nLanguage\nCurrently, we have English, Chinese, German and Swedish translations, set the default_language if necessary:\n\nIf there are complications, you can copy this snippet to your config.toml:\n\nFeel free to create a pull request if you want to translate the theme into other languages!\nMultilingual\nThe theme will become multilingual automatically if you specify another language except default_language.\nYou'll see a language-switching button on top right.\nSections\nTags and links sections are optional.\n\n\nIf you want to enable the tags page, add\n\nTo your config.toml\n\n\nIf you want to enable the links page, add\n\nand copy content/links to your own content library. And edit the _index.md in it to modify its content.\n\n\nIf you want to add the author's name on each page, add:\n\n\n\nSidebar menu\nWe support a bunch of social links:\n\nFill in your username if you want! And the logo won't appear if you leave it empty.\nComment system\nWe currently support... \n\nValine:\n\n\n\nDisqus, note that Disqus does not work in Mainland China:\n\n\n\nUtterances:\n\n\nCustomize\nThere are several options I left in the origin templates for you to customize your site.\nMore style\nYou can create a blog.scss or something similiar in the your sass folder, add a templates.html with following content:\n\nMore social links\nYou can add more social links by adding a templates.html with some content added to more_social_link block:\n\nIf you want to use some awesome logos, FontAwesome icons are already available.\n","id":"https://www.getzola.org/themes/anatole-zola/","title":"anatole-zola"},"https://www.getzola.org/themes/andromeda/":{"body":"Andromeda Theme for Zola\n\nAndromeda is a lightweight photojournal & blog theme designed for Zola.\n\nWith built-in support for galleries and some options for customization, Andromeda is designed for photojournalism without complications. \nIndex demo:\n\nPost demo:\n\n\nInstallation\nAssuming you already have a site set up (see the Zola guide for setting up a site), \n\nCreate a themes directory in the root of your site if it does not already exist. \nClone the theme into your themes directory: \n\nDuplicate the structure of the the config.toml file found in themes/andromeda/config.toml or this repository within your own config.toml.\nSet the theme to Andromeda, by including theme = andromeda in your config.toml file.\n\nCreating pages\nTo create a new post, create a .md file within /content, with the header format:\n\nNote: The +++ are necessary.\nThe header_img field is the image shown on the homepage of the blog and in the heading of each page. It can be a remote URL or local - if local, by default this will be files stored in the static folder, or /images in the URL. \nGalleries\nGalleries can be set up by using the following template in your Markdown file:\n\nFor more or less photos, use <a href> tags. Flickr provides a good hosting option as it automatically generates thumbnails for you. \nConfiguration\nAndromeda supports custom navbar links - see config.toml for an example. You may also set a custom favicon.ico though config.toml. \nIf you wish to customize the design of the gallery, basic Javascript knowledge will be necessary. Andromeda uses nanogallery2 by default - the documentation can be found here. Customizations to the gallery design are done within the {%/* macro pagefooter() */%} block within /templates/macros.html. \nBy default, this script is divided into three sections (indicated by item==): single-image, two-image and three+ image gallery setups. \nCredits\nThe demo images used included Antelope Canyon by Anishkumar Sugumaran and Bryce Canyon by Marco Isler. \n","id":"https://www.getzola.org/themes/andromeda/","title":"Andromeda"},"https://www.getzola.org/themes/anemone/":{"body":"anemone\nIntroducing \"anemone,\" a minimalist Zola theme that prioritizes clean CSS and avoids heavy JavaScript. Enjoy a seamless user experience with lightning-fast load times. Let your content take center stage in a clutter-free, elegant design that enhances readability. Responsive and efficient, anemone brings focus to your ideas.\nYou can browse the demo website here\nI also use it on my own website.\nAnemone is a versatile Zola theme that comes with both light and dark variants. You can easily switch between the light and dark themes to suit your preferences.\n\nInstallation\nTo get started with Anemone, follow these simple steps:\n\nDownload the theme to your themes directory:\n\n\n\nEnable Anemone in your config.toml:\n\n\nRelease Notes\n02-03-2024\nThis release brings several improvements and enhancements, focusing mainly on optimizing performance and user experience. Here's a summary of the key changes:\n\n\nsuCSS Integration: The core CSS now leverages the lightweight suCSS framework made by yours truly, providing better maintainability, robustness, and scalability. With suCSS, the theme should maintain consistent appearance across different browsers.\n\n\nEnhanced Theme Toggle: The dark and light theme toggle has been revamped for more consistency. Now, the website respects the user's system-wide theme settings, ensuring a seamless experience. Additionally, the toggle retains the selected theme for future visits, offering improved usability.\n\n\nSmooth Transition and Sound Effect: Enjoy a smoother transition between the dark and light mode accompanied by a subtle sound effect. Rest assured, the added sound effect incurs minimal performance overhead, with the file size being just 1kb.\n\n\nClass Names and Shortcodes Update: Some class names and shortcodes have been modified for better organization and clarity. I apologize for any inconvenience this may cause.\n\n\nSlight change in Color Choice: Some dark mode colors have been changed for the sake of readability, still using veqev.\n\n\nOptions\nAnemone provides various options to customize your website:\nDefault Taxonomies\nTo use tags, add the following code to a page's metadata:\n\nPages List in Homepage\nEnable listing of pages in the homepage by adding the following code to config.toml:\n\nMultilanguage\nThe theme has a built-in feature that allows you to use multiple languages. For detailed instructions on how to use this feature, you can refer to the Zola Multilingual documentation. This documentation provides additional information on how to make the most out of this multilingual capability.\n\nMultilanguage-Ready Navigation Bar\nCustomize the header navigation links with the following code in the extra section of config.toml:\n\nAdd Table of Contents (TOC) to Pages\nIn a page's frontmatter, set extra.toc to true:\n\nDisplay Author Name in Blog Posts\nCustomize the display of the author's name in your blog posts by toggling the display_author variable to either true or false:\n\nWebrings\nAdd a webring with a shortcode:\n\nExtra Data\n\nSet the author in both the main config and in pages metadata.\nUse the image variable in pages to add an image to HTML <meta> tags.\nSimilarly, set favicon in the main config, and it will be used as the site icon.\nSet footer_content_license and footer_content_license_link if you wish to display content license information in the footer.\n\nDisable Twitter Card\nTwitter metatags are generated by default. To disable them, set extra.twitter_card to false in config.toml:\n\nLicense\nThe Anemone theme is available as open source under the terms of the MIT License.\n","id":"https://www.getzola.org/themes/anemone/","title":"anemone"},"https://www.getzola.org/themes/anpu/":{"body":"Anpu theme for Zola\nThis is a port of the Hugo theme Anubis for Zola.\nScreenshots\nLight modeDark mode\n\n\nUsage\nIn order to use the theme you need to clone this repository in your themes folder:\n\nThen set your theme setting in config.toml to anpu:\n\nThis theme requires both the tags and categories taxonomies.\n\nHow To Customize\nThere are two things you can customize:\n\nThe links to be included in the menu\nThe date format of the posts\n\nMenu links\nIn your config.toml under the [extra] section you need to set the anpu_menu_links list.\nExample:\n\nIf you include $BASE_URL in the url of a link it will be replaced to the base url of your site.\nDate format\nIn your config.toml under the [extra] section you need to set the anpu_date_format value.\nExample:\n\nThe formatting uses the standart date filter in Tera. The date format options you can use are listed in the chrono crate documentation.\nAttributions\nThe icons used are part of UXWing's collection.\nLicense\nSource code is available under MIT.\n","id":"https://www.getzola.org/themes/anpu/","title":"Anpu"},"https://www.getzola.org/themes/apollo/":{"body":"apollo\nModern and minimalistic blog theme powered by Zola. See a live preview here.\nNamed after the greek god of knowledge, wisdom and intellect\n\n Dark theme\n\n\n\n Light theme\n\n\nFeatures\n\n\nPagination\n\nThemes (light, dark, auto)\n\nProjects page\n\nAnalytics using GoatCounter / Umami\n\nSocial Links\n\nMathJax Rendering\n\nTaxonomies\n\nMeta Tags For Individual Pages\n\nCustom homepage\n\nComments\n\nSearch\n\nCategories\n\nInstallation\n\nDownload the theme\n\n\n\nAdd the following to the top of your config.toml\n\n\n\nCopy the example content\n\n\nConfiguration\nYou can find all the configuration options here\nReferences\nThis theme is based on archie-zola.\n","id":"https://www.getzola.org/themes/apollo/","title":"apollo"},"https://www.getzola.org/themes/archie-zola/":{"body":"archie-zola\nA zola theme forked from https://github.com/athul/archie\nDemo\nThe Main branch source code hosted on https://archie-zola.netlify.app\nScreenShot\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nor add as a git submodule:\n\nand then enable it in your config.toml:\n\nUpdate\nIf this is the first time you've checked out a repository containing this submodule, you need to initialize the submodules:\n\nIf your project contains multiple submodules, this command initializes all of them.\nThen, update all submodule:\n\nFinally, check your commit and push it.\nFeature\n\nPagination\nTags\nAuto Dark Mode(based on system theme)\nDark/Light Mode toggle\nGoogle Analytics Script\nMeta Tags For Individual Pages\nSupport Latex.\n\nin the planning stage:\n\n\nCustom CSS & JS\n\nTwitter Cards & Youtube video\n\nConfig\nCustomize <meta/> tags\nThe following TOML and YAML code will yiled two <meta/> tags, <meta property=\"og:title\" content=\"the og title\"/>, <meta property=\"og:description\" content=\"the og description\"/>.\nTOML:\n\nYAML:\n\nIf the og:title, the og:description, or the \"description\" are not set, the page's title and description will be used. That is, the following TOML code generates <meta property=\"og:title\" content=\"post title\"/>, <meta property=\"og:description\" content=\"post desc\"/>, and <meta property=\"og:description\" content=\"post desc\"/> as default values.\n\nTheme config\nCause Zola limited custom config must under the extra field, so there are some different with the origin theme:\nDemo website config.toml:\n\nLatex math formula support\nThis theme support latex math formula, by using KaTeX.\nYou can enable it by add katex_enable = true in the extra section of config.toml:\n\nAfter that, you can use latex math formula in your markdown file:\n\nYou can also use inline and block-style:\n\nContent config\nIn content/posts/_index.md. I use Zola config: transparent = true to implement the pagination\nIn Zola, you can use config in the _index.md to control pagination and sort post list:\n\nExtension\nFollow this doc to extend theme.\nContributing\nThank you very much for considering contributing to this project!\nWe appreciate any form of contribution:\n\nNew issues (feature requests, bug reports, questions, ideas, ...)\nPull requests (documentation improvements, code improvements, new features, ...)\n\n","id":"https://www.getzola.org/themes/archie-zola/","title":"archie-zola"},"https://www.getzola.org/themes/ataraxia-zola/":{"body":"Ataraxia\n\nA personal theme for Zola focused on readability that aims to be simple, beautiful, and modern. It is designed to support multiple languages and be highly customizable.\nThe theme takes visual inspiration from the Chirpy and Neumorphism themes.\nInstallation\nOpen a command terminal at your site path and run:\n\n\nConfiguration\nCopy the config_sample.toml file to your site's main path, then rename it to config.toml and edit it with your site data.\n\nYou can see the Gerson's website repository for theme setup guide.\n\nFor the site to work properly you need to create a _index.md file within the content path with the following structure:\n\nYou can add more markdown content inside this file if you need to.\nIf you want to enable the site's blog, create a _index.md file inside the content/blog path then copy the following structure inside the file:\n\nYou can display the result of your website by running:\n\nHacking\nBy default, the theme comes with all the scss styles already compiled, in such a way that the installation of Bootstrap is not necessary, in order to avoid dependencies such as Node.js in the production file.\nIf you want to edit the theme's styles, you'll need to have a Node.js interpreter and a Sass compiler installed. After that, go to the main path of the theme and execute:\n\n\n\nKeep in mind that the main branch of this repository only has the stable versions of the theme, if you want to see the development status and the unstable versions, change to the corresponding branch.\n\nCredits\nThis theme is mainly built on Zola and Bootstrap, plus it makes use of Google fonts.\nSponsoring\n\n\nLicense\nThis work is published under the MPL-2.0 license\n","id":"https://www.getzola.org/themes/ataraxia-zola/","title":"ataraxia"},"https://www.getzola.org/themes/bearblog/":{"body":"Zola ʕ•ᴥ•ʔ Bear Blog\n\n🧸 A Zola-theme based on Bear Blog.\n\nFree, no-nonsense, super-fast blogging.\n\nDemo\nThis theme has multiple demo sites, to provide examples of how to set up deployment\n\nVercel\nNetlify\nGitlab Pages\nCloudflare Pages\n\nScreenshot\n\nWhen the user's browser is running »dark mode«, the dark color scheme will be used automatically. The default is the light/white color scheme. Check out the style.html-file for the implementation.\nInstallation\nIf you already have a Zola site on your machine, you can simply add this theme via\n\nThen, adjust the config.toml as detailed below.\nFor more information, read the official setup guide of Zola.\nAlternatively, you can quickly deploy a copy of the theme site to Netlify using this button:\n\n(Note that this method makes it harder to keep up-to-date with theme updates, which might be necessary for newer versions of Zola.)\nAdjust configuration / config.toml\nPlease check out the included config.toml\nContent & structure\nMenu\nCreate an array in extra with a key of main_menu. url is passed to get_url\n\nAdding / editing content\nIndex-Page\nThe contents of the index-page may be changed by editing your content/_index.md-file.\nAdding your branding / colors / css\nAdd a custom_head.html-file to your templates/-directory. In there you may add a <style>-tag, or you may add a <link>-tag referencing your own custom.css (in case you prefer to have a separate .css-file). Check out the style.html-file to find out which CSS-styles are applied by default.\nTable of contents\nTable of contents are not rendered by default. To render them, set extra.table_of_contents.show = true in config.toml.\nThe table of contents is rendered inside a details element.\nIf you want the section to be collapsed on page load, set extra.table_of_contents.visible_on_load = false.\nThis defaults to true.\nIn addition, extra.table_of_contents.max_level can limit the maximum level of headers to show.\nTo show only h1s, set max_level = 1, to show h1s and h2s, set max_level = 2, and so on.\nBy default, max_level is set to 6, so all headers on the page are shown.\nBelow is an example of how to configure the table of contents in config.toml.\n\nIt can also be toggled on page-by-page basis. Add extra.hide_table_of_contents = true to the page's frontmatter to hide the table of contents for that specific page.\nIssues / Feedback / Contributing\nPlease use Codeberg issues and Pull Requests.\nSpecial Thanks 🎁\nA special thank you goes out to Herman, for creating the original ʕ•ᴥ•ʔ Bear Blog and Jan Raasch for creating the hugo port of the Bear Blog theme.\nLicense\nMIT License © Alan Pearce\n","id":"https://www.getzola.org/themes/bearblog/","title":"Bear"},"https://www.getzola.org/themes/blow/":{"body":"Blow\nA Zola theme built with tailwindcss\n(WIP) Example : Here\nPreview\n\nUsage\nYou should follow the official documentation about installing a Zola theme.\nI recommend adding the theme as a git submodule :\n\nEdit the theme used in your config.toml file\n\nThen edit your config.toml file to override values from the theme :\n\nYou can now run zola serve and visit : http://127.0.0.1:1111/ to see your site\nSyntax Highlighting\nBlow makes use of Zola code highlighting feature.\nIt supports setting a different color scheme depending on the user selected theme (Dark / Light)\nIn order to use it you should select the color scheme you want to use for light and dark themes in the list provided here and edit your config.toml file like this example :\n\nCustom Footer Content\nTo overwrite the default footer (copyright notice), extend the layout.html template of the theme as described in the Zola documentation by creating a layout.html with the following content in your templates directory:\n\nFeatures\n\n\nDark/Light modes (with syntax highlighting depending on selected theme)\n\nCustomizable navbar links\n\nTags and Categories taxonomies\n\nSearch functionality supporting Command + K shortcut\n\nSocial links (github, gitlab, twitter, linkedin, email) \n\nPostcss build process with cssnano (and tailwindcss tree shaking to reduce final bundle size)\n\nUglifyjs build process with minification\n\nExample script to deploy to Github Pages\n\nPagination\n\nSidemenu menu with sections links\n\nTable of content (2 levels and currently viewed part highlighted)\n\nMultilingue\n\n404\n\nMobile responsive\n\nFavicon\n\nAdsense\n\nDeployment\nThere is a section about deployment in Zola documentation but you'll find an example to deploy your site to github pages\n","id":"https://www.getzola.org/themes/blow/","title":"Blow"},"https://www.getzola.org/themes/book/":{"body":"book\nA theme based on Gitbook, to write documentation\nor books.\n\nContents\n\nInstallation\nOptions\n\nNumbered chapters\n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nUsage\nBook will generate a book from the files you place in the content directory. Your book\ncan have two levels of hierarchy: chapters and subchapters.\nEach chapter should be a section within the Gutenberg site and should have an _index.md\nfile that sets its weight front-matter variable to its chapter number. For example,\nchapter 2 should have weight = 2. Additionally, each chapter should also set the\nsort_by = \"weight\" in its front matter.\nEach subchapter should be a page and should have its weight variable set to the subchapter\nnumber. For example, subchapter 3.4 should have weight = 4.\nFinally, you should create an _index.md file and set the redirect_to front-matter variable\nto redirect to the first section of your content. For example, if your first section has the\nslug introduction, then you would set redirect_to = \"introduction\".\nOptions\nNumbered chapters\nBy default, the book theme will number the chapters and pages in the left menu.\nYou can disable that by setting the book_number_chapters in extra:\n\n","id":"https://www.getzola.org/themes/book/","title":"book"},"https://www.getzola.org/themes/boring/":{"body":"Boring\nMinimal theme for Zola, powered by\nTailwindCSS\nDemo\nhttps://boring-zola.netlify.app/\n\nSetup\nIn your zola site directory\n\n\nGet theme\n\n\n\nBuild CSS\n\n\n\nChange theme specific variables. They are listed in extra section of\nconfig.toml\n\n\nRefer Zola Docs\nfor further instructions\nLicense\nGPLv3\n","id":"https://www.getzola.org/themes/boring/","title":"boring"},"https://www.getzola.org/themes/clean-blog/":{"body":"zola-clean-blog\n\nA port of the StartBootstrap Clean Blog theme, for Zola.\nDemo\nLive Demo\nUsage\nTo use the theme, clone this repository to your themes directory.\nIt requires that you use the categories and tags taxonomies.\nThis can be done with the following additions to config.toml:\n\nFeatures\n\nPaginated Home/Categories/Tag Pages\nCustomizable Menu\nCustomizable Social Links\n\nHow To Customize\n\n\nTo replace header images, add a new image to static/img/$page-bg.jpg where $page is one of about, home, post or contact.\n\n\nTo replace the copyright field, create your own templates/index.html to extend the template and add a copyright block:\n\n\n\n\n\nTo add a new menu item, override clean_blog_menu in your config.toml. You can use $BASE_URL to reference your own site.\n\n\nTo add a new social link, override clean_blog_social in your config.toml. You can use $BASE_URL to reference your own site.\n\n\nTo add Google Analytics, you may add your script to the extrascripts block using your own index.html\n\n\n\n","id":"https://www.getzola.org/themes/clean-blog/","title":"Clean Blog"},"https://www.getzola.org/themes/codinfox-zola/":{"body":"Codinfox-Zola\n\nThis is a Zola theme inspired to Codinfox-Lanyon, a Lanyon based theme for Jekyll. See a live demo here.\nThis theme places content first by tucking away navigation in a hidden drawer.\n\nBuilt for Zola\nDeveloped on GitHub and hosted for free on GitHub Pages and Vercel\nCoded with Spacemacs\n\nThis theme supports:\n\nTheme colors: you can choose your favorite theme color (changing in _config.scss)\nChangable sidebar locations (reverse it by changing the boolean value in _config.scss)\nIntegration of FontAwesome, MathJax, Disqus and Google Analytics\nSupport for multilingual sites\nSupport for Gravatar\nand numerous improvements over original Lanyon and Codinfox-Lanyon\n\nAll the configuration variables and their meaning are inside:\n\nconfig.toml (for the zola config variables and some extra variables required by this theme),\nauthor.toml (for the personal informations to be displayed about the author of the site),\nnav.toml (for the navigation menu structure available in the site's sidebar)\n_config.scss (for the definition of some css customizations)\n\nThe options are fairly straightforward and described in comments.\nLearn more and contribute on GitHub.\nHave questions or suggestions? Feel free to open an issue on GitHub or ask me on Twitter.\nBefore you start\nGet a gravatar account and set this up with a profile image.\nAdd gravatar profile image to codinfox-zola theme\n\nlogin to gravatar.com\nclick My Profile\nclick view profile in RH sidebar beneath profile name\nclick JSON\ncopy the hash value on line 4\npaste the hash value to author.toml line 10\n\nInstall and use\nTo use this theme you can follow the instruction required by any Zola theme.\nSimply clone this repository under the themes folder of your site's main folder.\nThen, define the required extra variables in the config.toml (take it from the config.toml file of the theme), create and define the author.toml and nav.toml configuration files in the main folder of your site (the same level of the config.toml), and that's it!\nTo define your own home picture, put an image file in the static/img/ folder and set the path in the config.extra.image variable.\nNow is possible to create the content inside the content folder as usual for Zola sites.\nIf you want to have a Blog with this theme, then create a folder inside the content folder containing all the blog posts in Markdown format. Zola automatically generate a section that you can manage as a blog. See an example in the live demo.\nLicense\nOpen sourced under the MIT license.\nTODO\n\nrecaptcha for hiding email address link (https://developers.google.com/recaptcha/intro)\nhidden multilingual links in topbar for main index section pages\n\n","id":"https://www.getzola.org/themes/codinfox-zola/","title":"codinfox-zola"},"https://www.getzola.org/themes/d3c3nt/":{"body":"d3c3nt\nd3c3nt is a simple, clean, and flexible theme for personal sites, made\nby FIGBERT for the Zola static site engine. This theme is\ndeveloped mainly for use on my personal site, so new features and styles\nwill be added when I stumble onto the need to make them.\nAll in all, it's fairly... decent.\ninstallation\nTo use d3c3nt in your own site, you have to add it to your themes\ndirectory. You can do this in a variety of ways, but I recommend adding\nit as a git submodule:\n\nAfter installing the theme, set the top-level theme variable to\n\"d3c3nt\" in your config.toml.\nFor more information about Zola themes in general, check out Zola's\nofficial site. To find out more about d3c3nt's features and\nconfiguration, head over to the project's docs.\nwhoami\nTo learn more about me, feel free to check out my website and\nsubscribe via the Atom feed. You can contact me via email at:\nfigbert+d3c3nt@figbert.com.\n","id":"https://www.getzola.org/themes/d3c3nt/","title":"d3c3nt"},"https://www.getzola.org/themes/deepthought/":{"body":"\n\n DeepThought\n\n A simple blog theme focused on writing powered by Bulma and Zola.\n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n View Demo\n · \n Documentation\n · \n Report Bug\n · \n Request Feature\n \n\n\n\n:notebook_with_decorative_cover: Table of Contents\n\n:notebook_with_decorative_cover: Table of Contents\n\n:star2: About the Project\n\n:camera: Screenshots\n:space_invader: Tech Stack\n:dart: Features\n\n\n:toolbox: Getting Started\n\n:bangbang: Prerequisites\n:gear: Installation\n:running: Run Locally\n:triangular_flag_on_post: Deployment\n\n\n:eyes: Usage\n\nMultilingual Navbar\nKaTeX math formula support\n\nAutomatic rendering without short codes\n\n\nElasticlunr search in other language\n\n\n:wave: Contributing\n:warning: License\n:handshake: Contact\n:gem: Acknowledgements\n\n\n\n\n:star2: About the Project\n\n:camera: Screenshots\n \n \n\n\n:space_invader: Tech Stack\n\nZola - Your one-stop static site engine\nBulma - The modern CSS framework that just works. \n\n\n:dart: Features\n\n\nDark Mode\n\nPagination\n\nSearch\n\nCharts\n\nMaps\n\nDiagrams\n\nGalleria\n\nAnalytics\n\nComments\n\nCategories\n\nSocial Links\n\nMultilingual Navbar\n\nKatex\n\n\n:toolbox: Getting Started\n\n:bangbang: Prerequisites\nYou need static site generator (SSG) Zola installed in your machine to use this theme follow their guide on getting started.\n\n:gear: Installation\nFollow zola's guide on installing a theme.\nMake sure to add theme = \"DeepThought\" to your config.toml\nCheck zola version (only 0.9.0+)\nJust to double-check to make sure you have the right version. It is not supported to use this theme with a version under 0.14.1.\n\n:running: Run Locally\nGo into your sites directory and type zola serve. You should see your new site at localhost:1111.\nNOTE: you must provide the theme options variables in config.toml to serve a functioning site\n\n:triangular_flag_on_post: Deployment\nZola already has great documentation for deploying to Netlify or Github Pages. I won't bore you with a regurgitated explanation.\n\n:eyes: Usage\nFollowing options are available with the DeepThought theme\n\nMultilingual Navbar\nIf you want to have a multilingual navbar on your blog, you must add your new code language in the languages array in the config.toml file.\nNOTE: Don't add you default language to this array\n\nAnd then create and array of nav item for each language:\nNOTE: Include your default language in this array\n\nen:\n\nfr:\n\nes:\n\nKaTeX math formula support\nThis theme contains math formula support using KaTeX,\nwhich can be enabled by setting katex.enabled = true in the extra section\nof config.toml.\nAfter enabling this extension, the katex short code can be used in documents:\n\n{{ katex(body=\"\\KaTeX\") }} to typeset a math formula inlined into a text,\nsimilar to $...$ in LaTeX\n{% katex(block=true) %}\\KaTeX{% end %} to typeset a block of math formulas,\nsimilar to $$...$$ in LaTeX\n\nAutomatic rendering without short codes\nOptionally, \\\\( \\KaTeX \\\\) / $ \\KaTeX $ inline and \\\\[ \\KaTeX \\\\] / $$ \\KaTeX $$\nblock-style automatic rendering is also supported, if enabled in the config\nby setting katex.auto_render = true.\nElasticlunr search in other language\nZola use Elasticlunr.js to add full-text search feature.\nTo use languages other than en (English), you need to add some javascript files. See the Zola's issue #1349.\nBy placing the templates/base.htmlon your project and using the other_lang_search_js block, you can load the required additional javascript files in the right timing.\ne.g. templates/base.html\n\nMore detailed explanations are aound in elasticlunr's documents.\n\n:wave: Contributing\n\n \n\nContributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.\n\nFork the Project\nCreate your Feature Branch (git checkout -b feature/AmazingFeature)\nCommit your Changes (git commit -m 'Add some AmazingFeature')\nPush to the Branch (git push origin feature/AmazingFeature)\nOpen a Pull Request\n\n\n:warning: License\nDistributed under the MIT License. See LICENSE for more information.\n\n:handshake: Contact\nRatan Kulshreshtha - @RatanShreshtha - ratan.shreshtha[at]gmail.com\nProject Link: https://github.com/RatanShreshtha/DeepThought\n\n:gem: Acknowledgements\nUse this section to mention useful resources and libraries that you have used in your projects.\n\nShields.io\nChoose an Open Source License\nAwesome README\nEmoji Cheat Sheet\nSlick Carousel\nFont Awesome\nUnsplash\n\n","id":"https://www.getzola.org/themes/deepthought/","title":"DeepThought"},"https://www.getzola.org/themes/dinkleberg/":{"body":" \nRust BR Blog template for Gutenberg\nFeatures\n\nA kind of i18n for base words as: \"Next\", \"Previous\", \"Pages\", \"Categories\"\nBlog Title and Logo on extra configurations\nAuto-sidebar links by configuration\nSimple design based on Medium\nSEO using structured data and another features\n\nConfigurations\n\nThis configuration was the same configuration that we use on RustBR Blog\nFavicons and other stuff\nBy default Dinkleberg wait that you have all icons on root of your static, for it you can use the site https://www.favicon-generator.org/ to generate that bundle and put it inside you /static :D\n","id":"https://www.getzola.org/themes/dinkleberg/","title":"dinkleberg"},"https://www.getzola.org/themes/docsascode-theme/":{"body":"Demo: docsascode.codeandmedia.com\nI was inspired by Linode's approach to creating and managing docs. They call it docs as code methodology. Thereby my aim was making simple and productive way to work with any sort of documents and articles through Markdown, Git and Docker/k8s optionally. \nThe repo contains a theme for Zola (the best static site generator I've ever seen) and dockerfile for building Docker images with Nginx-alpine. You can pull to your Docker an image with demo-content\n\nIf you would use Docker on MacBook M1 processors \\ Raspberry Pi4 64bit \\ Amazon Graviton or another ARM64 - just fork the ARM64 branch or push\n\nPerks\n\nlight / dark switcher\ntags and authors taxonomies by default\nsearch\nuseful UI both on mobiles and desktops \n\n6 steps build your knowledge base/docs repo\n\nFork the repo \ndelete demo content and add your own (I explain how to structure it below) \nchange website name and domain in config.toml, also, change the title in _index.md in a root\nconnect your repo to dockerhub \nbuild your docker image or setup autobuilds\nhost a builded docker image on your own way\n\nBut, zola is amazing static site generator, so you feel free to\n\ndownload all repo files\nagain delete demo content and add your own\nchange name and domain in config.toml/index.md\nsetup zola (win, linux, mac)\nexecute zola build\nhost builded html-output anywhere you want\n\nZola supports Netlify and other similar services, or you can decide to create your own CI/CD process. \nHow to structure your content\nAll your articles should be inside content folder. Any images, videos, other static files should be inside static. \nFolders\nEvery folder should contains _index.md like \n\nEach folder is the section of the website, it means if you create folder foo it will be seen as yoursitedomain.com/foo\nThe theme supports folders in folders and articles + folders in one folder (see an example inside content). So you can store inside folder another folders and describe in index some specific details. \nPages\nA page should be started by \n\nZola allows to create drafts:\n\nAlso, by default you have two taxonomies: tags and authors. It's optional, not necessary to use it on all pages. And you can add your own taxonomy:\n\nCopy tags or authors folder and rename it to your taxonomy\nAdd your taxonomy to config.toml\nAdd to page.html template code like \n\n\nDone. I told you Zola is amazing :) \nAnyway you can rewrite theme for your own wishes with Zola (link to documentation)\n","id":"https://www.getzola.org/themes/docsascode-theme/","title":"Docsascode_theme"},"https://www.getzola.org/themes/dose/":{"body":"dose\n\nInstallation\nFirst install the theme into the themes directory with one of these options:\n\nand then enable it in your config.toml:\n\nYou can enable the following taxonomies:\n\nAnd the theme uses the following extras:\n\nThe description of yourself with your image, you can modify by using a template. Just create a new\nfile myblog/templates/parts/me.html:\n\nIf you want to have all pages sorted by their date, please create myblog/content/_index.md:\n\nAbout\nInspired\nI created this theme mainly for my personal website. You are free to use it or modify it. It is inspired by the no-style-please jekyll theme.\nTypography\nThis theme uses no special font, just the browsers default monospace font. Yes, this can mean that the website could be rendered differently, but users can freely choose their webfont.\nDarkmode\nThis theme supports dark and light mode. Currently this will be only switched based on the users preffered system theme. But a manual switch will follow in the future in the footer (see the todo).\nlightdark\n\n\nSize\nThe JavaScript has been moved into the page itself to allow minification. Together this results in the following sizes for the index.html:\n\n~ 3kB JavaScript\n~ 3kB CSS\n~ 17kB Profile Image\n~5kB - ~3kB = ~2kB HTML\n\nWhich results in a total loading size of 3kB + 3kB + 17kB + 2kB = 25kB.\nSyntax Highlighting\nAs I didn't want to invest any time in creating an own syntax color schema for this theme, I suggest to use visual-studio-dark, which is the same one used in the demo page.\nCustomization\nYou can create your own version of this theme, by simply changing the sass variables in sass/style.scss to match your taste.\n\nLicense & Contributors\n\nThis project was created by Daniel Oltmanns and has been imporved by these contributors.\n","id":"https://www.getzola.org/themes/dose/","title":"dose"},"https://www.getzola.org/themes/duckquill/":{"body":"\n\n\nDuckquill \nDuckquill is a modern, pretty, and clean (and opinionated) Zola theme that has the purpose of greatly simplifying the process of rolling up your blog. It aims to provide all the needed options for comfortable writing, keeping the balance of it being simple.\n\nDocs\nDocs are provided in form of a live demo.\nKnow your rights\nThis website is under the MIT license:\n\nFreedom to Use: You have the right to use the software for any purpose, whether it's personal, academic, or commercial.\nFreedom to Modify: You can modify the source code of the software to suit your needs or preferences.\nFreedom to Distribute: You have the right to distribute the software, whether in its original form or modified, to others.\nCollaboration: You can collaborate with others on the software's development and improvement.\nNo License Compatibility Issues: You can combine the MIT-licensed software with other software, even if they use different licenses.\nNo Usage Restrictions: There are no restrictions on the technologies or fields of use, giving you maximum flexibility.\nNo Royalties: You are not required to pay any royalties or fees for using, modifying, or distributing the software.\n\nContributing guidelines\nThere are several ways to contribute to this project:\n\nReporting issues\nDiscussing potential improvements\nContributing code\nWriting documentation\nSubmitting feature requests\nProviding feedback\n\nWhen making any sort of contribution, please make sure to follow Forgejo's Code of Conduct. If you don't have the time to read it, just know that all you have to do is be nice, and you'll be just fine.\n</> with <3 by daudix | README based on libreivan's\n","id":"https://www.getzola.org/themes/duckquill/","title":"Duckquill"},"https://www.getzola.org/themes/emily/":{"body":"emily_zola_theme\n\nA KISS theme for Zola (static site generator written in Rust). \nFeatures:\n\nsimple & clean\nmobile-friendly\nMathJax support\n\nDemo site is here.\nUsage\n\nand set the theme-name in config.toml to emily_zola_theme.\n\nexample articles\nIn YOUR_SITE_DIRECTORY/themes/emily_zola_theme/content.\nMathJax support\nTo use MathJax, add the following lines to the front matter in .md file. [extra] is mandatory:\n\nHow to customize\nIn addition to default values, you can customize following parts easily:\n\nauthor name (appears in footer)\nheader icon (appears in header)\nfavicon\nheader icon size (default width: 70px)\nnumber of posts in index.html (default 5)\n\nSet your own in themes/emily_zola_theme/theme.toml, or to overwrite, copy [extra] block, paste it into your config.toml and edit.\n","id":"https://www.getzola.org/themes/emily/","title":"emily_zola_theme"},"https://www.getzola.org/themes/ergo/":{"body":"ergo LIVE DEMO\n\nA light, simple & beautiful Zola theme made with a focus on writing. Inspired by sbvtle and Pixyll.\nLike both those web designs, Ergo is a theme that emphasizes content, but still tries to be stylish. Frankly, the design is\nmost like sbvtle (http://sbvtle.com) but without the clever svbtle Engine, Javascript, community or kudos button (kudos is on the list of additions, though! But then i'll have to use JS...)\nIf you find that you like all those things, please check out svbtle; this theme is meant as a lighter (free) alternative,\nand ergo's design will most likely diverge more in the future as this theme evolves with me and it's users (if there are any).\nThis is not meant as a svbtle clone.\nHere's a timelapse:\n\nInstallation\nGet Zola and/or follow their guide on installing a theme.\nMake sure to add theme = \"ergo\" to your config.toml\nErgo relies on having paginate_by variable set in content/_index.md.\nCheck zola version (only 0.11.0+)\nJust to double-check to make sure you have the right version. It is not supported to use this theme with a version under 0.11.0.\nhow to serve\ngo into your sites directory, and type zola serve. You should see your new site at localhost:1111.\nDeployment to Github Pages or Netlify\nZola already has great documentation for deploying to Netlify or Github Pages. I won't bore you with a regurgitated explanation.\nCustomizing the Theme\nAll colors used on the site are from sass/colors.scss. There's only about 5-6 colors total.\nChange them however you like! Feel free to go into theme and edit the colors. However, editing anything other than sass/colors.scss is strongly advised against. Continue at your own peril!\nTheme Options\n\nFeatures\n\n\nPagination\n\nDynamic Color Schemes\n\nEdit Colors in config.toml\n\nNoJS\n\nAnalytics\n\nComments?\n\nLike button http://kudosplease.com/\n\ncategories?\n\nrelated posts? (would meaningful related posts, or unmeaningful ones, be worth it w/o database?)\n\nuser-requested: Open a Issue, or, if you're feeling up to it, a Pull Request\n\n","id":"https://www.getzola.org/themes/ergo/","title":"Ergo"},"https://www.getzola.org/themes/even/":{"body":"Even\nEven is a clean, responsive theme based on the Hugo theme with the same name featuring categories, tags and pagination.\n\nContents\n\nInstallation\nOptions\n\nTop menu\nTitle\n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nThe theme requires tags and categories taxonomies to be enabled in your config.toml:\n\nIf you want to paginate taxonomies pages, you will need to overwrite the templates\nas it only works for non-paginated taxonomies by default.\nIt also requires to put the posts in the root of the content folder and to enable pagination, for example in content/_index.md:\n\nOptions\nTop-menu\nSet a field in extra with a key of even_menu:\n\nIf you put $BASE_URL in a url, it will automatically be replaced by the actual\nsite URL.\nTitle\nThe site title is shown on the header. As it might be different from the <title>\nelement that the title field in the config represents, you can set the even_title\ninstead.\nKaTeX math formula support\nThis theme contains math formula support using KaTeX,\nwhich can be enabled by setting katex_enable = true in the extra section\nof config.toml:\n\nAfter enabling this extension, the katex short code can be used in documents:\n\n{{ katex(body=\"\\KaTeX\") }} to typeset a math formula inlined into a text,\nsimilar to $...$ in LaTeX\n{% katex(block=true) %}\\KaTeX{% end %} to typeset a block of math formulas,\nsimilar to $$...$$ in LaTeX\n\nAutomatic rendering without short codes\nOptionally, \\\\( \\KaTeX \\\\) inline and \\\\[ \\KaTeX \\\\] / $$ \\KaTeX $$\nblock-style automatic rendering is also supported, if enabled in the config:\n\n","id":"https://www.getzola.org/themes/even/","title":"even"},"https://www.getzola.org/themes/feather/":{"body":"feather\nA lightweight blog theme for Zola (and to my knowledge the first of now\nmany themes created specifically for Zola).\nLive demo 🔗\n\nFeatures\n\nFully responsive\nDesigned for legibility\nAll JS is non-critical and fails gracefully\n\nOptions\nZola allows themes to define [extra] variables\nin the config. Here's a full list of theme variables with example values and comments.\n\nUsage\nUsing feather is easy. Install Zola and follow\nthe guide for creating a site and using a theme. Then,\nadd theme = \"feather\" to your config.toml file.\nIf you intend to publish your site to GitHub Pages, please check out this\ntutorial.\nYou can specify tags taxonomies .\nDeveloping & Contributing\nBecause feather comes with example content, you can run the theme just like any Zola\nblog with zola serve.\n","id":"https://www.getzola.org/themes/feather/","title":"feather"},"https://www.getzola.org/themes/float/":{"body":"\nEnglish\nFloat 是一款為 Zola 設計的佈景主題。\n[[TOC]]\n特色\n\n依據不同的螢幕尺寸提供最佳化版面,從小尺寸到大尺寸都可獲得優秀的閱讀體驗。\n文章卡片提供兩種卡片尺寸,重點文章可採用更醒目的寬版卡片。\n文章卡片配圖可自行指定,未指定者使用 Unsplash Source 的隨機圖片。\n使用 Zola 的 resize_image() 自動產生適用於 DPR 1.0 ~ 3.0 的圖片,卡片配圖會由瀏覽器依據設備之 DPR 自動選用最佳尺寸的圖片。\n圖片啟用延遲載入,縮短頁面載入時間。\n預設埋入 HTML SEO 標籤、Open Graph 與 Twitter Cards 標籤。\n整合 Google Analytics。\n整合 Google AdSense。\n版面為 AdSense 自動廣告最佳化,不會因自動廣告的寬度不一而破版。\n整合 LikeCoin。\n整合 utterances,利用 GitHub issue 作為留言系統。\n\n安裝與啟用\n在您的 Zola 專案資料夾內:\n把 Float 以 Git 子模組的方式加入專案內:\n\n編輯您的 config.toml,指定 Float 作為佈景主題:\n\n編輯您的 config.toml,加入 tags 作為分類系統:\n\n複製 float/static/ 的所有子資料夾與檔案到您的 static/:\n\n複製 float/content/ 的所有子資料夾與檔案到您的 content/:\n\n使用 Float\n文章與配圖\n文章皆以資料夾的方式存在,如下例:\n\n文章為 index.md,文內的配圖或其它檔案也是放在文章資料夾內。\nFront-matter\nFront-matter 請參照下列註解說明:\n\n客製化\n可客製化設定大多可以在 config.toml 的 [extra] 區段做設定:\n\n字體\n字體的 CSS 位於 float/sass/font.scss,欲更換字體,把 float/sass/font.scss 複製到自己的 sass/font.scss,並修改之。\n已知問題\n\n分頁設定皆須設為 10 篇分頁。因為 Zola 的 get_section() 無法取得該 section 的分頁設定。\n\n","id":"https://www.getzola.org/themes/float/","title":"Float"},"https://www.getzola.org/themes/hallo/":{"body":"\n\nHallo\n\nA single-page theme to introduce yourself.\nZola port of hallo-hugo.\n\n\nOriginal\nThis is a port of the original hallo-hugo theme for Hugo (License).\nInstallation\nThe easiest way to install this theme is to either clone it ...\n\n... or to use it as a submodule.\n\nEither way, you will have to enable the theme in your config.toml.\n\nIntroduction\nThe introduction text is made in content/_index.md.\nOptions\nSee config.toml for an example configuration.\nAuthor\nThe given name will be used for the 'I am ...' text.\nDefault: Hallo\n\nGreeting\nThe string will be used as a greeting.\nDefault: Hello!\n\niam\nThis variable defines the I am text, which you may want to swap out for another language.\nDefault: I am\n\nLinks\nLinks show up below the introduction. They are styled with Font Awesome, you may optionally choose the iconset (default is brands).\n\nTheme\nChange the colors used.\n\n","id":"https://www.getzola.org/themes/hallo/","title":"hallo"},"https://www.getzola.org/themes/halve-z/":{"body":"halve-z\n\nA two-column theme for Zola.\n\nFeatures\nThis is a retro port of Halve (Jekyll). It features:\n\nsearch\ntaxonomies\nPWA (dynamic cache/offline mode)\nauto color schemes\nToC\npagination\nmedia shortcodes\nSEO\nCSP\nproject cards\ncomments (Cactus/Giscus)\nread time\n\nInstallation\nAdd theme submodule using git:\n\nUpdates\nUse the following command to update theme to the latest version:\n\nConfiguration\n\nCopy theme's config.toml into your project's root directory. Set variables as required and add theme = \"halve-z\" at the top of the config file.\nCopy the content to get started:\n\n\nUsage\nSee demo posts.\n","id":"https://www.getzola.org/themes/halve-z/","title":"halve-z"},"https://www.getzola.org/themes/hayflow/":{"body":"HayFlow - Modular Zola Theme\nAbout\n\n![Preview screenshot](https://gitlab.com/cyril-marpaud/hayflow/-/raw/main/screenshot.png \"Preview screenshot\")\n\nHayFlow is a modular landing page made as a theme for Zola, a static site generator written in Rust. It features a dark theme with a particles background, vertical arrows for navigation and a few card types which you are free to include to best suit your needs. Nearly all UI elements are subtly animated to convey a professional look (although I'm no designer 🤷 merely an embedded systems engineer).\nIt has been designed to require only Markdown editing (no HTML/CSS), but feel free to do so if you need to. I'll be glad to review a Merge Request if you implement a new card type !\n[[TOC]]\nLive demo\nSee my personal website for an example of what can be accomplished in a few minutes with this theme. Its source code is also available as an example in my Gitlab website repository.\nBuilt with\n\nZola\nParticles.js\nFont Awesome\nModern Normalize\nInspiration came from particle-zola, another theme.\n\nQuick start\nInitialize a Zola website and install HayFlow:\n\nAdd theme = \"hayflow\" at the top of config.toml file to tell Zola to use HayFlow (as described in the documentation).\nFinally, run...\n\n...and go to http://localhost:1111 to see the landing page in action with the default name displayed (John Doe).\nLanding page customization\nCustomizing the landing page boils down to two things:\n\nadding the name and links variables to the config.toml's [extra] section (links is optional. So is name if your name is John Doe)\nadding the roles variable to the content/_index.md's [extra] section (also optional)\n\nThe difference comes from the fact that you might need to translate the roles into other languages. For that to be possible, they must be placed in a MarkDown file. See multilingual support for more info.\n\nname speaks for itself.\nroles is an array of strings. Each string is displayed on a separate line.\nlinks is an array of {icon, url} objects. You can use any free icon from Font Awesome here, all you need is the icon's code. The enveloppe icon's code is fa-solid fa-envelope. The pizza-slice icon's code is fa-solid fa-pizza-slice.\n\nThis is what the config.toml's [extra] section might look like after customization:\n\nAnd here's a customized version of content/_index.md:\n\nAdding a section\nInside the content directory, create a pizza folder and place this _index.md file inside:\n\nThen, add this sections variable (an array of strings) to the config.toml's [extra] section:\n\nA new internal link pointing to that section will appear on the landing page. Click it and see what happens ! This is called a \"simple card\" section.\nCustomizing sections\nHayFlow currently supports three card types : simple, columns and list. If left unspecified, the type will default to simple. To change it, add a card_type variable to the _index.md's [extra] section:\n\nColumns card\nAdd a new section and set its card type to columns. Then, alongside the _index.md file, create three other files: one.md, two.md and three.md. These will be the ingredients of your new pizza. Their content is similar to _index.md:\n\nThe icons variable is optional.\nList card\nAdd a new section and set its card type to list. Then, alongside the _index.md file, create three other files: one.md, two.md and three.md. These will be your favourite pizzas. Their content is similar to _index.md:\n\nThe link variable is optional.\nMultilingual support\nHayFlow supports multilingual websites out of the box.\nDeclare more languages\nIn config.toml, add the languages you want to support like so:\n\nThis will make the language-select block in the top-right corner visible. It consists of clickable links to the translated versions of your website.\nThe flag variable is optional and you can use simple text instead of an emoji flag. If left unspecified, it will default to the country code you chose for that language (fr, en and italian in this example).\nTranslate the content\nEach .md file in the content folder now needs to be translated into every additional language previously declared in config.toml.\nFollowing the above example (three languages, french, english and italian) and given this initial filetree:\n\nThe final filetree should look like this for the translation to be complete:\n\nList cards\nAdditionally, if your website includes any \"list card\" sections, you might want to specify a discover variable in their [extra] sections like so:\n\nWhoami\nMy name is Cyril Marpaud, I'm an embedded systems freelance engineer and a Rust enthusiast 🦀 I have nearly 10 years experience and am currently living in Lyon (France).\n\n\n\n","id":"https://www.getzola.org/themes/hayflow/","title":"HayFlow"},"https://www.getzola.org/themes/hephaestus/":{"body":"hephaestus\nHephaestus is a portfolio theme for zola. It uses bulma css and supports using icons from ion-icon.\n\nContents\n\nInstallation\nOptions\n\nNavigation Bar\nEducation\nProjects\nSkills\nSocial Links\n\n\n\nInstallation\nFirst, you will download the theme into your themes directory:\n\nSecond, you will enable the theme in your config.toml directory:\n\nOptions\nNavigation Bar\nTo edit the navigation bar you will need to edit your config.toml to include:\n\nYou can have as many items as you want to have and the links can be to anything.\nEducation\nTo edit the education that is displayed you will need to create a directory in content.\nIn the _index.md the frontmatter needs to include:\n\nFor every educational level you want to add you will need to create a new markdown file that includes the frontmatter:\n\nAny content that is typed will be rendered underneath these two items.\nProjects\nTo edit the projects that are displayed you will need to create a directory in content.\nIn the _index.md the frontmatter needs to include:\n\nThen for every project you want to add you will need to format the *.md as:\n\nSkills\nTo edit the skills that you want to display it is important to note that there are two types of skills that can be\ndisplayed (lan, and tools). To format the look you will need to create a directory in content that includes the\nfrontmatter of:\n\nSocial Links\nTo edit the social links that appear in the footer of the page, you need to edit your config.toml to include:\n\n","id":"https://www.getzola.org/themes/hephaestus/","title":"hephaestus"},"https://www.getzola.org/themes/hermit/":{"body":"\nHermit\n\nthis is a port of the Hermit theme for Zola\n\nHermit is a minimal & fast Zola theme for bloggers.\n\nView demo\nInstallation\nFirst download the theme to your themes directory:\n\nand then enable it in your config.toml:\n\nConfiguration\n\nTable of content\nTable of content can be enabled by adding \n\nto the page front matter. Icon will then appear above the page title that will\nallow to toggle the ToC.\nLicense\nMIT\nThanks to Track3 for creating the original!\n","id":"https://www.getzola.org/themes/hermit/","title":"Hermit_Zola"},"https://www.getzola.org/themes/hook/":{"body":"Hook\nA clean and simple personal site/blog theme for Zola.\nDemo\nSetup\nClone this repo into your themes folder:\n\nThen, enable it in your config.toml:\n\nFeatures\nThe following templates are built-in:\n\nindex.html - the homepage;\npage.html - pages and posts (extends index.html);\nsection.html - archive of pages in a section, mostly for a blog (extends page.html);\n404.html - 404 page (extends page.html).\n\nTemplates have the following Tera blocks:\n\ntitle - to override the default <title> (config.title);\ndescription - to override the <meta name=\"description\">'s content (config.description);\nextra_head - to override styles and anything else in <head>;\nheader - to change the header (best to put this in a <header>);\ncontent - to change the content (best to put this in a <main>).\n\nYou can set a section or page description using description in your front matter.\nBy default, the description in config.toml is used.\nYou can define links to include in the header on the homepage in config.toml:\n\nPages in the root section can define extra.in_header = true to be included in the header links on the homepage.\nThe content in the root _index.md is included in the homepage if present.\nBelow that is a list of the 20 most recent posts. For this, the blog/_index.md section is expected to exist\n(will error if it doesn't exist). There is also a link to an archive of all blog posts by year.\nHook supports light/dark mode based on the user's preference. There is also a manual toggle button\n(requires JavaScript).\nScreenshots\nHomepage\n\nBlog post\n\nBlog archive\n\nDark mode\n\nLicense\nMIT license, see LICENSE.\n","id":"https://www.getzola.org/themes/hook/","title":"Hook"},"https://www.getzola.org/themes/hyde/":{"body":"hyde\nHyde is a brazen two-column Zola based on the Jekyll theme of the same name that pairs a prominent sidebar with uncomplicated content.\n\nContents\n\nInstallation\nOptions\n\nSidebar menu\nSticky sidebar content\nThemes\nReverse layout\n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nOptions\nSidebar menu\nSet a field in extra with a key of hyde_links:\n\nEach link needs to have a url and a name.\nSticky sidebar content\nBy default Hyde ships with a sidebar that affixes it's content to the bottom of the sidebar. You can optionally disable this by setting hyde_sticky to false in your config.toml.\nThemes\nHyde ships with eight optional themes based on the base16 color scheme. Apply a theme to change the color scheme (mostly applies to sidebar and links).\n\nThere are eight themes available at this time.\n\nTo use a theme, set the hyde_theme field in config.toml to any of the themes name:\n\nTo create your own theme, look to the Themes section of included CSS file. Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.\nReverse layout\n\nHyde's page orientation can be reversed by setting hyde_reverse to true in the config.toml.\n","id":"https://www.getzola.org/themes/hyde/","title":"hyde"},"https://www.getzola.org/themes/inky/":{"body":"Zola-Inky\n\nAn elegant and understated theme for Zola\n\nZola Inky (view demo) is a theme by jimmyff and mr-karan for the Zola static site generator. This theme was originally based on the hugo-ink theme, ported by mr-karan. It was then packaged and developed further by jimmyff. The theme is available on Github under the MIT license, for more information on how to use it please see the readme and check the changelog for a list of the latest changes.\n\nChangelog\nFor latest changes please see the changelog.\nFeatures\n\nResponsive design\nResponsive images\nGallery template\nTaxonomy support\nSearch\nCustomisable via template hooks\n\nGetting started\n\nAdd this theme to your themes/ folder (recommended method: git submodule).\nCopy of the the theme's config.toml file and put in your projects root directory. Update it as required and don't forget to add theme = 'zola-inky' at the top of the file.\nCopy this contents of the content/ directory the root of your project and change the files as your necessary.\n\nCustomising the theme\n\nTo change the settings copy config.toml in to your project and update as required (make sure you add the theme variable at the top of the file, see the getting started heading above).\nTo change the themes colours copy sass/variables.scss in to your project under the same folder and update as required.\nTo inject content in to templates copy templates/macros/hooks.html and update as required.\n\nUsing the responsive image shortcode\nUsing the responsive images will make sure your images are generated at various sizes and served up to viewers at the size that best suits their device via the image srcset attribute. You can use this feature in your markdown like so:\n\nFeature requests & support\nI'm afraid I'm unable to accept feature requests or provide user support for this theme. The Zola documentation and Tera documentation are great resources and there is a Zola discussion forum. If you've found a bug in the themse please open a github issue.\nContributing\nContributions are very welcome! If you are planning to add a feature to the theme then feel free to open an issue to discuss your approach and we will be able to say if it's it will likely be accepted. Please keep the following in mind:\n\nOnly widely generic features will be accepted, anything too specific should be kept to your own templates.\nBe careful about destroying indentation as Tera syntax doesn't seem to be widely supported by IDEs.\nKeep it lean. Adding bloat will likely result in your PR being rejected.\nConsider backward compatibility, ideally people blindly-upgrading won't see any unexpected changes to their sites.\n\nNew theme maintainers are welcome but should provide pull-request or two first!\n","id":"https://www.getzola.org/themes/inky/","title":"Inky"},"https://www.getzola.org/themes/juice/":{"body":"Juice\n\nJuice is an intuitive, elegant, and responsive Zola theme for product sites.\n\nBuild for product sites\nSimple and intuitive structure\nClean and elegant design\nResponsive and mobile device compatible\nCustomize and extend friendly\n\nhttps://juice.huhu.io\nInstallation\nFirst download this theme to your themes directory:\n\nor add as a submodule\n\nand then enable it in your config.toml:\n\nStructure\nHero\nJuice is designed for product websites, hence we let hero part fills whole of screen.\nYou can customize your hero by using hero block in the templates/index.html.\n\nPage\nEvery markdown file located in content directory will become a Page. There also will display as\na navigate link on the top-right corner.\nYou can change the frontmatter's weight value to sort the order (ascending order).\n\nCSS variables\nYou can override theme variable by creating a file named _variables.html in your templates directory.\nSee the default value here\nFavicon\nThe same way as changing the hero block in the templates/index.html, you can change the favicon.\n\nFonts\nIf you changed the --xy-font-family-variable in _variables.html, you have to load the mentioned fonts in the templates/index.html.\n\nConfiguration\nYou can customize some builtin property in config.toml file:\n\nShortcodes\nJuice have some builtin shortcodes available in templates/shortcodes directory.\n\nissue(id) - A shortcode to render issue url, e.g. issue(id=1) would render to the link https://github.com/huhu/juice/issue/1.\n\n\nThe repository_url is required.\n\nShowcases\nPlease see the showcases page.\nContributing\nThank you very much for considering contributing to this project!\nWe appreciate any form of contribution:\n\nNew issues (feature requests, bug reports, questions, ideas, ...)\nPull requests (documentation improvements, code improvements, new features, ...)\n\n","id":"https://www.getzola.org/themes/juice/","title":"juice"},"https://www.getzola.org/themes/kangae/":{"body":"kangae (考え, idea or thought)\nkangae is a lightweight microblog theme for zola.\n\n kangae screenshots on desktop and mobile\n\n\n\n\n\nI've created kangae from scratch and it is not based on any other theme. However, I was inspired to\ncreate kangae after I came across Wolfgang Müller's microblog. Thanks Wolf!\nkangae is licensed under the NCSA license, which is quite similar to the BSD-3-Clause license.\nUnlike BSD-3-Clause, NCSA also covers documentation of a project.\nShowcase\nHere's a list of websites using the kangae theme\n\nayushnix microblog\n\nIf you want to mention your website in this section, please raise a pull request.\nInstallation\nBefore using this theme, install zola. After you've installed zola,\n\nkangae doesn't use Sass or syntax highlighting so if you don't want to use custom Sass code or\nenable syntax highlighting, answer the 2nd and 3rd question with a 'no'. kangae also doesn't use any\nJavaScript library to search content. If you don't intend to install a JavaScript library to enable\nsearch on your microblog, answer 'no' to the last question as well.\nIf you intend to publish your microblog on a forge like GitHub, initialize an empty git repository\nusing\n\nIf you don't want to make an empty commit, add and commit a README or a LICENSE file instead.\nAt this point, you can install kangae using one of the following methods\nusing git subtree\n\nusing git submodule\n\ndownload kangae in themes directory\nIf you want to keep things simple and figure out version control later, you can\n\nConfiguration\nTo begin using kangae after installing it,\n\nThe config.toml file of kangae has been documented carefully using TOML comments. If you have\nany questions about configuring kangae which haven't been answered in the config.toml file itself,\nplease raise an issue.\nShortcodes\nkangae provides several shortcodes that can be used to add content in an accessible manner\nkaomoji (・_・)ノ\nIf you want to use kaomoji in your posts, you can use insert them in an accessbile manner using\n\nProviding a value for the label is optional but highly recommended. A short text should be\nmentioned that explains what the kaomoji means to convey. The value of text should be the actual\nemoticon itself.\nThis shortcode can also be used for any other ASCII emoticon that can fit in an inline paragraph.\nThis includes western emoticons such as ;) and combination emoticons such as <(^_^<).\nQuotes\nYou can add quotes in your microblog posts using\n\nThis is the most basic form of improvement in writing quotes over simply using > in markdown.\nIf you want to mention the name of the source from where the quote has been taken, such as the name\nof the book or a movie, you can use\n\nA citeurl can also be given as an argument to this shortcode to provide the actual URL from where\nthe source is borrowed.\n\nA live preview of these how these shortcodes look like can be found on this blog post.\nOptional Features\nkangae includes some optional features that aren't enabled by default\n\nstyle external links using a ↗ unicode symbol\n\nDonate\nIf you found kangae helpful in creating your own microblog website, please consider supporting me by\nbuying me a coffee :coffee:\n\n\nIf you're in India, you can also use UPI for donations. My UPI address is ayushnix@ybl.\nNotes\nAlthough I'm not a web developer, I am interested in learning HTML and CSS to create lightweight\ntextual websites. You may be interested in reading my log about how I learned HTML and CSS.\nHowever, that page is just an unorganized dump of my thoughts and isn't a polished blog post.\nSeirdy's blog post on creating textual websites is probably a better reference.\nTODO (maybe?)\n\n(responsive) image shortcodes\nrun prettier on HTML and CSS before deployment\ntwitter and mastodon shortcodes\nadd optional support for cross posting and commenting on mastodon without using JS\nadd optional support for giscus and loading mastodon comments\nadd shortcode for asciinema\nadd shortcode for blockquote and citation\npagination\nlight and dark mode switch\ncontent tabs\nmicrodata and microformats2\n\n","id":"https://www.getzola.org/themes/kangae/","title":"kangae"},"https://www.getzola.org/themes/karzok/":{"body":"\n \n \n \n\n\n Documentation \n\nKarzok\n\nclassless and frameworkless\nJinja-like templates\njavascript is optional, needed only for search,math,alerts and dark mode\nno roundings and other strange design trends\n\n\nGet Started\n\nfind out more\n\nRequirements\n\nNode.js\n\n1. Create a new zola site\n\n2. Download this theme to you themes directory:\n\nor install as submodule:\n\n3. Configuration. Open in favorite editor config.toml\n\nSee more in configuration\n4. Added new content\n\nhow you can give freedom to your creativity\n5. Run the project\ni. development enviroment\n\nInstall node dependencies needed to work\n\n\n\nJust run zola serve in the root path of the project\n\n\nOpen in favorite browser http://127.0.0.1:1111. Saved\nchanges live reolad.\nii. production enviroment\n\nwith conainers\n\n\nWrite file for container\n\n\n\nRun the your container\n\n\n\nusing gitlab-ci and gitlab-pages\n\n\nOpen in favorite browser https://localhost:8080\nLicense\nThis program is Free Software: You can use, study share and improve it at your\nwill. Specifically you can redistribute and/or modify it under the terms of the\nMIT\nContribute\nMake sure to read the Code of Conduct\nFind bugs and come up with features\nOn the codeberg issues or\ngithub issues\n","id":"https://www.getzola.org/themes/karzok/","title":"karzok"},"https://www.getzola.org/themes/kita/":{"body":"Kita\nKita is a clean, elegant and simple blog theme for Zola.\nThis theme is based on Hugo theme hugo-paper with some features added.\nDemo\n\nFeatures\n\nEasy to use and modify\nNo preset limits (This theme does not limit your content directory structure, taxonomy names, etc. It's applicable to all zola sites.)\nDark mode\nResponsive design\nSocial icons\nTaxonomies support\nProjects page\nArchive page\nTable of Content\nAdmonition shortcode\nSEO friendly\nComments using Giscus\nMathematical notations using KaTeX\nDiagrams and charts using Mermaid\n\nInstallation\nThe easiest way to install this theme is to clone this repository in the themes directory:\n\nOr to use it as a submodule:\n\nThen set kita as your theme in config.toml.\n\nConfiguration\nSee the extra section in config.toml as a example.\nLicense\nMIT License\nCopyright (c) 2023-present, st1020\n","id":"https://www.getzola.org/themes/kita/","title":"Kita"},"https://www.getzola.org/themes/kodama-theme/":{"body":"Kodama\n\nSummary\nThis theme is greatly inspired from hugo academic theme.\nFirst lets introduce some technical details:\n\nIt relies on zola.\nIt has no javascript.\nThe CSS is built with tailwindcss.\n\nThe blog articles are themed with @tailwindcss/typography theme.\n\n\n\nGetting started\nThe best way to get started is to follow the official zola tutorial.\nThis theme can be installed as any other theme.\n\nand set in the config.toml the variable theme to kodama-theme.\nGenerate the CSS\nTailwindcss is a framework that parses your html files, and generate the minimal CSS required.\nThis theme depends on this framework.\nThe theme comes with the precompiled style files (static/styles/styles.css). However, if you wish to change the style, or modify the template htlm, you might need to recompile your styles.\nThe most simple way, is to follow the installation page of tailwindcss.\nAt the end, you should have tailwindcss installed, and I advise to use the following tailwind configuration:\n\nCreate a file styles/styles.css, and use the following command to generate the final CSS file:\n\nThe resulting file static/styles/styles.css is loaded in the html.\nNote that, for the moment the generation of the css is not automated. As a result, it is necessary to re-run this command when changes are made with the styling.\nConfiguration\nThis theme use some extra configuration, that can be set in the extra section of your config.toml.\n\nIndex page\nThe information needed to build the index page are located in the page front matter of root index file (e.g content/_index.md).\nThe available configuration options are:\n\nContact\nThe predefined contact page can be use.\nThe front matter extra part should contains a list of the link to show in the contacts.\nSections\nThe section available in your website are automatically detected and displayed in the nav bar at the top of the page.\nTo prevent a section to be displayed in the nav bar, you can set the extra front matter option extra.hidden_nav = false to false.\nThe section are sorted by weight defined in the front matter of the section.\nBy default, the sections (i.e folders under content/section_name) have a summary showed in the index.\nThis is configurable in the front matter of the section (e.g content/section_name/_index.md).\n\nBlog\nThe section blog is the most standard section. It show a list of article with things that you want to share in your website.\nTo use the blog template, configure the section with the following front matter:\n\nPublications\nThe section publication is very similar to the blog section however it is dedicated to show your list of scientific articles.\nThe articles are showed in two subcategories: Thesis and Conference / Workshop.\nTo configure a publication section (e.g content/research) and set the following content:\n\nArticle are referenced in subdirectories of this section.\n\nThe bib files are automatically loaded to get information from it. However, it is also possible to add information in the front matter of the article markdown file.\n\nExtend the html header\nIn some cases, it is needed to add extra javascript or css files to be loaded by the web browsers.\nThe base template of this theme define an empty block named user_head.\nTo use this block, you can just create a new template name templates/base.html with the following content:\n\nIcons\nThe icons available in this project are stored in a dedicated macro function in templates/macros/icons.html.\nTo add a new svg, you can add a case in the if elif .. else of the function containing the svg copied from heroicons for instance.\n","id":"https://www.getzola.org/themes/kodama-theme/","title":"kodama"},"https://www.getzola.org/themes/lightspeed/":{"body":"Light Speed\nAn insanely fast and performance-based Zola theme, ported from Light Speed Jekyll.\nSome fun facts about the theme:\n\nPerfect score on Google's Lighthouse audit\nOnly ~700 bytes of CSS\nNo JavaScript\nNow with SEO!\n\nDemo: quirky-perlman-34d0da.netlify.com\n\nContents\n\nInstallation\nOptions\n\nTitle\nFooter menu\nSEO\nFooter text\nSass\n\n\nOriginal\nLicense\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nPosts should be placed directly in the content folder.\nTo sort the post index by date, enable sort in your index section content/_index.md:\n\nOptions\nTitle\nSet a title and description in the config to appear in the site header:\n\nFooter-menu\nSet a field in extra with a key of footer_links:\n\nIf you put $BASE_URL in a url, it will automatically be replaced by the actual\nsite URL.\nCreate pages such as $BASE_URL/about by placing them in a subfolder of the content directory, and specifying the path in the frontmatter:\n\nSEO\nMost SEO tags are populated by the page metadata, but you can set the author and for the og:image tag provide the path to an image:\n\nFooter-text\nBy default the footer provides links to Zola and Netlify, and a tagline of \"Maintained with :heart: for the web\".\nTo disable any of those parts, and/or add a custom tagline of your own, the following options are available:\n\nSass\nStyles are compiled from sass and imported inline to the header :zap:\nYou can overide the styles by enabling sass compilation in the config:\n\n...and placing a replacement style.scss file in your sass folder.\nOriginal\nThis template is based on the Jekyll template Light Speed Jekyll by Bradley Taunt.\nLicense\nOpen sourced under the MIT license.\nThis project is open source except for example articles found in content.\n","id":"https://www.getzola.org/themes/lightspeed/","title":"lightspeed"},"https://www.getzola.org/themes/mabuya/":{"body":"\n🦎 Mabuya\n \n \n \n \n \n\n\n\nMabuya is a minimal Zola theme for building light and SEO-ready blogs.\nPut your work front and center with Mabuya as the base of your project.\n\n\n\n\n\n\n\nⓘ Background\nWhile searching for themes, I came across Zola Tale. Sadly, the project's last update was on Dec, 2021. Shortly after, I decided to fork the project and add my own touches to it.\nThe name Mabuya comes from the Mabuya hispaniolae, a possibly extinct1 species of skink endemic to the Dominican Republic, my home country.\n✨ Features and Improvements\nWhile working on the theme, I have added new functionality and made many quality of life improvements. Here's a short list:\n\nRefactored stylesheets.\nAdded Dark theme and color theme toggle.\nAdded new footer navigation.\nCreated a custom GitHub Action to deploy Zola sites faster than any other GitHub Actions using Docker.\nRefined page transitions from desktop to mobile and viceversa.\nCentralized custom variables–made it easier to customize the site's colors.\nAddressed PR #7 fixing the pagination problem present in the original Zola theme.\nAddressed Issue #4 fixing custom text not being used correctly.\nAddressed (temporarily) Issue #1 by removing the erroneous pinned marker.\nOptimized for speed and accessibility. Subtle color changes to make the text more readable, etc.\nMany other small improvements...\n\n🚀 Quick Start\nBefore using the theme, you need to install Zola ≥ v0.18.0.\n1. Clone the repo\n\n2. Change directory into clone\n\n3. Serve the site locally\n\nFor more detailed instructions, visit the Documentation page about installing and using themes.\n🎨 Customization\nYou can change the configuration, templates and content yourself. Refer to the config.toml, and templates for ideas. In most cases you only need to modify the contents of config.toml to customize the appearance of your blog. Make sure to visit the Zola Documentation.\nAdding custom CSS is as easy as adding your styles to sass/_custom.scss. This is made possible because SCSS files are backwards compatible with CSS. This means you can type normal CSS code into a SCSS file and it will be valid.\n🔄 Workflows\n🔨 Build only\n\n📢 Deployment\n\n🚩 Reporting Issues\nWe use GitHub Issues as the official bug tracker for Mabuya. Please search existing issues. It’s possible someone has already reported the same problem. If your problem or idea is not addressed yet, open a new issue.\n🤝 Contributing\nWe'd love your help! Please see CONTRIBUTING and our Code of Conduct before contributing.\n💜 Acknowledgements\nMabuya is a fork of Tale, which itself is a port of the Jekyll theme Tale which is now archived.\nThe icons used throughout the site are kindly provided by UXWing. Read their license.\n©️ License\nSource code in this repository is available under the MIT License.\n1\nMabuya hispaniolae's conservation status is Critically endangered, possibly extinct.\n\n","id":"https://www.getzola.org/themes/mabuya/","title":"Mabuya"},"https://www.getzola.org/themes/minimal-dark/":{"body":"\nGeneral\nI am not the best webmaster, but should be somewhat responsive.\nI intentionally using the bigger fonts to make, feel free to change it in main.scss\nLight mode\nNow light mode also supported. \nImportant\nPlease make sure to set up your base_url with trailing slash:\n\nComments\nTheme supports Giscuss for comments. The configuration is done via config.toml. Here you can see the example section used for this page deployment:\n\nPage onfigurations\nCustomize the page blocks by setting configuration in [extra] section:\n\nBlog\nI am using this theme for my notes, or probably blog. \nThe section template supports pagination, tags, sorts the pages by publication date. You may see the working example here\nconfig.toml extras\n\nShortcodes\nCallouts\n\nTimeline\n\nThanks to\n\nGiscuss for excellent comments system\nbootstrap icons for great social icons \n\nScreenshot\n\n","id":"https://www.getzola.org/themes/minimal-dark/","title":"minimal-dark"},"https://www.getzola.org/themes/nasm-theme/":{"body":"nasm-theme\nWeb\n\nMobile\n\nContents\n\nnasm-theme\n\nWeb\nMobile\nContents\nFonts\nInstallation\nOptions\n\nDisqus\nTop-menu\nTitle\n\n\nOriginal\n\n\n\nFonts\nFont Awesome for icons\nNunito Font\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nThis theme requires your index section (content/_index.md) to be paginated to work:\n\nThe posts should therefore be in directly under the content folder.\nThe theme requires tags and categories taxonomies to be enabled in your config.toml:\n\nIf you want to paginate taxonomies pages, you will need to overwrite the templates\nas it only works for non-paginated taxonomies by default.\nOptions\nDisqus\nset a field extra with key of disqus_username:\n\nTop-menu\nSet a field in extra with a key of nasm-theme:\nFont Awesome default icons\n\nIf you put $BASE_URL in a url, it will automatically be replaced by the actual\nsite URL.\nTitle\nThe site title is shown on the homepage. As it might be different from the <title>\nelement that the title field in the config represents, you can set the nasm_theme_title\ninstead.\nOriginal\nThis template is based on the Zola template https://github.com/getzola/after-dark\nThanks\n","id":"https://www.getzola.org/themes/nasm-theme/","title":"nasm-theme"},"https://www.getzola.org/themes/neovim-theme/":{"body":"Neovim like theme\nNeovim theme is a neovim like theme for zola.\n\nexemple: https://super-botman.github.io\nInstalation\n\nthen enable it in your config\n\nConfig\nYou can setup the blog name with config file in extra\n\nCustomisation\nJS\nYou can add some custom javascript function with this parameter:\n\nthen you just add a file static/js/custom_script.js and define your custom functions like this:\n\nCSS\nAnd for css \n\n","id":"https://www.getzola.org/themes/neovim-theme/","title":"neovim"},"https://www.getzola.org/themes/no-style-please/":{"body":"no style, please!\nA (nearly) no-CSS, fast, minimalist Zola theme.\nPorted from from riggraz's no style, please! Jekyll theme, and you can find the demo here\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nOptions\nDefault taxonomies\nSpecial templates for tags, categories, and contexts taxonomies are provided. However, generic templates exist for custom taxonomies.\nTo use taxonomies, in a page metadata add\n\nPages list in homepage\nTo enable listing of pages in homepage add the following in config.toml\n\nIf you do not want the date of the post added next to the title in the list, add the following as well:\n\nHeader and footer nav links\nAlso in the extra section in config.toml\n\nAdd TOC to pages\nIn a page frontmatter, set extra.add_toc to true\n\nExtra data\n\nauthor can be set in both main config and in pages metadata\nimage variable can be used in pages to add an image to HTML <meta> tags\nSame for logo in main config, except this one is also used as the site icon\n\nHorizontal rule shortcode hr()\nAdds the option to insert text in the thematic break\n\nis rendered\n\nInvertable image iimg()\nImages are not inverted in darkmode by default. To add an invertable image use the following\n\nIn light mode\n\nIn dark mode\n\nDisable Twitter card\nTwitter metatags are generated by default, to disable them set extra.twitter_card to false in in your config.toml\n\nTODO\n\n\nAdd RTL support\n\nWrite proper test pages\n\nLicense\nThe theme is available as open source under the terms of the MIT License.\n","id":"https://www.getzola.org/themes/no-style-please/","title":"no style, please!"},"https://www.getzola.org/themes/ntun/":{"body":"Ntun\n\nLive demo : https://netoun.github.io/ntun/\nContents\n\nInstallation\nOptions\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nThis theme requires index section in about (content/about/_index.md)\nThe posts should therefore be in directly under the content about folder.\nOptions\nSet a field in extra with a key of after_dark_menu:\n\nIf you put $BASE_URL in a url, it will automatically be replaced by the actual\nsite URL.\n","id":"https://www.getzola.org/themes/ntun/","title":"ntun-zola-theme"},"https://www.getzola.org/themes/oceanic-zen/":{"body":"Oceanic Zen\n\nOceanic Zen is a theme for Zola static site generator\nOceanic Zen is a minimalistic theme for personal blog.\n\n\nInstallation\nDownload theme to your themes directory:\n\nOr add as git submodule\n\nEnable it in your config.toml:\n\nOptions\nTheme supported some extra options\n\nFont Iosevka\n","id":"https://www.getzola.org/themes/oceanic-zen/","title":"Oceanic Zen"},"https://www.getzola.org/themes/otherworld/":{"body":"\n \n\n\n otherworld - a zola theme\n\nyou can see the demo here\nhow to use\nprerequisities\n\na linux system. you can use windows for that, but this guide centers itself on linux based systems.\nyou need to have these programs installed: git and zola\nsome creativity, html and scss skills\n\nsteps\n1. clone the repo\n(aka download the theme)\nlets assume that your website's directory name in daftpunk. it will appear in commands a few times, and you should replace it with your website's name.\n\n2. open an another terminal\nin the same directory, run\n\n3. edit files in the content directory...\n...as per zola docs\nhow to disable loading\ngo to content/index.md, and in the +++ blocks, set extra.noload to true.\nlike this:\n\n","id":"https://www.getzola.org/themes/otherworld/","title":"otherworld"},"https://www.getzola.org/themes/papaya/":{"body":"Papaya\nA clean Zola theme for blogging and projects, forked from Anpu.\nPreview\nDemo site: https://justintennant.me/papaya/\n\n\n \n       \n \n\n\n \n       \n \n\nFeatures\n\nBlog posts\nProject pages\nAutomatic light/dark mode\nCategories and tags\nOptional multilingual support\nCustomizable sections and navigation menu links\nFeatured images for posts/pages\nSmart image embedding shortcode ({{ img() }})\nGitHub repository star/fork counts\nOpen Graph Protocol tags\nUtterances support\nSocial/contact links\n100% Google Lighthouse score\n\nInstallation\n\n\nClone this repository to your themes folder:\n\n\n\nSet your theme setting in config.toml to papaya:\n\n\n\nCopy the following sections and keys (and their contents/values) from papaya's config.toml and paste them into your site's config.toml:\n\n[languages]\n\n[languages.en]\n[languages.en.translations]\n\n\n[extra.cdn]\n\nfont_awesome\n\n\n\n\n\nIn your content directory, add new blog and projects directories. Copy the _index.md file from Papaya's content/blog into your content/blog, and the _index.md and categories.json files from Papaya's content/projects into your content/projects.\nYour content directory structure should look like this:\n\n\n\n(optional) To enable GitHub repository stars/fork counts (disabled by default to avoid hitting API rate limits), set the $ZOLA_ENV environment variable to prod prior to your zola serve/zola build execution.\nFor csh/tsch:\n\nFor bash/ksh/zsh:\n\n\n\nCustomization\nHere are the customizable features of Papaya: \n\nProject categories\nLight/dark mode\nMultilingual support\nSections and navigation menu links\nPost/project date formats\nPost/project featured images\nOpen Graph Protocol locale/profile information\nUtterances\nSocial/contact links\n\nProject categories\nIn your content/projects/categories.json, you can specify the categories of projects. The formatting of the file is:\n\n\n\"title\": the title text displayed for each category grouping on your projects page.\n\"keyword\": the taxonomy term you'll use in your project pages.\n\nA project can have multiple categories, and will be displayed once in each category configured.\nProjects without categories will be displayed in the \"Other\" category listing of your project page. If you don't want the \"Other\" category displayed, you can copy the templates/projects.html to your own templates directory and delete/comment out the \"Other\" category code.\nExample categories.json:\n\nExample project page front matter:\n\nThe example project page above would be grouped into & displayed within the \"Software\" category of your projects page.\nLight/dark mode\nThe Papaya theme can be set to \"light\", \"dark\", or \"auto\" mode in the config.toml.\nIn \"auto\", the light and dark modes are implicitly chosen by the prefers-color-scheme CSS media feature. The theme will switch automatically based on the viewer's OS or user agent setting.\nMultilingual support\nCurrently Zola has basic internationalization (i18n) support, you can read more in zola's Multilingual Sites doc.\nTo write a multilingual site, follow the steps below (English and Chinese in this example):\n\n\nAdd a default_language configuration and [languages.zh] and [languages.en] sections to your config.toml:\n\nUnder the [languages.zh] section you can override default configurations like title, description, etc.\n\n\nAdd translations of all keywords in [languages.zh.translations] and languages.en.translations] sections (see Papaya's config.toml for a listing of all keywords):\n\n\n\nAdd a _index.zh.md file into every section. \nFor example: add content/blog/_index.zh.md and content/projects/_index.zh.md. \n\n\nProvide a {page-name}.zh.md (or index.zh.md into the page's directory, if it has one) for every page you'd like to translate.\nFor example: add content/blog/what-is-zola.zh.md and content/blog/blog-with-image/index.zh.md.\n\n\nAdd a content/categories.zh.json file. For example:\n\n\n\nNow you will have a website that supports both English and Chinese! Since default_language in config.toml is set to \"en\", by visiting {base_url} you will see the English version of this blog. You can visit the Chinese version by visiting {base_url}/zh.\nA page (post or project) can be available in both languages or only in one language, and it's not necessary that a page is available in the default language.\nSections and navigation menu links\nThe navigation menu is constructed from a list of menu_items in your config.toml. For example:\n\nA menu_item can be one of two things:\n\n\na link to a section. Section links can be optionally configured to display its most recently authored items on your index page. See Configuring section menu items.\n\n\na link to a URL. See Configuring URL menu items\n\n\nConfiguring section menu items\nA section is created whenever a directory (or subdirectory) in the content section contains an _index.md file; see the Zola docs on sections. \nPapaya has two sections by default: projects and blog. You can add additional sections or change section names. For example, you can add a section called Diary. In order to add this section, you need to:\n\n\nCreate a directory called diary in content/.\n\n\nCreate an _index.md inside content/diary/, for example:\n\n\n\nSections can be added to the navigation menu, and optionally configured to display its most recently authored items on your index page. To add your section to the navigation menu:\n\n\nIn your config.toml under the [extra] section, add your section to the menu_items:\n\n\n\nIn your config.toml under the [languages.<code>.translations] section, add your section name translation keys:\n\nThis will add a simple hyperlink to your new Diary section in the navigation menu.\n\n\nTo also display recently authored items from your Diary section on your index page:\n\n\nAdd the following attributes to your menu item:\n\nshow_recent: Adds the section's recent items listing to your index page.\nrecent_items: Number of recent items to display.\nrecent_trans_key: Translation key for the recent items listing title text.\nmore_trans_key: Translation key for the hyperlink text to the section.\n\nFor example:\n\n\n\nIn your config.toml under the [languages.<code>.translations] section, add your section name, recent_trans_key, and more_trans_key translation keys:\n\nThis will add both a hyperlink to your new Diary section in the navigation menu, and a listing of the three most recent items from your Diary section on your index page.\n\n\nConfiguring URL menu items\nIf you want to add a simple link to the navigation menu, add an item with a name and url. For example:\n\nA translation key for your link's name must be added into your config.toml:\n\nIf you include $BASE_URL in the URL of a link it will be replaced with the base URL of your site, and $LANG_BASE_URL will be replaced with the language-specific base URL of your site.\nPost/project date formats\nYou can have different date formats in different languages. You need to set the date_format value in every langauge's translation section.\nExample:\n\nThe formatting uses the standard date filter in Tera. The date format options you can use are listed in the chrono crate documentation.\nPost/project featured images\nPosts and projects can have featured images which display at the top of their page before the page contents.\n\n\nFeatured images can also be extended to the full width of the viewport:\n\n\nOpen Graph Protocol locale/profile information\nIn your config.toml you can add a [extra.ogp] section to specify your Open Graph Protocol locale and profile information.\nOpen Graph Protocol provides you control over how your website's content should be displayed on social media sites. \nFor the more information on Open Graph Protocol and valid property values, visit the official website. \nExample:\n\nUtterances\nUtterances is a comments widget built on GitHub issues. When enabled, Papaya can display GitHub issues as comments on your blog posts.\nTo enable:\n\n\nFollow instructions on the utterances website.\n\n\nOnce you're at the \"Enable Utterances\" step, enter the following keys into your config.toml:\n\n\n\nSocial/contact links\nIn your config.toml you can add a [extra.social] section to specify your social network/contact accounts. Changing these will update what links appear on your website's footer.\nExample:\n\nIf you want to include other custom social websites, you can add them to other:\nExample:\n\nThe font_awesome attribute specifies the Font Awesome classes; you can find them in Font Awesome. Be aware that different versions of Font Awesome may include different sets of icons; you can change your version of Font Awesome by updating the CDN path in the [extra.cdn] section:\n\nImage embedding shortcode\nIncluded with Papaya is a shortcode for embedding images into your posts:\n\nYou can use ./<image-path> to specify the relative path of image which is relative to current markdown file.\nArguments\n\n\npath: The path to the image. It can be either:\n\na full path (eg: https://somesite.com/my-image.jpg), \nrelative to the content directory in the directory structure (eg: @/projects/project-1/my-image.jpg), or\nrelative to the current markdown file (eg: ./my-image.jpg).\n\n\n\nalt: (optional) The alternate text for the image.\n\n\ncaption: (optional) A caption for the image. Text/HTML/Tera templates supported.\n\n\nclass: (optional) Any CSS classes to assign to the image. Multiple classes should be separated with a space (\" \").\n\n\nquality: (optional) JPEG or WebP quality of the image, in percent. Only used when encoding JPEGs or WebPs; default value is 90.\n\n\nextended_width_pct: (optional) The percentage by which the image's width should be expanded past it's default figure width, up to maximum configured pixel width. \nRange is 0.0-1.0, or -1 for document width. \nMax pixel width can be defined in your config.toml with the extra.images.max_width property (2500px default).\nSee Extended width images section for more details and examples.\n\n\nThe benefits of using this shortcode over regular Markdown/HTML image embedding are:\n\nImages are automatically resized for best performance, using Zola's image processing functions\nImages & captions are ✨pre-styled✨ for you\nImages can have their width extended past the document's width (see: Extended width images\nLess HTML/CSS boilerplate to write\n\nExtended width images\nImages embedded into pages using the img shortcode can be configured to extend past their document width. This is especially nice for displaying wide/landscape images at higher resolutions.\nBy default, images embedded with the img shortcode will be inserted as a figure with default margins:\n\n\nWith the extended_width_pct argument, we can specify a percentage of how much the image should expand outside its default figure width, up to your maximum configured image width (config.extra.images.max_width, 2500px default).\nHere's an example with extended_width_pct=0.1:\n\n\nThe image is now displayed with a 10% larger width, while maintaining its original aspect ratio.\nHere's an even wider example:\n\n\nThe images will resize in resolution up to your maximum configured image width, and will display on the webpage up to the maximum width of the viewport.\nYou can also force the image width to match the document's width by setting extended_width_pct to -1:\n\n\nWhy \"Papaya\"?\n🦎\n","id":"https://www.getzola.org/themes/papaya/","title":"Papaya"},"https://www.getzola.org/themes/papermod/":{"body":"Zola PaperMod\n\nA work in progress port of the hugo-PaperMod theme by @adityatelange to Zola \nDue to config changes introduced with Zola 0.19, only Zola 0.19.1 and later are currently supported.\nDemo @ https://cydave.github.io/zola-theme-papermod/\nFeatures\n\n\nBlog post archive\n\nBlog post RSS feeds\n\nTags\n\nTag-based RSS feeds\n\nOptional: Custom taxonomies\n\nLight / Dark theme switching (with configurable default preference)\n\nSyntax highlighting for code snippets (Zola's built-in syntax highlighting)\n\nCustom navigation\n\n3 Modes:\n\n\nRegular Mode\n\nHome-Info Mode\n\nProfile Mode\n\n\n\nCode copy buttons\n\nSearch page\n\nSEO Metadata\n\nLanguage switcher (multi-language support)\n\nInstallation\n\nDownload the Theme\n\n\n\nAdd theme = \"papermod\" to your zola config.toml\nCopy over the example content to get started\n\n\nOptions\nPapermod customizations exist under a designated extra.papermod section.\nRefer to config.toml for available options.\nContributing\nIf you would like to help out porting hugo-Papermod to Zola feel free to pick\nup a feature and start working on it. All help, no matter how small the\ncontribution is highly appreciated.\n","id":"https://www.getzola.org/themes/papermod/","title":"PaperMod"},"https://www.getzola.org/themes/particle/":{"body":"Port for Zola of the Particle Jekyll theme\n\nThis is a simple and minimalist template for Zola designed for developers that want to show of their portfolio.\nThe Theme features:\n\nGulp\nSASS\nSweet Scroll\nParticle.js\nBrowserSync\nFont Awesome and Devicon icons\nGoogle Analytics\nInfo Customization\n\nBasic Setup\n\nInstall Zola\nClone the particle theme: git clone https://github.com/svavs/particle-zola.git\nEdit config.toml to personalize your site.\n\nSite and User Settings\nYou have to fill some informations on the [extra] section of the config.toml to customize your site.\n\nColor and Particle Customization\n\nColor Customization\n\nEdit the sass variables (_vars.scss)\n\n\nParticle Customization\n\nEdit the json data in particle function in app.js\nRefer to Particle.js for help\n\n\n\nTo customize the project lists and the about sections, you need to edit the templates/content.html template file.\nIn future versions will be provided a simpler way.\nQuestions\nHaving any issues file a GitHub Issue.\nLicense\nThis theme is free and open source software, distributed under the The MIT License. So feel free to use this Jekyll theme anyway you want.\nCredits\nThis theme was partially designed with the inspiration from these fine folks\n\nNathan Randecker\nWillian Justen\nVincent Garreau\n\n","id":"https://www.getzola.org/themes/particle/","title":"particle"},"https://www.getzola.org/themes/pico/":{"body":"Configuration\nGeneral\nI am not the best webmaster, but should be somewhat responsive.\nI intentionally using the bigger fonts to make, feel free to change it in main.css\nLight mode\nNow light mode also supported. \nImportant\nPlease make sure to set up your base_url with trailing slash:\n\nComments\nTheme supports Giscuss for comments. The configuration is done via config.toml. Here you can see the example section used for this page deployment:\n\nPage configurations\nCustomize the page blocks by setting configuration in [extra] section:\n\nBlog\nI am using this theme for my notes, or probably blog. \nThe section template supports pagination, tags, sorts the pages by publication date. You may see the working example here\nSearch\nThe theme supports the search using elasticrunrjs. To enable the search, you will need the following configuration in config.toml:\n\nconfig.toml extras\n\ntimeline\n\nCallouts\n\nMermaid\nRead more on how to use mermaid in their documentation\n\n\nThanks to\n\nGiscuss for excellent comments system\nbootstrap icons for great social icons\nUrbanist Font\nMulush Font\n\nScreenshot\n\n","id":"https://www.getzola.org/themes/pico/","title":"pico"},"https://www.getzola.org/themes/polymathic/":{"body":"polymathic\n\npolymathic is a Zola portfolio (and not only) theme. \nI made it for my own portfolio. The theme is called polymathic, inspired by individuals with a wide range of talents. The theme focuses on rich and consistent navigation experience, exposing the variety of topics to chose from, yet allowing the user to focus on a single thread of your story once they've made a choice. \nDocs and theme demo are available here main--polymathic-demo.netlify.app \nBe sure to chek the demo repo and follow zola docs on installing and using a theme\nThis theme uses Bulma scss framework, making the theme styles highly customizable and enabling mobile first theme design.\nThis theme uses Animate.css for animations.\nThis theme adds minimal Open Graph tags to every page head.\nYou can quickly deploy the theme to netlify, theme comes with a config file.\nFeatures\nSee all features demonstrated in the docs. \nMedia support\nThe theme is friendly to wide range of screen sizes from mobile to fullhd. Theme comes with minimal styles for print media.\nDark mode\nTheme includes preference based dark mode as separate stylesheet. No switch.\nAccessibility\nThis theme automatically finds accessible colors when using customizations, with minimal config.\nThis theme supports no script environments.\nThis theme respects user preference for reduced motion.\nNavigation\nThis theme builds navigation for your site. The outcome is highly customizable via your config.toml and front-matter of your sections.\nTemplates\nThe theme comes with templates for index.html, page.html, section.html, taxonomy_list.html, taxonomy_single.html, 404.html. You can use them in your Zola project as is or by extending them, templates are divided in blocks and partials/*.html for convenience of extending the theme.\nBrand and style\nThe theme is highly customizable via config.toml and sass variables. Your customization can start from just the primary color or extend all the way to bulma variables.\nShortcodes\nThe theme comes with several shortcodes for building forms, galleries, navigation cards and banners.\nInstall\nOnce you already have zola installed and ran zola init, then run from your project directory\n\nYou will also need npm installed, then run\n\nFor those using netlify deployments config is available here\n\nIn your config.toml Set zola theme to polymathic\n\nContributing\nIssues or contributions are welcome. Also, curious what you make with it.\n","id":"https://www.getzola.org/themes/polymathic/","title":"polymathic"},"https://www.getzola.org/themes/resume/":{"body":"Zola Resume\nChinese Version\nRedesigned form hugo resume.\nFeatures\n\nThis is basically a single-page website with auto-scrolling based on left-hand nav.\nDedicated project/publications pages allow more detail.\nIncludes a client-side search at '/search'. \nIncludes an /admin endpoint that can allow authorized users to use a WYSIWYG editor and commit files back to markdown, but with a Wordpress/CMS like experience.\n\nQuick Start\n\nInstallation\nJust earlier we showed you how to run the theme directly. Now we start to install the theme in an existing site step by step.\nStep 1: Create a new zola site\n\nStep 2: Install zola-resume\nDownload this theme to your themes directory:\n\nOr install as a submodule:\n\nStep 3: Configuration\nEnable the theme in your config.toml in the site derectory:\n\nOr copy the config.toml.example from the theme directory to your project's root directory:\n\nFor CMS\n\nand change those\n\nStep 4: Add new content\nYou can copy the content from the theme directory to your project:\n\nYou can modify or add new posts in the content/blog, content/projects or other content directories as needed.\nStep 5: Run the project\nJust run zola serve in the root path of the project:\n\nThis will start the Zola development web server accessible by default at http://127.0.0.1:1111. Saved changes will live reload in the browser.\nExamples\n\nSee along's site for a live example.\nSetup & Use\nThis theme uses a combination of custom sections and some data files to drive content.\nSummary\nEdit the main contents/_index.md with a brief bio/summary\nData files\nData files are used for simple content presented on the homepage.\n\ndata/certifications.json\ndata/social.json\ndata/skills.json\ndata/experience.json\ndata/education.json\n\nProjects/Opensource\nThe difference indicates your role as originator or colaborator.\nPublications\nSimilar to projects, create them under publications. Include any papers, speaking engagements, articles, etc.\nBlog / Posts\nSimilar to posts, create them under blog. Include any thoughts, musiings, etc.\nThis template does not support a posts folder\nTemplate params\nAlmost All personal information outside the above details is captured by extra in config.toml, or can be edited in the \"Settings\" collection if using CMS.\nCMS Editor with Netlify CMS\nDoes not require deployment to Netlify!\nNetlify CMS is an open source project that enables CMS like experience for static site generation tools like Hugo. This theme includes a fully working integration and guide in static/admin\nCredits\nThis project ports the Hugo Resume theme by Feng Yunlong to support zola.\n","id":"https://www.getzola.org/themes/resume/","title":"resume"},"https://www.getzola.org/themes/sam/":{"body":"\n\nSam\n\nA Simple and Minimalist theme with a focus on typography and content.\nZola port of hugo-theme-sam.\n\n\nOriginal\nThis is a port of the original hugo-theme-sam theme for Hugo (License).\nSee upstream for source code take from there.\nInstallation\nThe easiest way to install this theme is to either clone it ...\n\n... or to use it as a submodule.\n\nEither way, you will have to enable the theme in your config.toml.\n\nTaxonomies\nSam supports the tags and authors taxonomies.\nTo use them, declare them in your config.toml:\n\nSet them in your page's frontmatter:\n\nSee Zola's documentation for more details.\nOptions\nSee config.toml for an example configuration.\nMenu\nThe menu on the index page is created as follows: If the sam_menu variable is set, it gets used.\n\nIf it is not set, all sections under content will get linked.\nBottom menu\nThis variable decides wether the menu - as mentioned above - will also be displayed at the bottom of pages.\nDefault: false\n\nhome\nSets the name for all links referring to the home page in the menus and the 404 page.\nDefault: home\n\nDate format\nSpecifies how to display dates. The format is described here.\nDefault: %a %b %e, %Y\n\nWord count and reading time\nYou can enable or disable word count and reading time for posts across the whole site:\nDefault: true (both)\n\nIf enabled, you can opt-out per page via front-matter:\nDefault: false (both)\n\nDisable page header\nIf you want to disable the complete header of a page (for example a page which is explicitly not a post), you can do so via front-matter:\nDefault: false\n\nFooter\nTo place some text at the end of pages, set the following:\n\n","id":"https://www.getzola.org/themes/sam/","title":"sam"},"https://www.getzola.org/themes/seagull/":{"body":"Seagull\nA Zola theme.\n\nInstallation\nAdd the theme as a git submodule\n\nEnable the theme in your config.toml\n\nAdd a _variables.sass file in a sass folder\n\nAdd a _index.md file in your content folder.\nFeatures\nFeatures can be seen on the demo website: https://seagull.coinduf.eu/.\nYou can customize the theme with the /sass/_variables.sass file.\nSupport\nI'll provide support on demand on Zola forum if you tag @HugoTrentesaux\nBuild website\nBecause of the hack used to allow theme customization, before building seagull website itself, you need to create an empty file\n\n","id":"https://www.getzola.org/themes/seagull/","title":"Seagull"},"https://www.getzola.org/themes/seje2/":{"body":"Seje2\n\nDemo\n中文 README\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nThis theme requires your index section (content/_index.md) to be paginated to work:\n\nThe posts should therefore be in directly under the content folder.\nand requires your index section (about/_index.md) to be paginated to work:\n\nOptions\nTop-menu\nSet a field in extra with a key of seje2_menu_links:\n\nIf you put $BASE_URL in a url, it will automatically be replaced by the actual\nsite URL.\nLicense\nSet a field in extra with a key of license:\n\n","id":"https://www.getzola.org/themes/seje2/","title":"Seje2"},"https://www.getzola.org/themes/serene/":{"body":"\n\n\nA blog theme for zola, simple and clean\nDemo\n\nhttps://serene-demo.pages.dev\n\nFeatures\n\nA spiffy design, well crafted\nProjects page\nDark mode\nImage zooming\nOut-of-date alert\nSticky table-of-contents\nCallout (note, warning, alert, etc.)\nComments using Giscus\nMathematical notations using KaTeX or Typst\nDiagrams and visualizations using Mermaid\n\nUsage\n\nCheck the USAGE.md of latest branch\nAlso available in Simplified Chinese: USAGE-zh_CN.md (简体中文)\n\n","id":"https://www.getzola.org/themes/serene/","title":"serene"},"https://www.getzola.org/themes/shadharon/":{"body":"Shadharon\nSimple blog theme powered by Zola. See a live preview here.\n\nName derived from the Bengali Word - সাধারণ which translates to \"generic\"\n\n\n Dark theme\n\n\n\n Light theme\n\n\nFeatures\n\n\nThemes (light, dark). Default theme is dark with a switcher in the navbar\n\nProjects page\n\nSocial Links\n\nTags\n\nInstallation\n\n\nInitialize Git Repo if not initialized\n\n\nDownload the theme\n\n\n\n\n\nAdd theme = \"shadharon\" to your config.toml\n\n\nCopy the example content\n\n\n\nCustomization\n\n\nFor customization refer to config.toml files, which has comments.\n\n\nFor customizing the banner on the homepage the content/posts/_index.md needs modification. The desc variable under extra, specifically. You could delete this as well to remove banner. For an about page or any aditional page an .md file in the \"content\" directory will do.\n\n\nYou can add stylesheets to override the theme:\n\nThese filenames are relative to the root of the site. In this example, the two CSS files would be in the static folder.\nReferences\nThis theme takes inspiration from \n\napollo.\nTania's Website\nAnpu Zola Theme\n\n","id":"https://www.getzola.org/themes/shadharon/","title":"shadharon"},"https://www.getzola.org/themes/simple-dev-blog/":{"body":"\nsimple-dev-blog-zola-starter\nA simple dev-blog theme for Zola. It uses no JavaScript, prerenders links between navigation, blog posts and tags and adds common tags for SEO.\nYou can view it live here.\nHow to get started\nTo create a new Zola site, first download the CLI and install it on your system. This theme requires Zola version 0.14 or greater.\nYou can find installation instructions on the Zola website.\n\n\nAfter you've installed the Zola CLI, run the following command to create a new site:\n\n\n\nAfter you've created the site, install the \"Simple Dev Blog\" theme like so:\n\n\n\nNow in your config.toml file, choose the theme by setting theme = \"simple-dev-blog\".\n\n\nThis theme uses the tags taxonomy, in your config.toml file set taxonomies = [ { name = \"tags\" } ]\n\n\nCopy across the default content from the theme by running cp themes/simple-dev-blog/content/* ./content -r\n\n\nThat's it! Now build your site by running the following command, and navigate to 127.0.0.1:111:\n\n\n\nYou should now have a speedy simple dev blog up and running, have fun!\nCustomisation\nLook at the config.toml and theme.toml in this repo for an idea, here's a list of all the options:\nGlobal\nThe following options should be under the [extra] in config.toml\n\naccent_light - a lighter shade of your site's accent color\naccent - your site's accent color\nblog_path - the path to your blog (defaults to blog)\ndefault_og_image - the path default og:image for your page\nfooter_about - the content for your footer in markdown\nicon - the path to the icon for your site in the content folder\n\nE.g to add the file icon.png you should put it in content/icon.png\n\n\nnav - see theme.toml, the navigation links for your site\nnot_found_message - the content for your 404 page in markdown\nprofile_large - the path to a larger vertical version of your profile picture in the content folder\nprofile_small - the path to a small version of your profile picture in the content folder\n\nPage\nThe following options should be under the [extra] section of each page\n\nthumbnail - the path to your og:image for that page\n\n","id":"https://www.getzola.org/themes/simple-dev-blog/","title":"simple-dev-blog"},"https://www.getzola.org/themes/slim/":{"body":"Slim\nSlim is a minimal, clean and beautiful theme for Zola.\nThis theme was ported to Zola, the original is available at zhe/hugo-theme-slim. It is excellent, thank you zhe!\n\nDemo.\nInstallation\n\nSee the official docs for more information.\nConfiguration\nSlim supports a tags taxonomy by default. This can be enabled by setting it in your config.toml:\n\nThere are a couple of extra options supported:\n\nLicense\nOpen sourced under MIT license.\n","id":"https://www.getzola.org/themes/slim/","title":"Slim"},"https://www.getzola.org/themes/soapstone/":{"body":"Soapstone\nA divless dark theme for zola. See it in action.\n\nSee installation for installation directions.\nExtra config\nThe following config is optional, but can add a few niceties.\n\n","id":"https://www.getzola.org/themes/soapstone/","title":"Soapstone"},"https://www.getzola.org/themes/solar-theme-zola/":{"body":"Solar Theme for Zola\nPort of Solar theme for Hugo to Zola.\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nAdd title and description:\n\nOptions\nColor schemes\nSet color scheme to (Solarized) dark or (Solarized) light with highlight_theme option:\n\nSidebar menu\nSet a field in extra with a key of site_menus:\n\nEach link needs to have a url and a name.\n","id":"https://www.getzola.org/themes/solar-theme-zola/","title":"solar-theme-zola"},"https://www.getzola.org/themes/tabi/":{"body":"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\ntabi\nA fast, lightweight, and modern Zola theme with multi-language support. It aims to be a personal page and home to blog posts.\nSee a live preview (and the theme's documentation) here.\nExplore the Sites Using tabi section to see real-world applications.\n\ntabi (旅, /tɐˈbi/): Journey.\n\n\ntabi has a perfect score on Google's Lighthouse audit:\n\nFeatures\n\n\nSet any language as default. Set your base site to Chinese, Spanish, French, Hindi… or any other supported language. The theme's interface will be translated accordingly.\n\nIntegration with remote repositories on GitHub, GitLab, Gitea & Codeberg for commit history and showing the site source.\n\nDark and light themes. Defaults to the OS setting, with a switcher in the navigation bar.\n\nThorough documentation. See Mastering tabi Settings: A Comprehensive Guide.\n\nPerfect Lighthouse score (Performance, Accessibility, Best Practices and SEO).\n\nComprehensive multi-language support. Add as many languages as you wish.\n\nSupport for comments using giscus, utterances, Hyvor Talk, or Isso.\n\nCode syntax highlighting with colours based on Catppuccin Frappé.\n\nLocal search with an accessible, multi-lingual interface.\n\nCustom Twitter card and automatic Open Graph tags.\n\nKaTeX support for mathematical notation.\n\nStylized and human readable Atom feed.\n\nStylized and human readable sitemap.\n\nMail encoding for spam protection.\n\nAll JavaScript can be fully disabled.\n\nCustomizable Table of Contents.\n\nCustomizable secure headers.\n\nCopy button for code blocks.\n\nQuick navigation buttons.\n\nCustom copyright notice.\n\nCustom canonical URLs.\n\nCustom shortcodes.\n\nCustomizable skins.\n\nSocial media cards.\n\nResponsive design.\n\nProjects page.\n\nArchive page.\n\nSocial links.\n\nTags.\n\nInstallation\nTo add tabi to you existing Zola site:\n\nInitialize a Git repository in your project directory (if you haven't already):\n\n\n\nAdd the theme as a git submodule:\n\n\nOr clone the theme into your themes directory:\n\nRequired configuration\n\nEnable the theme in your config.toml:\n\n\n\nSet a title in your config.toml:\n\n\n\nConfigure code block highlighting in your config.toml:\n\n\n\nCreate a content/_index.md file with the following content:\n\n\nIf you want to serve your blog posts from a different path, such as blog/, add a section_path in the [extra] section of content/_index.md (this file will need pagination):\n\nNote: use the full path to the section's _index.md file. Simply using section_path = \"blog/\" will not work.\n\nIf you want an introduction section (see screenshot above), add these lines to content/_index.md:\n\n\nThe content outside the front matter will be rendered between the header title and the posts listing. In the screenshot above, it's the text that reads \"tabi is a fast, lightweight, and modern Zola theme…\".\n\nIf you want a multilingual site, you will need to set up each language. In config.toml, set the title and taxonomies for each language, like:\n\n\nYou will need an _index.{language_code}.md per language for each section (e.g. /blog or /projects) that you want to enable in that language.\nThe same is true for individual posts, which should have the exact same name as the default language, with an extra .{code} before the extension (e.g. the Spanish version of security.md would be security.es.md).\nThis configuration allows the language switcher to take the user to the translation of the current URL. If a translation doesn't exist, the 404 page will be displayed, with an explanation in each language set in the config.\nTo learn more about multilingual support, see the Frequently Asked Questions.\nUpdating tabi\nIf you added the theme as a git submodule, run:\n\nIf you cloned it:\n\nSites using tabi\nWebsiteCreatorDescriptionSite Source\nosc.gardenÓscar Fernández (welpo)Data science, psychology, and ZolaSource\nsandip.liveSandip G (sandman)Startups, tech and the good lifeSource\nseadve.github.ioDave Patrick Caberto (SeaDve)Personal blog and portfolio with custom CSSSource\nmikufan.pageNadiaPersonal blogSource\ntim-boettcher.onlineTim BöttcherInsights and ramblings of a deafblind programmerSource\nwww.richtman.auAriel RichtmanPersonal tech blogSource\n\nUsing tabi? Feel free to create a PR and add your site to this list.\nInspiration\nThis theme was inspired by:\n\nshadharon — tabi started as a fork of syedzayyan's theme;\ntailwind-nextjs-starter-blog;\nabridge;\ninternetVin's blog.\n\nContributing\nPlease do! We appreciate bug reports, improvements to translations or documentation (however minor), feature requests…\nTake a look at the Contributing Guidelines to learn more.\nLicense\nThe code is available under the MIT license.\n","id":"https://www.getzola.org/themes/tabi/","title":"tabi"},"https://www.getzola.org/themes/tale-zola/":{"body":"Tale-Zola Theme\nTala-Zola is a minimal Zola theme helping you to\nbuild a light and seo-ready blog, and you can customise any information of the\nblog without having to modify the codes of the template. Tala-Zola is a port of\nthe Jekyll theme Tale.\nDemo\nLive Preview.\nRequirements\nBefore using the theme, you need to install the Zola ≥ 0.13.0.\nQuick Start\n\nInstallation\nJust earlier we showed you how to run the theme directly. Now we start to\ninstall the theme in an existing site step by step.\nStep 1: Create a new zola site\n\nStep 2: Install Tale-Zola\nDownload this theme to your themes directory:\n\nOr install as a submodule:\n\nStep 3: Configuration\nEnable the theme in your config.toml in the site derectory:\n\nOr copy the config.toml.example from the theme directory to your project's\nroot directory:\n\nStep 4: Add new content\nAdd an _index.md file to your content directory with some lines as bellows.\n\nAdd a blog article file with a filename first-post.md (or other filenames) and\ninput some content in it.\n\nOr you can just copy the content from the theme directory to your project:\n\nStep 5: Run the project\nJust run zola serve in the root path of the project:\n\nTale-Zola will start the Zola development web server accessible by default at\nhttp://127.0.0.1:1111. Saved changes will live reload in the browser.\nCustomisation\nYou can customize your configurations, templates and content for yourself. Look\nat the config.toml, theme.toml and templates files in this repo for an idea.\nIn most cases you only need to modify the content in the config.toml file to\ncustom your blog, including different expressions in your speaking language.\nNecessary Configurations\nAdd some information for your blog.\n\nSet the tags for the site.\n\nAdd menus and footer information for your blog.\n\nOption Configurations\nAdd your name as the author name for the blog globally.\n\nUse Google Analytics. Add your own Google Analytics ID.\n\nWhether to use Disqus globally and set to your disqus id name.\nAnd you can enable the disqus on per post page with extra.disqus option\n\nCode syntax highlighting. See also syntax highlighting.\n\nUse KaTeX to support the math notation\n\n\nNote: You can also add the katex option on per mardown file of the page or section.\n\nSet date format in the site\n\nSEO settings, like Open Graph + Twitter Cards\n\nChange the words in your speaking language.\n\nCustom CSS styles\nJust add your own styles to sass/_custom.scss file.\nReporting Issues\nWe use GitHub Issues as the official bug tracker for the Tale-Zola. Please\nsearch existing issues. It’s\npossible someone has already reported the same problem.\nIf your problem or idea is not addressed yet, open a new issue.\nContributing\nWe'd love your help! Please see CONTRIBUTING.md to learn\nabout the kinds of contributions we're looking for.\nLicense\nTale-Zola is distributed under the terms of the\nMIT license.\n","id":"https://www.getzola.org/themes/tale-zola/","title":"tale-zola"},"https://www.getzola.org/themes/tilde/":{"body":"tilde\nLightweight and minimal blog theme for the Zola\nstatic site generator.\nLive demo is available here:\nhttps://savoy.srht.site/blog-demo\n\n\nInstallation\nTheme documentation\nClone this repository into your site's themes directory or add it as a\nsubmodule:\n\nConfiguration\nThis theme offers the following config options:\n\n","id":"https://www.getzola.org/themes/tilde/","title":"tilde"},"https://www.getzola.org/themes/toucan/":{"body":"Toucan\nA light theme for Zola adapted from Pelican.\n\nInstallation\nYou can add the theme as a submodule :\n\nand enable the theme in your config.toml\n\nUsage\nCategories will be added to the menu, and all articles from categories with\n\nwill be listed in the home page.\nYou can personalize the following options :\n\n","id":"https://www.getzola.org/themes/toucan/","title":"Toucan"},"https://www.getzola.org/themes/tranquil/":{"body":"\n\n\nA blog theme for Zola. Simple, elegant and uses Tailwind. Based on Isunjns Serene theme.\nDemo\n\nhttps://teadrinkingprogrammer.github.io/tranquil-demo/\nMy own blog: https://teadrinkingprogrammer.github.io\n\nFeatures\n\nA simple and elegant design.\nProjects page: display a list of the projects you have worked on with links.\nTheme toggle: switch between light and dark theme regardless of your browser preference.\nImage zooming using Lightense: zoom in on images by clicking on them.\nOut-of-date alert: show alerts when your post is outdated.\nCallouts (note, warning, alert, etc.) that can be used right in Markdown.\nComments using Giscus.\nMathematical notations using KaTeX.\nDiagrams and visualizations using Mermaid.\n\nShoutouts\nThis theme wouldn't have existed without Isunjns Serene theme. It's a great theme, so go check that one out as well.\nWhen I doubted about layout, I always went to look at FasterThanLimes blog to see how he did it.\nOf course, this website wouldn't render without Zola and it wouldn't show anything without Tailwind.\nTranquil vs Serene\nTranquil is a fork of Serene. The main reason to fork was not that I thought Serene was bad: I just wanted to try out Tailwind for a while and reimplementing a blog theme seemed like the perfect way to do so.\nThe main and pretty much only difference between Tranquil and Serene is that the styling is built from scratch with Tailwind. The icons have also been changed to align better with Tailwind.\nUsage\n\nCheck the USAGE.md of main branch.\n\nContributing\n\nBefore you make any non-trivial changes, consider opening an issue so we can discuss the change.\n\n","id":"https://www.getzola.org/themes/tranquil/","title":"tranquil"},"https://www.getzola.org/themes/zallery/":{"body":"Zallery theme for Zola\nGallery and portfolio theme for Zola.\nDemo Site: gamingrobot.github.io/zallery-demo\nPersonal Portfolio: gamingrobot.art\nScreenshots\nLight modeDark mode\n\n\nFeatures\n\nDark and Light mode\nAuto creation of mobile friendly images\nAuto creation of thumbnails\nAuto conversion of images\nMaximize button on images\nmedium-zoom support\nModelViewer and Sketchfab support\nVideo embed support\nOpenGraph and Twitter embed support\nResponsive and mobile friendly\n\nInstallation\nClone the theme into the themes folder:\n\nNote: It is recomended that you copy the config.toml from the themes/zallery folder to the root folder of your site.\nThen set your theme setting in config.toml to zallery:\n\nCustomization\nTo customize the theme's colors you will need to copy the _variables.scss into your sites sass folder and create a zallery.scss file with:\n\nSee the demo site for an example: github.com/gamingrobot/zallery-demo/tree/master/sass\nOptions\nMenu Items\nCustomize the header navigation links\n\nBrowser Bar Theme Color\nCustomize color to set the browser's url bar on mobile\n\nAuthor Url\nUrl used for the name in the copyright\n\nCover Image\nCover image to use on the main gallery pages for opengraph and twitter embeds\n\nCopyright and Powered by\nTo hide the copyright set this to true\n\nTo hide the \"Powered by Zola & Zallery\" set this to true\n\nGallery\nSettings for the gallery view's thumbnails\n\nimg shortcode settings\nSettings for the img shortcode, allowing for automatic conversion and creating mobile friendly images\n\nFrontmatter settings\nThese settings are for the frontmatter on each artwork\n\nJavascript libraries\nModelViewer\nSet to true to enable modelviewer support. This can also be set in the artwork frontmatter or in config.toml\n\nJSZoom\nSet to true to enable javascript zoom support.\n\nGoatCounter\nSet to the goatcounter tag to enable goatcounter support\n\nShortcodes\nimg\n\n\nsrc (required) - Image path\nmobile_src (optional) - Mobile friendly version\nalt (optional) - Alt text\ntext (optional) - Text to put under the image (if alt is not specified, text will be use for alt text)\nfit (optioanl) - Defaults to fit-view, can be set to max-width to make the image fill the width of the page\n\nvideo\n\n\nsrc (required) - Video path\nautoplay (optional) - Set to true to enable autoplay\n\nyoutube / vimeo\n\n\nid (required) - Id of the video\nautoplay (optional) - Set to true to enable autoplay\n\nmodel\nNote: Requires modelviewer to be enabled in config.toml\n\n\nsrc (required) - Model path\nskybox (optional) - Skybox HDR\nposter (optional) - Image to show when loading\nalt (optional) - Alt text\n\nsketchfab\n\n\nid (required) - Id of the model\n\n","id":"https://www.getzola.org/themes/zallery/","title":"zallery"},"https://www.getzola.org/themes/zerm/":{"body":"zerm\na minimalist and dark theme for Zola.\n\nLive Preview!\nLargely a port of Radek Kozieł's Terminal\nTheme for Hugo. 4/5ths of my way\nthrough porting this theme, I discovered Paweł Romanowski own independent fork\nfor Zola, Terminimal,\nwhich helped me get the PostCSS to Sass styling conversion done more\nquickly. My sincerest thanks to both of you!\ndifferences\nThis theme is largely true to the original by Radek, but there are some mild\ndifferences. They are almost all stylistic in nature and are intended to\nemphasize minimalism even more. Some of them are as follows:\n\ntags are now included in a post's meta data.\nno post image previews.\ncategories are included in the taxonomy.\nbullet points have slightly more margin and different symbols for nesting.\nno social media or comment support.\n\nSome of these might be added later and PR's are always\nwelcomed.\nconfiguration\nPlease follow the Zola documentation for how to use a\ntheme.\nIn config.toml, you will find all values for customization that are supported\nthus far have documentation explaining how they are used. If there is any confusion or something is not working as intended, please open an issue!\nmath\nYou can use KaTeX for mathematical typesetting.\nAssets are only available if you opt-in on a per-page level through\na single line (math=true) on the extra section of the page frontmatter.\n\nPages wich doesn't opt-in are not affected in any way, so you doesn't have\nto worry about any performance hit.\nlicense\nMIT. See LICENSE.md for more details.\n","id":"https://www.getzola.org/themes/zerm/","title":"zerm"},"https://www.getzola.org/themes/zhuia/":{"body":"Zhuia\n\nAn elegant but still playful theme for Zola powered by Spectre.css.\nIt is especially optimized for mobile navigation (optionally without JavaScript, if you don't like fancy stuff).\nDEMO: https://zhuia.netlify.app/\nContents\n\nInstallation\nFeatures\nOptions\n\nTitle\nSEO\nMenu\nSocial\nFooter\n\n\nName\nGenesis\nDonate\nLicense\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nPosts should be placed directly in the content folder.\nTo sort the post index by date, enable sort in your index section content/_index.md:\n\nFeatures\n\n\nLightweight and minimal\n\nSpectre CSS classes to manage content. Look at the docs\n\nResponsive for mobile support (with full-page mobile menu)\n\nSCSS based CSS source files for easy customization\n\nHTML based sidebar widget\n\nAuthor card sidebar widget with customizable avatar\n\nMulti-author support\n\nOptional twitter sidebar widget\n\nFeed RSS/Atom\n\nOpen Graph and Twitter Cards support\n\nSocial buttons with icons\n\nDeploy via Netlify (config already included)\n\nTags AND categories\n\nGranular image optimization for a really faster loading on mobile\n\nPagination\n\nEasily extendable menu\n\nInter-page pagination\n\nOptional NoJs\n\nHamburger animation\n\nComments\n\nRelated posts (not sure about this)\n\nSearch bar\n\nMath rendering\n\nOther shortcodes\n\nMultilanguage support\n\nDark mode\n\nTable of Contents\n\nImage + text title option\n\nOptions\nTitle\nSet a title and description in the config to appear in the site header and on the RSS feed:\n\nSEO\nMost SEO tags are populated by the page metadata, but you can set the author and for the og:image tag provide the path to an image:\n\nMenu\nYou can choose between two modes:\n\nWith a small script for an elegant overlay menu\nWithout any scripts at all (it just your show menu underneath)\n\n\nSocial\nSet a field in extra with a key of footer_links:\n\n\nThe theme automatically picks up the right icons.\nWe can expand the support to other social, for sure: make a PR or open an enhancement issue to ask a new implementation.\nFooter\nYou can add your own copyright or whatever to the footer with a through a simple option on the config file:\n\nName\nThe name arise from two parts:\n\nThe generator, Zola, gives the \"Z\";\nAn extinct species of New Zealand wattlebird, the huia, provide the second part.\n\nThe theme is built on Spectre CSS framework, so I found reasonable evoking a spectral species.\nGenesis\nThis theme is based on a Pelican theme I originally made for my blog, which was in turn based on the \nGrav theme Quark.\nDonate\nDid you liked this theme? Make a donation and support new features!\n\nLicense\nOpen sourced under the MIT license.\n","id":"https://www.getzola.org/themes/zhuia/","title":"Zhuia"},"https://www.getzola.org/themes/zola-386/":{"body":"ZOLA.386\n\nLive demo\nZOLA.386 is a port of the BOOTSTRA.386 theme and was based on:\n\nBOOTSTRA.386: main idea, design.\nHUGO.386: item placement.\nDinkleberg: internal structure and SEO.\nafter-dark: navbar and minor components.\n\nZOLA.386 is a theme that refers to the 90s, but with cutting edge features to be fast and responsive.\nInstallation\nThe easiest way to install ZOLA.386 is to clone this repository and build your site upon it:\n\nOf course you can install it just as another theme for your site, but ZOLA.386 must be added as a module:\n\nConfiguration\nConfiguration is mainly done in config.toml and here I'll describe the main topics.\nGlobal\nconfig.toml starts with the global variables. All of these items are important, but it is fundamental to create two taxonomies at least:\n\nRemember that all descriptions (config.description and page.description) are shown on the index page, one at the header and the others through the body.\nExtras\nZOLA.386 comes with a lot of extra variables which eases the creation and maintenance of the site, so it's important to review all of them after installing the theme.\nThe zola386_menu composes the navbar and is created by setting up a path, which will be appended to the base_url and the name will appear on the navbar.\n\nSocial\nZOLA.386 is also prepared to deal with Google Analytics, Disqus, and Twitter --Open Graph Protocol is welcome. This theme is prepared to use the output of Favicon Generator, to do so, you'll just need to download the output of that site and extract in static/images. \nAs said, Disqus is supported, but besides setting the username in config.toml, you also must to put a comments = true extra option on the pages where Disqus will be enabled --this gives you the freedom to enable or disable comments on certain posts. You can use the extra option image on each page, to represent that post.\nAnimations\nAll JavaScript animations can be set at static/js/zola386.js. Basically you can disable all animations, use one or two scans, and change the scan speed. Personally, I prefer only one scan with a speed factor of 5.\nLanguage\nUnder the label_ variables, you can set names to better localize your site. Note that you can change the language of a single page, by using page.extra.lang, which causes <html lang=\"\"> to change only on that page. A theme to provide information for its owner and SEO-friendly.\nSearch\nSearch was implemented according to the official documentation. It uses JavaScript to search on an indexed version of the site based on search_index.LANG.js, elasticlunr.min.js, and search.js --the first two are generated after each build. If you're running your site in other default language other than English, you must change the search_index.LANG.js line in index.html, setting up LANG accordingly.\nOther files\nThe content\\_index.md file must be properly configured to provide better experience. Check out this file for more information.\nThe 404 page is almost hardcoded, so you must edit it directly.\nLicense\nThis theme is released under the MIT license. For more information read the License.\n\n","id":"https://www.getzola.org/themes/zola-386/","title":"zola.386"},"https://www.getzola.org/themes/zola-easydocs-theme/":{"body":"An easy way to create a document library for your project\nDemo: https://easydocs.codeandmedia.com/\nThis theme for Zola (static site engine) helps you build and publish your project docs easily and fast. Zola is just one binary that outputs html-pages and additional static assets after building your docs written in Markdown. Thus, you can take the theme, your md-files, Zola and gain flexible and simple website for documentation. \nStep-by-step\nAs you may have heard Zola is quite flexible :) So, the scenario below is one of hundreds possible ways to make things done, feel free to find your best. Also, Zola provides their own mechanism to install and use themes, see the docs. \n\nFork the repo and replace demo-content inside content folder with yours. But take a look to _index.md files. It contains title and when you want to have anchor right of your headers add insert_anchor_links = \"right\" to each index. theme.toml, screenshot and readme may be deleted too. \nInside config.toml change URL and title on your own. In extra section you can specify path to your GitHub API for version below the logo on nav, favicon and logo itself. Or just remove the lines if you don't need it. Also, you can configure or turn on some additional settings related to Zola. Specification is here.\nIn sass/_variables.scss you may change font, color or background if you want.\nAlmost done. Now, you should decide how you want to build and where will be hosted your website. You can build it locally and upload to somewhere. Or build in GitHub Actions and host on GitHub Pages / Netlify / CloudFlare Pages / AnyS3CloudStorage. Howto for GitHub Pages. My example of GitHub workflow with 2-steps build (the first checks for links and spelling errors, the second uploads to Azure). Dockerfile to make Docker image.\n\nProvided configurations options\nThese options can be configured in the extra section of the config.toml.\nIf any are not present it has the same behaviour as the default which is shown in the starter config.toml.\n\neasydocs_logo_always_clickable controls if the logo is always clickable. By default the logo is only clickable if you are not on the home page. If this is enabled it will make the logo clickable when you are on the home page as well. Thus on the home page it will basically just refresh the page as it will take you to the same page.\neasydocs_uglyurls provides support for offline sites that do not use a webserver. If set to true links in the nav are generated with the full path indcluding index.html. This functionality was insired by Abridge theme. Note that for this to work it also requries the base URL to be set to the local folder where the site will be stored eg. base_url = file:///home/user/mysite/public/. Therefore this is not portable and only works with a specific local folder, but does not require a webserver to navigate the site.\neasydocs_heading_threshold controls minimum number of headings needed on a page before the headings show in the navigation on the left. Defaults to 5. Can be used for example to always show headings on each page by setting it to 1.\n\nEnjoy your docs!\n\nIcons: Office UI Fabric Icons\nCopy-code-button: Aaron Luna\n\n","id":"https://www.getzola.org/themes/zola-easydocs-theme/","title":"EasyDocs"},"https://www.getzola.org/themes/zola-grayscale/":{"body":"Zola Grayscale\n\nA port of the Start Bootstrap Grayscale theme, for Zola.\nUpdated to use the latest Bootstrap 5.3.3.\n\n\nDemo\nHow to Customize\n\nConfiguration\nNavigation\nContacts\nMasthead\n\nBackground Image\n\n\nContent\nAbout\nProjects\nSignup\nContact\nFooter\n\n\nMacros\n\nDebug\nTitle\nGoogle Analytics\n\n\nMisc\n\n\nDemo\nLive Demo\nHow to Customize\nThe majority of customisation is done through template inheritance.\nEvery section and subsection of the page has a template {%/* block */%} that you\ncan override with your own content.\nStart by copying themes/zola-grayscale/contact.toml and\nthemes/zola-grayscale/navigation.toml to your site root folder.\nThen create your own site templates/index.html with the following contents:\n\nIf you don't want a particular section in your page override it with an empty\nblock, for example this will remove the about section of the page:\n\nConfiguration\nThe config.toml file has some basic configuration used by the page including:\n\ntitle\nauthor\ndescription\ngoogle_analytics_tag (optional)\nsb_forms_api_token\n\nNavigation\nThe page navigation is customised through the navigation.toml file.\nEdit this file to change the names and paths to link to.\nYou can add additional item's and they will be automatically added to the\nnavigation bar.\nThe home link in the left of the navigation bar uses config.title by default\nor can be customised with the nav_home_title block.\n\nContacts\nThe contacts section of the page is managed via in the contacts.toml which has\ntwo types of items:\n\ncontact for the contact cards.\nsocial for the social network links.\n\nModifying, adding, or removing items from these lists will automatically update\nthat section of the page.\nBoth contact item types use Font Awesome icons\nfor their icon value.\nMasthead\nThe entire masthead section can be overridden with your own markup like so:\n\nThe following sub-blocks are provided for further customisation:\n\nmasthead_title:\ndefaults to config.title\nmasthead_description:\ndefaults to config.description\nmasthead_button\nmasthead_button_url\nmasthead_button_tag\nmasthead_button_label\n\nBackground Image\nThe background image of the masthead can be changed by creating the directory\nstatic/assets/img copying your own image to\nstatic/assets/img/bg-masthead.jpg in your own site.\nContent\nA content block wraps the About](#about), [Projects sections of\nthe page to allow you to completely replace the content of the page with your\nown markup.\n\nAbout\nThe entire about section can be overridden with your own markup like so:\n\nThe following sub-blocks are provided for further customisation:\n\nabout_title\nabout_description\nabout_image\n\nProjects\nThe entire projects section can be overridden with your own markup like so:\n\nThe section has these sub-blocks:\n\n\nprojects_id:\nset the html id attribute for the projects section.\n\n\nfeatured_project with these sub-blocks for customisation:\n\nfeatured_project_thumbnail:\nAllows overriding the markup of the project thumbnail.\nfeatured_project_content:\nAllows overriding the markup of the project content.\nfeatured_project_title\nfeatured_project_description\n\n\n\nproject_1 with these sub-blocks for customisation:\n\nproject_1_thumbnail:\nAllows overriding the markup of the project thumbnail.\nproject_1_content:\nAllows overriding the markup of the project content.\nproject_1_title\nproject_1_description\n\n\n\nproject_2 with these sub-blocks for customisation:\n\nproject_2_thumbnail:\nAllows overriding the markup of the project thumbnail.\nproject_2_content:\nAllows overriding the markup of the project content.\nproject_2_title\nproject_2_description\n\n\n\nextra_projects to add extra content as you wish.\n\n\nSignup\nThe entire signup section can be overridden with your own markup like so:\n\nThe following sub-blocks are provided for further customisation:\n\nsignup_id:\nset the html id attribute for the signup section.\nsignup_icon:\nthe Font Awesome icon to use.\nsignup_title\nsignup_form\n\nContact\nThe entire contact section can be overridden with your own markup like so:\n\nThe following sub-blocks are provided for further customisation:\n\ncontact_id:\nset the html id attribute for the contact section.\ncontact_contact\ncontact_social\n\nFooter\nThe entire footer section can be overridden with your own markup like so:\n\nThe following sub-blocks are provided for further customisation:\n\nfooter_copyright\nfooter_debug:\ncustomise the debug macro call.\nextra_footer:\nto add extra content as you wish.\n\nMacros\nDebug\nThe debug macro can be used by setting config.extra.debug to true.\nThis will then add a debug button to the footer of the page to allow you to\ninspect, by default, the __tera_context in a pop-out sidebar.\nIf you want to debug other context information you can customise it like so.\nFor example, to debug the config context:\n\nTitle\nThe title macro can be used to set the title for any additional pages you\nmight create.\nGoogle Analytics\nThe google_analytics macro can be used to insert code for Google Analytics.\nSet config.extra.google_analytics_tag to your tag id.\nMisc\nThe extra_head block can be used to add extra markup to the end of the\n<head> of the page.\nThe extra_scripts block can be used to add extra scripts to the end of the\npage.\nstatic/css/custom.css can be created and used to add any custom CSS.\n","id":"https://www.getzola.org/themes/zola-grayscale/","title":"zola-grayscale"},"https://www.getzola.org/themes/zola-hacker/":{"body":"Hacker theme for Zola\nZola Hacker is a minimalistic theme for Zola, inspired by the Hacker theme for Jekyll. It is designed for developers who want to write blogs.\nDemo\nLive Preview.\nRequirements\nBefore using the theme, you need to install the Zola ≥ 0.19.1.\nQuick Start\n\nInstallation\nJust earlier we showed you how to run the theme directly. Now we start to\ninstall the theme in an existing site step by step.\nStep 1: Create a new zola site\n\nStep 2: Install Zola Hacker Theme\nDownload this theme to your themes directory:\n\nOr install as a submodule:\n\nStep 3: Configuration\nEnable the theme in your config.toml in the site directory:\n\nOr copy the config.toml from the theme directory to your project's\nroot directory:\n\nStep 4: Add new content\nYou can copy the content from the theme directory to your project:\n\nYou can modify or add new posts in the content/posts, content/pages or other\ncontent directories as needed.\nStep 5: Run the project\nJust run zola serve in the root path of the project:\n\nCommand will start the Zola development web server accessible by default at\nhttp://127.0.0.1:1111. Saved changes will live reload in the browser.\nCustomisation\nYou can customize your configurations, templates and content for yourself. Look\nat the config.toml, theme.toml, content files and templates files in this\nrepo for an idea.\nGlobal Configuration\nThere are some configuration options that you can customize in config.toml.\nConfiguration options before extra options\nSet the tags taxonomy in the config.toml:\n\nConfiguration options under the extra\nThe following options should be under the [extra] in config.toml\n\nlanguage_code - set HTML file language (default to en-US)\ntitle_separator - the separator to your site title, like | and - (defaults to |)\nlogo - path to the logo image\ngoogle_analytics - Google Analytics tracking ID\ntimeformat - the timeformat for the blog article published date\ntimezone - the timezone for the blog article published date\nedit_page - whether to show the edit page in the github repo for your posts\nmenu - set the menu items for your site\ncontact_form_script_id - the script id for the contact form based on Google Script\n[extra.github] - set the GitHub metadata for your site\n[extra.giscus] - set the Giscus settings for your site to enable the comments\n[extra.opengraph] - set the Open Graph metadata for your site\n[extra.pgp_key] - set pgp key in the footer for certain pages\nsocial_links - set the social media links in the footer\n...\n\nTemplates\nAll pages are extend to the base.html, and you can customize them as need.\nShortcodes\nThe theme provides some shortcodes to help you write your content:\ncontact_form\nThe contact_form shortcode is based on Google Apps Mail to send emails without a server.\nIt depends on contact_form_script_id in the config.toml.\n\ncv\nThe cv shortcode is used to display the CV in the page. Data for CV is stored in yaml format in the data/cv directory.\n\ngithub_avatar\nThe github_avatar shortcode is used to display the GitHub avatar image. It depends on extra.github.username in the config.toml. Also, you can pass size as an argument.\n\nprojects\nThe projects shortcode is used to display repositories from GitHub. It depends on extra.github.username in the config.toml and extra.repo_names in page front matter to filter the repositories.\n\nReporting Issues\nWe use GitHub Issues as the official bug tracker for the Zola Hacker Theme. Please\nsearch existing issues. It’s\npossible someone has already reported the same problem.\nIf your problem or idea is not addressed yet, open a new issue.\nLicense\nZola Hacker Theme is distributed under the terms of the\nMIT license.\n","id":"https://www.getzola.org/themes/zola-hacker/","title":"zola-hacker"},"https://www.getzola.org/themes/zola-henry/":{"body":"henry\nHenry is a single-column Zola theme based on the original Jekyll styles.\nDemo -> https://sirodoht.github.io/zola-henry/\n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nOptions\nNav links\nSet a field in extra with a key of henry_links:\n\nEach link needs to have a url and a name.\nFooter GitHub icon link\nBy default Henry ships with GitHub icon link in the right side of the footer. You can change its link href in your config.toml.\n\nFooter Twitter icon link\nTwitter is too mainstream and a bit lame, but 100% of our users have requested, so we offer it.\n\nLicense\nMIT\n","id":"https://www.getzola.org/themes/zola-henry/","title":"henry"},"https://www.getzola.org/themes/zola-minimal/":{"body":"\n📚 Minimal\n \n \n \n \n \n\n\nMinimal is a Zola theme with the goal of helping you build a light, fast, and SEO ready landing page or website.\nIt is based on the Jekyll theme with the same name.\nCheck out the demo.\n\n\n🚀 Quick Start\nBefore using the theme, you need to install Zola ≥ v0.18.0.\n\nFor more detailed instructions, visit the Documentation page about installing and using themes.\n🎨 Customization\nYou can change the configuration, templates and content yourself. Refer to the config.toml, and templates for ideas. In most cases you only need to modify the contents of config.toml to customize the appearance of your blog. Make sure to visit the Zola Documentation.\nAdding custom CSS is as easy as adding your styles to sass/_custom.scss. This is made possible because SCSS files are backwards compatible with CSS. This means you can type normal CSS code into a SCSS file and it will be valid.\n🚩 Reporting Issues\nWe use GitHub Issues as the official bug tracker for Minimal. Please search existing issues. It’s possible someone has already reported the same problem. If your problem or idea is not addressed yet, open a new issue.\n💜 Acknowledgements\nZola Minimal is a fork of the Jekyll theme Minimal.\n© License\nSource code in this repository is available under the MIT License.\n","id":"https://www.getzola.org/themes/zola-minimal/","title":"Minimal"},"https://www.getzola.org/themes/zola-paper/":{"body":"Zola-Paper\nA clean theme inspired from hugo-paper.\nZola port of Hugo-Paper (with a few tweaks).\nDemo: https://schoenenberg.github.com/zola-paper\n\n\nInstallation\nThe easiest way to install this theme is to either clone it ...\n\n... or to use it as a submodule.\n\nEither way, you will have to enable the theme in your config.toml.\n\nOpen Graph Integration\nThis theme has an integration of Open Graph meta tags. These are set based on context and available information. See the following example:\n\nRequired attributes of the extra section is author. All other attributes are optional. The path for the banner_path attribute has to be relative to the content directory.\n","id":"https://www.getzola.org/themes/zola-paper/","title":"zola-paper"},"https://www.getzola.org/themes/zola-pickles/":{"body":"\n 🥒\n zola-pickes\n\n\n Pickles is a clean, responsive blog theme for Zola based on the Hugo theme with the same name.\n\n\n\n \n \n \n \n \n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nThe theme requires putting the posts in the root of the content folder and to enable pagination, for example in content/_index.md.\n\nReference guides\nConfiguration Options\n\nA full example configuration is included in config.toml.\nNote how pickles also expects title and description to also be set in the Zola configuration.\nKaTeX math formula support\nThis theme contains math formula support using KaTeX, which can be enabled by setting katex_enable = true in the extra section of config.toml.\nAfter enabling this extension, the katex short code can be used in documents:\n\n{% katex(block=true) %}\\KaTeX{% end %} to typeset a block of math formulas,\nsimilar to $$...$$ in LaTeX\n\nFigure Shortcode\nThe figure shortcode is convenient for captioning figures.\n\nTable Shortcode\nThe table shortcode is convenient for making mobile-friendly tables (centered with overflow scrollbar).\n\nFontawesome\nThis theme includes fontawesome, so that fontawesome icons can be directly used.\nInstant.page\nThe theme contains instant.page prefetching. This can be enabled by setting instantpage_enable = true in the extra section of config.toml.\nShowing article summaries\nBy default, the theme will use the first 280 characters of your post as a summary, if a proper page summary using <!-- more --> is not provided.\nFor more sensible summaries, we recommend using the manual more indicator.\n","id":"https://www.getzola.org/themes/zola-pickles/","title":"pickles"},"https://www.getzola.org/themes/zola-theme-course/":{"body":"Zola Theme : Course\nThis theme allows you to publish only courses/tutorials structured in\nparts and subparts, using Zola.\n\n\nIt automatically links pages of the course with the next and previous ones\nfor easy navigation. There is also a navigation bar at the top of each page\nto easily navigate the whole tutorial, and for the reader to never be lost.\nEach page can have an illustration.\nIt lets you customize some parts of the site, like the color palette.\nIt also features a light/dark mode switcher.\nIt also has some SEO features.\nIt was made for french courses, so a few parts of the interface may be in french.\nYou can easily adapt it to your language by editing the files in themes/zola-theme-course/templates/.\nUsage\nCreate your Zola site, and import this theme:\n\nThen update your config.toml with this line:\n\nYou can also add these lines to customize how the theme behaves:\n\nFile structure\nFor your course to be displayed correctly, it needs to follow a specific structure.\n\ncontent/_index.md is the text displayed on the homepage\neach part should have its own folder, with an _index.md\neach subpart should have its own markdown file (which can be an index.md in a subfolder)\nall _index.md files should have sort_by = \"weight\" in their frontmatter, and you can then\norder parts and subparts using the weight option.\n\nWith this theme, pages can also have extra options:\n\nThe standard title and description fields are also taken into account.\n","id":"https://www.getzola.org/themes/zola-theme-course/","title":"Course"},"https://www.getzola.org/themes/zola-theme-hikari/":{"body":"hikari\n\nthis is a port of the hikari theme for Zola\n\nHikari is a simple theme perfect for dev-savvy bloggers.\n\nView demo\nInstallation\nFirst download the theme to your themes directory:\n\nand then enable it in your config.toml:\n\nConfiguration\n\nLicense\nMIT\nThanks to Mathieu Mayer-Mazzoli for creating this awesome theme!\n","id":"https://www.getzola.org/themes/zola-theme-hikari/","title":"Hikari"},"https://www.getzola.org/themes/zola-theme-terminimal/":{"body":"Terminimal\n\n\n\nSee the live demo (of the default configuration) here:\nhttps://pawroman.github.io/zola-theme-terminimal/\nTested with Zola v0.17.2. Please note that earlier versions might not work because of breaking changes across Zola versions.\nFork disclaimer\nThis theme is a fork (not a port) of \"Terminal\" Hugo theme\nby Radosław Kozieł (aka. panr):\nhttps://github.com/panr/hugo-theme-terminal\nMany thanks for that outstanding original theme, Radek!\nFor more information about this fork and the differences to the original theme, please see:\nChanges compared to the original theme below.\nVersioning\nThis theme used to be non-versioned, e.g. you'd pull the master branch, and occasionally new features or fixes would\nbe released.\nStarting from version v1.0.0, the project adopted Semantic Versioning.\nPlease check the GitHub releases to see a change log\nand work out if there's any breaking changes.\nHow to start\nOption A: clone the theme directly into your Zola site folder:\n\nOption B: include it as a git submodule (it's better if you plan to use CI builders):\n\nThen in your config.toml set:\n\nAlso see the Zola documentation on using themes:\nhttps://www.getzola.org/documentation/themes/installing-and-using-themes/\nShortcodes\nThe theme adds two custom shortcodes related to image handling.\nimage\nUsed to show images.\nRequired arguments:\n\nsrc\n\nOptional arguments:\n\nalt\nposition (center [default] | left | right)\nstyle\n\nExample:\n\nfigure\nSame as image, but with a few extra optional arguments:\n\ncaption (supports markdown)\ncaption_position (center [default] | left | right)\ncaption_style\n\nExample:\n\nOpenGraph\nTo add an image to a post, set the og_image extra option to the desired image\nin the same directory of the markdown file:\n\nAdditionally, for the section pages and for posts to have a fallback image, add\ndefault_og_image to the [extra] section:\n\nConfiguration\nOnly show the post's description\nOn each post you can specify the following:\n\nThis will render test description under this\nparticular post on the homepage instead of a summary.\nColors\nBoth the accent colors and background colors are\nconfigurable.\nBy default, both accent and background are set\nto blue.\nTo configure menu, add this in [extra] section\nof your config.toml:\n\nLogo text and link\nYou can set the \"logo\" text and what it links to,\nby modifying config.toml like so:\n\nAuthor and copyright\nYou can set the footer's copyright author name like this:\n\nIf you don't like the default copyright text,\nyou can set it to completely custom HTML:\n\nMenu\nThe menu is optional, static (all items are always shown,\nno matter what the screen size) and fully user-configurable.\nTo configure menu, add this in [extra] section\nof your config.toml:\n\nTags\nThe theme optionally supports tags. To enable them, create\na \"tags\" taxonomy in your config.toml:\n\nEnabling tags will create a new /tags page, and \ncause them to show up in archive section. Note\nthat you still need to create a menu link to the tags\npage manually.\nPagination\nPagination is fully supported for post list (main site)\nand intra-post (you can navigate to earlier and later posts).\nTo make sure pagination works properly, you must first configure\nit in content/_index.md:\n\nThen, tweak the theme's pagination config in config.toml:\n\nLanguage code\nInternationalization / translation is not supported\nbut you can set the HTML language code for your\nsite:\n\nHack font subset\nBy default, the theme uses a mixed subset of the Hack font.\nNormal weight font uses full character set\n(for Unicode icons and special symbols), but all others\n(bold, italic etc) use a limited subset.\nThis results in much smaller transfer sizes, but the subset\nmight not contain all the Unicode characters you need.\nYou can enable full unicode support in config.toml:\n\nAlso see Hack's docs.\nFavicon\nThe theme supports adding a global favicon (applies to\nall pages) to the site:\n\nPage titles\nThe theme allows you to configure how the page titles (the <title> elements) are rendered.\nUse \"combined\" to render titles as \"Page title | Main title\".\n\nAll the configuration options are also described in\nconfig.toml.\nExtending\nEach of the templates defines named blocks, so\nit should be quite easy to customize the most common things.\nFor example, if you want to add extra <meta> tags to the\nbase template, index.html, create file like this in templates/index.html:\n\nHow to contribute\nIf you spot any bugs or wish to contribute new features, please create a new\nPull Request.\nChanges compared to the original theme\nThis theme has been forked from https://github.com/panr/hugo-theme-terminal\n\n\nSlight changes in the layout and styling.\n\nContent has been centered (instead of left-aligned).\nThe header stripes have been spaced out.\nTweaks to pagination, especially on mobile (small screens).\nThe post title underline is dashed instead of doubly-dotted.\nAll links are underlined, as per\nBrutalist Web Design Guidelines.\nTweaks to header font sizes.\nMinor footer tweaks.\n\n\n\nAbsolutely no JavaScript.\n\nNo JavaScript needed to pre-process anything.\nZola with its Sass pre-processor is the only dependency.\nThere's no menu trigger.\nThings load crazy fast, as it's all static content.\nPrism.js syntax highlighting is not supported (you can use\nZola's).\n\n\n\nAll references to social media (e.g. Twitter) have been removed.\n\n\nAll references to external URLs (e.g. Google CDN) have been removed.\nThis theme's static assets are meant to be served from where it's hosted.\n\n\nHack is the default font.\n\n\nThe default color theme is blue (original uses orange).\n\n\nNew features\n\nYou can pick the accent color as well as background color.\nThere's a new dark background. See Configuration\nbelow for details.\nActive \"section\" links will change color indicating the\nactive section. This is all static, done at template level.\n\nFeatures retained from the original\n\n5 color themes, depending on your preference:\nblue (default), green, orange, pink, red.\nThe shortcodes image and figure (See Shortcodes.\nFully responsive.\n\nLicense\nCopyright © 2019 Paweł Romanowski (pawroman)\nOriginal theme: Copyright © 2019 Radosław Kozieł (@panr)\nThe theme is released under the MIT License.\nCheck the license file\nfor more information.\nThe license for Hack fonts used is included in\nLICENSE-Hack.md.\n","id":"https://www.getzola.org/themes/zola-theme-terminimal/","title":"terminimal"},"https://www.getzola.org/themes/zolarwind/":{"body":"\nThe Zolarwind Theme for Zola\nWelcome to Zolarwind, the simple Zola blog theme with Tailwind CSS and KaTex support.\nThis theme is for Zola users aiming to have a nice blog design powered by Tailwind CSS.\nIt seamlessly integrates with Mermaid, enabling the creation of various diagrams\ndirectly within your blog posts using a Markdown-inspired syntax.\nAdditionally, the theme smoothly integrates math formulas using KaTex.\nMost importantly, while the theme is designed to be easily localizable,\nyou can choose your preferred language setting for a consistent blog experience.\n\nFeatures:\n\n\nTailwind CSS: Utilize the utility-first CSS framework for rapid UI development.\n\n\nMermaid Integration: Create diverse diagrams using simple text.\n\n\nKaTex Integration: Integrate and display math formulas seamlessly in your blog posts.\n\n\nLocalization Support: All theme-specific strings are available in multiple languages; choose the one that's right for you.\nIf your language isn't supported yet, just create the resource file with your translations.\n\n\n\nTable of Contents:\n\nDemo Website\nPrerequisites\nInstallation\nConfiguration\nFront Matter\nLocalization\nIntegrating in theme folder\nDevelopment\nRemarks\nContributing\nLicense\n\n\nDemo Website\nYou can see the theme in action on my personal website.\nThe site uses the German language.\n\nPrerequisites\nIn order to use the theme, you need some software pre-installed:\n\n\nGit, Required for version control.\n\n\nNode, an open-source, cross-platform JavaScript runtime environment.\n\n\nZola, a fast static site generator.\n\n\nan editor or integrated development environment of your choice - I use JetBrains IDEA,\nan IDE that makes development a more productive and enjoyable experience. \n\n\n\nInstallation\n\n\nClone this theme repository with e.g. git@github.com:thomasweitzel/zolarwind.git.\nOr download it from https://github.com/thomasweitzel/zolarwind.\n\n\nMake adjustments to the config.toml file as needed.\nIn order to run the theme as a standalone site, you need to adjust the base_url to your domain.\nIf you want to try it out on your local machine, you can leave it as is.\nJust run zola serve from the theme's root directory. \n\n\n\nConfiguration\nYour config.toml file is crucial in customizing the Zola site.\nHere's a breakdown of the configuration settings tailored for this theme:\nBasic Configuration:\n\n\nbase_url: Specifies the URL the site will be built for.\nIn this case, the site will be built for https://example.org.\nAdjust this to your own domain.\n\n\ncompile_sass: Determines whether to automatically compile all Sass files present in the sass directory.\nHere, it's set to false, meaning Sass files won't be automatically compiled for this theme.\n\n\ndefault_language: Sets the default language for the site.\nThe provided config uses English (en) as the default language.\nAs of now, German (de) is available in the i18n directory.\n\n\ntheme: The theme used for the site.\nThe provided line is commented out, indicating that the themes files are taken from the template directory.\nIf you move the theme to the themes/zolarwind directory, use zolarwind for this entry.\n\n\nbuild_search_index: If set to true, a search index will be built from the pages and section content for the default_language.\nIn this configuration and for this theme, it's disabled (false).\n\n\ngenerate_feed: Determines if an Atom feed (file atom.xml) is automatically generated.\nIt's set to true, meaning a feed will be generated.\n\n\ntaxonomies: An array of taxonomies (classification systems) used for the site.\nHere, a taxonomy for tags is defined, with a pagination limit of 6 and an enabled feed.\n\n\nMarkdown Configuration:\n\n\nhighlight_code: Indicates whether code snippets in Markdown files should be highlighted. Here, it's set to true.\n\n\nhighlight_theme: Specifies the theme to be used for code highlighting. The chosen theme in this configuration is 1337.\n\n\nextra_syntaxes_and_themes: directory for additional syntax highlighting configuration files for languages not directly supported by Zola.\n\n\nExtra Configuration:\nThe [extra] section is where you can place any custom variables you want to be accessible in your templates.\n\n\ntitle: Required.\nThe title of the site.\nHere, it's set to \"Zolarwind\".\n\n\npath_language_resources: Required.\nThe path to the directory containing language resource files.\nIn this config, it's set to i18n/.\nIf you move the theme to the themes/zolarwind directory, use themes/zolarwind/i18n/ for this entry.\n\n\ngenerator: Optional.\nSpecifies the generator used for creating the static website.\nThis site is generated using Zola v0.19.0.\n\n\nfavicon_svg: Optional.\nProvides a path to the site's favicon in SVG format.\nThe provided path points to /img/yin-yang.svg.\n\n\ncopyright: Optional.\nA template for the copyright notice.\nIt includes a placeholder {year} which is dynamically replaced with the current year of your zola build run.\n\n\nsite_description: Optional.\nA brief description is displayed on the site's banner.\n\n\nquote: Optional.\nA structure defining a quote and its author.\nThis quote is from Yoda.\n\n\nmenu_pages: Optional.\nAn array of main navigation menu items.\nEach item has a title and a url.\n\n\nfooter_pages: Optional.\nAn array of pages that will appear in the site's footer.\nEach item has a title and a url.\n\n\nsocial_links: Optional.\nAn array of social media links.\nEach link has a name, a boolean indicating if it's enabled, a URL, and an SVG icon.\n\n\n\nFront matter\nFor blog posts (Markdown files in folder content/blog), this theme uses a directory structure where each post has its own folder.\nThis way, I have all resources for a post in one place.\nIt can include images, videos, and other files.\nEach post is associated with an image that is displayed on the blog's main page and on the posts detail page.\nIf you do not provide an image under extra.image, a default image is used instead.\n\n\ndate: the date of the blog posts, e.g. 2020-06-11.\n\n\ntitle: the title of the blog posts, e.g. The Game of Fifteen.\n\n\ndescription: the description of the blog posts. It is used as a summary on the blog's main page.\n\n\nauthors: an optional array of all the posts authors, e.g. [\"Thomas Weitzel\"].\nYou can leave it empty, but then the first author will show up as Unknown in the feed (atom.xml).\n\n\ntaxonomies: only the optional tags taxonomy is used by this theme.\nI tend to list programming languages used in the post, e.g. [\"rust\", \"javascript\"].\nYou can omit it, but then the post will not show up under tags. \n\n\nextra.math: either false (default) or true.\nIf set to true, the post will be rendered with KaTex support for displaying math formulas.\nIf the entry is omitted or set to false, the post will not have KaTex support.\n\n\nextra.diagram: either false (default) or true.\nControls loading of the necessary JavaScript to render the Mermaid diagram.\nIf set to true, the post will be rendered with Mermaid support for displaying diagrams\nby using the diagram() shortcode.\n\n\nextra.image: an optional image for the post.\nIf omitted, a default image is used instead.\nThe image is displayed on the blog's main page and on the posts detail page.\n\n\n\nLocalization\nConsider this text on a page where a blog post is published as an example: Published on July 04, 2023; 1,234 words.\nIf your blog is in the German language, you want to have Veröffentlicht am 04. Juli 2023; 1.234 Wörter instead.\nNot only the text should be translated, but also the date and number formats are different.\nAnd you want a text like 1 word or 1 Wort, because the singular form should be used where applicable.\nThis theme takes care of that.\nTo localize your blog with this theme:\n\n\nPick your desired language by setting the default_language in config.toml.\nAs of now, English (en) and German (de) have language resources available in the i18n directory.\nIf your language is not supported yet, just create a new resource file with your translations.\nUse the file en.toml as a template for your own translations.\nUse the correct language code for the file name, e.g. eo.toml for Esperanto.\nOnly languages that read from left-to-right (ltr) are supported by this theme.\n\n\nThe theme will automatically display all theme-specific string resources in the chosen language.\n\n\nThe content that you provide should match this language.\nBut that is your responsibility.\nThe theme will not translate your content.\n\n\nIf you need to define your own date format, look here for supported specifiers.\n\nIntegrating in theme folder\nThis project is structured as a stand-alone Zola site.\nThis section is for those who might want to integrate the theme into an existing Zola website.\nYou can do so by moving the relevant theme files to the themes/zolarwind directory.\nAll other files stay in the root directory.\nIf you have your own files there, you need to merge them with the ones from this theme.\nYou also need to adjust the config.toml and package.json files in the root accordingly.\nI will only show you the relevant directories that need to be moved.\nThis is the directory structure of the stand-alone site, where the theme is in the root directory:\n\nCreate a new directory themes/zolarwind and move the following files and directories there:\n\nThe static/css directory is a special case.\nIt contains the generated Tailwind CSS file with the name generated.css.\nIt will stay in its original location.\nThis file is generated from the file css/main.css, which is the input for the CSS generation.\nThe generation process can be triggered with a script in the package.json file.\nYou only need to adjust and run the script in package.json if you make changes to the theme's template files or use new Tailwind CSS classes directly in your content files.\nSince the source file css/main.css has moved to the directory themes/zolarwind/css/main.css, we need to adjust the script in package.json accordingly.\nThis is how the relevant part of it looks like for the stand-alone site:\n\nNow change it so that the input file css/main.css will be the file themes/zolarwind/css/main.css:\n\nSince you now use Zolarwind as a theme, you need to declare it in the config.toml file.\nThe theme's files have moved to the directory themes/zolarwind, so you need to adjust the only reference to the theme's files in the config.toml file accordingly by changing the path_language_resources entry:\n\n\nDevelopment\nIf you want to adjust the CSS of the theme to your needs, you will need to edit the files in the templates and css directories.\nWhile you do this, you should make sure that the CSS file static/css/generated.css is up-to-date.\nThis file is generated from the file css/main.css, and all the files that are configured as a pattern in tailwind.config.js:\n\n\ncss/main.css\n\n\nthemes/**/*.html\n\n\ntemplates/**/*.html\n\n\ncontent/**/*.md\n\n\nSo whenever one of these files changes, you need to run the script css:build from the package.json file.\nTo accomplish this, you need to have Node.js and all dependencies from package.json installed (with npm install).\nThen you can run the script with npm run css:watch.\nIt monitors all files mentioned above and triggers the CSS generation whenever a relevant file changes.\nThis ensures, that the file static/css/generated.css is always up-to-date.\nI recommend to have two terminals open.\nIn one terminal, run zola serve to start the Zola server.\nIn the other terminal, run npm run css:watch to start the CSS generation whenever a relevant file changes.\nThat way, your local web browser will automatically reload the page with the updated CSS whenever you change a file.\n\nRemarks\nTypography for markdown\nI'm not using @tailwindcss/typography for styling of markdown files.\nI don't like how it looks.\nInstead, I use @apply in the css/main.css file.\nThe @apply directive in Tailwind CSS enables you to compose utility classes into custom CSS classes.\nThis makes it possible to apply multiple utility styles within a single class, making it efficient to style markdown content.\nThis approach has pros and cons.\nBut it gives me fine-grained control over how the end result looks like.\nWhile it is time-consuming, I prefer this solution over the @tailwindcss/typography plugin.\nYes, I'm reinventing the wheel here, because for common typographic patterns, I'm just recreating what's already provided by the typography plugin.\nServe KaTex files locally\nAll KaTex files are included in the static directory for this theme.\nUsing KaTeX (or any other library) by serving it from a Content Delivery Network (CDN) has implications concerning the General Data Protection Regulation (GDPR) and the use of cookies:\n\n\nThird-Party Requests & Data Privacy: When you load resources from a CDN, it triggers third-party requests to the CDN's servers.\nThese servers might log your IP address, user agent, and other request-related metadata.\nUnder GDPR, IP addresses can be considered personal data.\nBy serving KaTeX from your domain, you reduce third-party data transfers, limiting the amount of personal data you expose to external entities.\n\n\nCookies: Many CDNs set cookies for various reasons, including analytics or performance optimizations.\nThese cookies can track users across different websites that use the same CDN, potentially infringing on their privacy rights.\nBy hosting KaTeX on your domain, you have full control over the cookies set and can ensure compliance with GDPR.\n\n\nConsent: If you're using a CDN that sets cookies or collects data, you might need to get explicit user consent before loading resources from that CDN.\nThis can complicate user experience and lead to a reduced site performance for users who opt-out.\nBy self-hosting, you circumvent this issue.\n\n\nTransparency & Control: By self-hosting, you know exactly which version of KaTeX you're using and can ensure there are no modifications or unexpected behaviors.\nWith CDNs, there's a minor risk of the library being compromised, which could affect all sites using that resource.\n\n\nData Transfer Outside the EU: If the CDN servers are located outside the European Union, you might be transferring data out of the EU,\nwhich adds another layer of GDPR compliance requirements.\nBy self-hosting, you ensure that user data doesn't leave the region unless you specifically choose a hosting solution outside the EU.\n\n\n\nContributing\nContributions are always welcome!\nIf you see areas of improvement or want to add features, please submit a PR.\nI'm especially interested in more translations.\nSee folder i18n for what's available and what is not.\nJust use the file en.toml as a template for your own translations.\n\nLicense\nThis theme is under the MIT License.\nFor details, please refer to the LICENSE file.\n","id":"https://www.getzola.org/themes/zolarwind/","title":"Zolarwind"},"https://www.getzola.org/themes/zolastrap/":{"body":"zolastrap\nA bootstrap theme for zola\nLive Demo\nconfig.toml [extra] variables\nbanner\n\ntype: string\ndefault: \"\"\n\nPath of a banner image, use empty string for no banner\ndate_format\n\ntype: string\ndefault: \"%d/%m/%Y\"\n\ndate format expression\ntheme\n\ntype: string\ndefault: \"default\"\n\none of the Bootswatch themes\nbg\n\ntype: string\ndefault: \"dark\"\n\none of the available backgrounds in\nBootstrap5\nfor navbar and footer\ninverted\n\ntype: boolean\ndefault: false\n\nInvert font for navbar and footer in case default choice is bad\nthemes\n\ntype: string\ndefault: \"Choose a Theme\"\n\nNavbar label for themes dropdown.\nThis dropdown will allow user to change\nBootswatch theme.\nUse empty string in case you do not want the user choose a theme.\nschemes\n\ntype: string\ndefault: \"Choose a Color Scheme\"\n\nNavbar label for schemes dropdown.\nThis dropdown will allow user to change footer and navbar\nbackground\ncolor.\nUse empty string in case you do not want the user choose a theme.\nsearch\n\ntype: string\ndefault: \"Search\"\n\nPlaceholder for navbar search input.\nRemember that to enable and disable search you should set variable\nbuild_search_index.\ntag\n\ntype: string\ndefault: \"Posts by Topic\"\n\nTaxonomy tag single label. Useful for translations.\ntags\n\ntype: string\ndefault: \"Posts by Topics\"\n\nTaxonomy tag list label. Useful for translations.\nYou can have a nice tag list at the bottom of a page using extra.tags = true\nin the _index.md\nlinks\n\ntype: array\ndefault: []\n\nNavbar links. Use an empty array to ignore this.\nItems (object):\n\ntitle (String): label of the navbar link\nurl (String): href of associate link\n\nemail\n\ntype: string\ndefault: \"\"\n\nFooter email. Use an empty string to ignore this.\nicons\n\ntype: array\ndefault: []\n\nFooter social icons. Use an empty array to ignore this.\nItems (object):\n\ntitle (string): Optional title string for icon\nicon (string): One of \nurl (string): href of the icon\n\nutterances\n\ntype: string\ndefault: \"\" \n\nutterances repo url.\nUse an empty string to ignore utterances widget.\nutterances_label\n\ntype: string\ndefault: \"Comments\" \n\nutterances widget label.\nutterances_theme\n\ntype: string\ndefault: \"github-light\" \n\nutterances widget theme.\nutterances_issue_term\n\ntype: string\ndefault: \"pathname\" \n\nutterances widget pathname.\nContributing\nAny help is greatly appreciated!\n\nTera template engine\nZola SSG templates\nBootstrap5 docs\nBootswatch\n\n","id":"https://www.getzola.org/themes/zolastrap/","title":"zolastrap"},"https://www.getzola.org/themes/zplit/":{"body":"Zplit\nZplit is a single-page, centrally-divided layout designed for a professional online presence. It features a large image or video on the left, accompanied by content on the right. Zplit is a port of Split by One Page Love for Zola.\n\nDEMO: https://zplit.netlify.app/\nInstallation\nDownload the theme to your themes directory:\n\nThen, enable the theme editing your config.toml:\n\nGetting started\nThe most important file of the theme is located in the root directory and is named =config.toml=. Edit this file to customize your preferences. Look for sections like [extra] to set variables like author, or [extra.content] to modify intro_tagline.\nIf something is unclear or not obvious, you might have missed the \"configuration\" section of the Zola official documentation. Even if you're new to static site generators, don't worry and take some time to go through the documentation, as it covers fundamental concepts.\nHere after, we will discuss two specific sections in more detail, because those are unique for the Zplit theme:\n\nBackground image\nLists (of links)\n\nBackground image\nEdit the [extra.visual] section to set your background image of choice.\n\nYou can find this example already written as the default:\n\nAs you can see, you can edit the relative position of the image, which is centered by default.\nLists\nYou can set up to 3 lists of links in the [extra.lists] section of the config.toml file: \n\nconnect\nsocial\nnetwork\n\nManipulating them is very easy: just add/remove elements in the TOML list, as showed in this example (also already present in the default file):\n\nDo you want another item? Just throw it up to the pile. You have no limits.\nRemember to set the url field with the link itself you want to direct your user at and a text to show in the page for the corrisponding URL.\nPosts\nTo add new posts, simply place markdown files in the content directory. In order to sort the post index by date, you need to enable the sort_by option in the content/_index.md file within the index section.\n\nThis theme was not specifically designed for blogging, but rather as a landing page for professionals. However, if you wish to blog using this theme, you certainly can. To do so, simply add a new section in the content directory and include it in the main menu through the config file. This will make it readily accessible to the user.\nThe theme does not offer support for taxonomies or other advanced features. It is focused on providing simple pages. If you wish to enhance the blogging functionality, you are welcome to customize the code or submit a specific request as an issue.\nCustom CSS\nTo make custom changes to the original stylesheets, you can create a custom.css file in the static directory. In this file, you can add any modifications or additions you desire.\nCustom colors\nIf you need to make adjustments to the colors or grid dimensions, it may be easier to modify the frontmatter of the _01-content.scss file directly. In this file, you will find variables conveniently located at the top:\n\nFeatures\n\n\nLightweight and minimal\n\nResponsive (mobile support)\n\nSocial links\n\nDeploy via Netlify (config already included)\n\nEasily extendable menus\n\nDe-googled (local assets are faster and more secure)\n\nNetlify support\n\nCustom CSS\n\nCustom colors\n\n404 page\n\nBasic blogging features\n\nOpen Graph and Twitter Cards support\n\nMultilanguage support\n\nSupport me!\nDo you love Zplit? Did you find it enjoyable and useful? If so, consider showing your support by making a donation. Your contribution will help fund the development of new features and improvements for this theme.\n\nLicense\nThe original template is released under the Creative Commons Attribution 3.0 License. Please keep the original attribution link when using for your own project. If you'd like to use the template without the attribution, you can check out the license option via the template author's website.\n","id":"https://www.getzola.org/themes/zplit/","title":"Zplit"},"https://www.getzola.org/themes/zulma/":{"body":"Zulma\nA Bulma theme for Zola. See a live preview here\n\nContents\n\nZulma\n\nContents\nInstallation\nJavascript\n\nSources\nBuilding\n\n\nOptions\n\nPagination\nTaxonomies\nMenu Links\nBrand\nSearch\nTitle\nTheming\n\n\nOriginal\nKnown Bugs\n\n\n\nInstallation\nFirst download this theme to your themes directory:\n\nand then enable it in your config.toml:\n\nThat's it! No more configuration should be required, however it might look a little basic. Head to the Options section to see what you can set for more customizability.\nJavascript\nSources\nAll the source javascript files live in javascript/src. Following is a list of the javascript files, their purpose, and their sources. All files are prefixed with zulma_ to avoid any name clashes.\n\nzulma_search.js - Used when a user types into the search box on the navbar (if enabled). Taken from Zola's site.\nzulma_navbar.js - Used for the mobile navbar toggle. Taken from the bulma template at Bulmaswatch\nzulma_switchcss.js - Used for swapping themes (if enabled).\n\nBuilding\nThe JavaScript files are transpiled by babel, minified by webpack, sourcemaps are generated and then everything placed in static/js. The repo already contains the transpiled and minified files along with their corrosponding sourcemaps so you don't need to do anything to use these. If you would prefer to build it yourself, feel free to inspect the js files and then run the build process (please ensure that you have node, npm and optionally yarn installed):\n\nGithub warnings\nYou may get warnings about vulnerabilities from the JavaScript dependencies. These shouldn't be an issue since we only have dev-dependencies and none of the them reach the end-user, but if you don't want to run the buld process yourself, and to stop Github pestering you about security warnings, feel free to delete the top level javascript folder when committing.\nOptions\nPagination\nZulma makes no assumptions about your project. You can freely paginate your content folder or your taxonomies and it will adapt accordingly. For example, editing or creating section (content/_index.md) and setting pagination:\n\nThis is handled internally, no input is needed from the user.\nTaxonomies\nZulma has 3 taxonomies already set internally: tags, cateogories and authors. Setting of any these three in your config.toml like so:\n\nand setting any of them in a content file:\n\nwill cause that metadata to appear on the post, either on the header for the name, or at the bottom for tags and categories, and enable those pages.\nMaking your own taxonomies is also designed to be as easy as possible. First, add it to your cargo.toml\n\nand make the corrosponding folder in your templates, in this case: templates\\links, and the necessary files: templates\\links\\list.html and templates\\links\\single.html\nAnd then for each, just inherit the taxonomy master page for that page. Before rendering the content block, you may optionally set a variable called title for the hero to display on that page, otherwise it will use the default for that taxonomy.\nIn single.html:\n\nIn list.html:\n\nMenu Links\nIn extra, setting zulma_menu with a list of items will cause them to render to the top menu bar. It has two paramers, url and name. These must be set. If you put $BASE_URL in a url, it will automatically be replaced by the actual site URL. This is the easiest way to allow users to navigate to your taxonomies:\n\nOn mobile, a dropdown burger is rendered using javascript. If the page detects javascript is disabled on the clients machine, it will gracefully degrade to always showing the menu (which isn't pretty, but keeps the site functional).\nBrand\nIn extra, setting zulma_brand will cause a brand image to display in the upper left of the top menu bar. This link will always lead back to the homepage. It has two parameters, image(optional) and text(required). image will set the brand to an image at the location specified, and text will provide the alt text for this image. If you put $BASE_URL in a url, it will automatically be replaced by the actual site URL. If image is not set, the brand will simply be the text specified.\n\nSearch\nZulma provides search built in. So long as build_search_index is set to true in config.toml then a search input will appear on the top navigation bar. This requires javascript to be enabled to function; if the page detects javascript is disabled on the clients machine, it will hide itself.\nThe search is shamefully stolen from Zola's site. Thanks, Vincent!\nTitle\nIn extra, setting zulma_title will set a hero banner on the index page to appear with that title inside.\n\nIf you want to get fancy with it, you can set an image behind using sass like so:\n\nThis will set the image behind the hero, and darken it so the main text can still be easily read.\nTheming\nIn extra, setting zulma_theme to a valid value will change the current colour scheme to that one. All themes were taken from Bulmaswatch. Valid theme values are:\n\ndefault\ndarkly\nflatly\npulse\nsimplex\nlux\nslate\nsolar\nsuperhero\n\nAll valid themes can also be found under the extra.zulma_themes variable in the theme.toml. Choosing no theme will set default as the theme. Setting an invalid theme value will cause the site to render improperly.\n\nAdditionally, in extra, you can also set the zulma_allow_theme_selection boolean. Setting this to true will allow a menu in the footer to allow users to select their own theme. This option will store their theme choice in their localstorage and apply it on every page, assuming zulma_allow_theme_selection is still true. This requires javascript to be enabled to function; if the page detects javascript is disabled on the clients machine, it will hide itself.\nEach theme contains the entirety of Bulma, and will weigh in at ~180kb. If you're running on a server severely limited on space, then I'd recommend you delete each theme you're not using, either from the source or from /public. Obviously, doing this will cause zulma_allow_theme_selection to work improperly, so make sure you either override extra.zulma_themes in config.toml to only show themes you have left or to not enable this option at all.\n\nOriginal\nThis template is based on the blog template over at Free Bulma Templates. All themes were taken from Bulmaswatch. The code behind from originally adapted from the after-dark zola template.\nKnown Bugs\n\nIf user theme swapping is enabled and the user selects a theme different to the default, a slight delay will be introduced in page rendering as the css gets swapped out and in by the javascript. This is particularly pronounced when using the dark theme, since it will flash white before going back to black. This is better than the alternative flashes of unstyled content or old theme, but still annoying. I don't know any way around this, but with browser caching it should be fast enough to not cause serious issues.\n\n","id":"https://www.getzola.org/themes/zulma/","title":"Zulma"}},"docInfo":{"https://www.getzola.org/":{"body":0,"title":0},"https://www.getzola.org/documentation/content/image-processing/":{"body":495,"title":2},"https://www.getzola.org/documentation/content/linking/":{"body":257,"title":4},"https://www.getzola.org/documentation/content/multilingual/":{"body":119,"title":2},"https://www.getzola.org/documentation/content/overview/":{"body":376,"title":1},"https://www.getzola.org/documentation/content/page/":{"body":463,"title":1},"https://www.getzola.org/documentation/content/sass/":{"body":133,"title":1},"https://www.getzola.org/documentation/content/search/":{"body":108,"title":1},"https://www.getzola.org/documentation/content/section/":{"body":620,"title":1},"https://www.getzola.org/documentation/content/shortcodes/":{"body":670,"title":1},"https://www.getzola.org/documentation/content/syntax-highlighting/":{"body":400,"title":2},"https://www.getzola.org/documentation/content/table-of-contents/":{"body":51,"title":2},"https://www.getzola.org/documentation/content/taxonomies/":{"body":232,"title":1},"https://www.getzola.org/documentation/deployment/aws-s3/":{"body":265,"title":3},"https://www.getzola.org/documentation/deployment/cloudflare-pages/":{"body":210,"title":2},"https://www.getzola.org/documentation/deployment/codeberg-pages/":{"body":134,"title":2},"https://www.getzola.org/documentation/deployment/docker-image/":{"body":63,"title":2},"https://www.getzola.org/documentation/deployment/edgio/":{"body":33,"title":1},"https://www.getzola.org/documentation/deployment/flyio/":{"body":93,"title":1},"https://www.getzola.org/documentation/deployment/github-pages/":{"body":540,"title":2},"https://www.getzola.org/documentation/deployment/gitlab-pages/":{"body":161,"title":2},"https://www.getzola.org/documentation/deployment/netlify/":{"body":161,"title":1},"https://www.getzola.org/documentation/deployment/overview/":{"body":12,"title":1},"https://www.getzola.org/documentation/deployment/sourcehut/":{"body":120,"title":2},"https://www.getzola.org/documentation/deployment/vercel/":{"body":306,"title":1},"https://www.getzola.org/documentation/deployment/zeabur/":{"body":206,"title":1},"https://www.getzola.org/documentation/getting-started/cli-usage/":{"body":435,"title":2},"https://www.getzola.org/documentation/getting-started/configuration/":{"body":278,"title":1},"https://www.getzola.org/documentation/getting-started/directory-structure/":{"body":154,"title":2},"https://www.getzola.org/documentation/getting-started/installation/":{"body":313,"title":1},"https://www.getzola.org/documentation/getting-started/overview/":{"body":522,"title":1},"https://www.getzola.org/documentation/templates/404/":{"body":16,"title":3},"https://www.getzola.org/documentation/templates/archive/":{"body":36,"title":1},"https://www.getzola.org/documentation/templates/feeds/":{"body":295,"title":1},"https://www.getzola.org/documentation/templates/overview/":{"body":1315,"title":1},"https://www.getzola.org/documentation/templates/pages-sections/":{"body":92,"title":2},"https://www.getzola.org/documentation/templates/pagination/":{"body":86,"title":1},"https://www.getzola.org/documentation/templates/robots/":{"body":17,"title":1},"https://www.getzola.org/documentation/templates/sitemap/":{"body":82,"title":1},"https://www.getzola.org/documentation/templates/taxonomies/":{"body":61,"title":1},"https://www.getzola.org/documentation/themes/creating-a-theme/":{"body":110,"title":2},"https://www.getzola.org/documentation/themes/extending-a-theme/":{"body":144,"title":2},"https://www.getzola.org/documentation/themes/installing-and-using-themes/":{"body":165,"title":3},"https://www.getzola.org/documentation/themes/overview/":{"body":40,"title":1},"https://www.getzola.org/themes/":{"body":0,"title":0},"https://www.getzola.org/themes/abridge/":{"body":405,"title":1},"https://www.getzola.org/themes/adidoks/":{"body":338,"title":1},"https://www.getzola.org/themes/after-dark/":{"body":96,"title":1},"https://www.getzola.org/themes/albatros/":{"body":72,"title":1},"https://www.getzola.org/themes/anatole-zola/":{"body":220,"title":2},"https://www.getzola.org/themes/andromeda/":{"body":190,"title":1},"https://www.getzola.org/themes/anemone/":{"body":353,"title":1},"https://www.getzola.org/themes/anpu/":{"body":98,"title":1},"https://www.getzola.org/themes/apollo/":{"body":67,"title":1},"https://www.getzola.org/themes/archie-zola/":{"body":225,"title":2},"https://www.getzola.org/themes/ataraxia-zola/":{"body":159,"title":1},"https://www.getzola.org/themes/bearblog/":{"body":260,"title":1},"https://www.getzola.org/themes/blow/":{"body":176,"title":1},"https://www.getzola.org/themes/book/":{"body":111,"title":1},"https://www.getzola.org/themes/boring/":{"body":31,"title":1},"https://www.getzola.org/themes/clean-blog/":{"body":92,"title":2},"https://www.getzola.org/themes/codinfox-zola/":{"body":264,"title":2},"https://www.getzola.org/themes/d3c3nt/":{"body":89,"title":1},"https://www.getzola.org/themes/deepthought/":{"body":421,"title":1},"https://www.getzola.org/themes/dinkleberg/":{"body":58,"title":1},"https://www.getzola.org/themes/docsascode-theme/":{"body":247,"title":1},"https://www.getzola.org/themes/dose/":{"body":161,"title":1},"https://www.getzola.org/themes/duckquill/":{"body":146,"title":1},"https://www.getzola.org/themes/emily/":{"body":79,"title":1},"https://www.getzola.org/themes/ergo/":{"body":195,"title":1},"https://www.getzola.org/themes/even/":{"body":147,"title":1},"https://www.getzola.org/themes/feather/":{"body":83,"title":1},"https://www.getzola.org/themes/float/":{"body":54,"title":1},"https://www.getzola.org/themes/hallo/":{"body":81,"title":1},"https://www.getzola.org/themes/halve-z/":{"body":71,"title":2},"https://www.getzola.org/themes/hayflow/":{"body":454,"title":1},"https://www.getzola.org/themes/hephaestus/":{"body":129,"title":1},"https://www.getzola.org/themes/hermit/":{"body":46,"title":1},"https://www.getzola.org/themes/hook/":{"body":147,"title":1},"https://www.getzola.org/themes/hyde/":{"body":126,"title":1},"https://www.getzola.org/themes/inky/":{"body":270,"title":1},"https://www.getzola.org/themes/juice/":{"body":167,"title":1},"https://www.getzola.org/themes/kangae/":{"body":397,"title":1},"https://www.getzola.org/themes/karzok/":{"body":122,"title":1},"https://www.getzola.org/themes/kita/":{"body":93,"title":1},"https://www.getzola.org/themes/kodama-theme/":{"body":316,"title":1},"https://www.getzola.org/themes/lightspeed/":{"body":178,"title":1},"https://www.getzola.org/themes/mabuya/":{"body":293,"title":1},"https://www.getzola.org/themes/minimal-dark/":{"body":89,"title":2},"https://www.getzola.org/themes/nasm-theme/":{"body":114,"title":2},"https://www.getzola.org/themes/neovim-theme/":{"body":35,"title":1},"https://www.getzola.org/themes/no-style-please/":{"body":163,"title":2},"https://www.getzola.org/themes/ntun/":{"body":40,"title":3},"https://www.getzola.org/themes/oceanic-zen/":{"body":32,"title":2},"https://www.getzola.org/themes/otherworld/":{"body":70,"title":1},"https://www.getzola.org/themes/papaya/":{"body":1026,"title":1},"https://www.getzola.org/themes/papermod/":{"body":124,"title":1},"https://www.getzola.org/themes/particle/":{"body":125,"title":1},"https://www.getzola.org/themes/pico/":{"body":111,"title":1},"https://www.getzola.org/themes/polymathic/":{"body":235,"title":1},"https://www.getzola.org/themes/resume/":{"body":261,"title":1},"https://www.getzola.org/themes/sam/":{"body":164,"title":1},"https://www.getzola.org/themes/seagull/":{"body":56,"title":1},"https://www.getzola.org/themes/seje2/":{"body":52,"title":1},"https://www.getzola.org/themes/serene/":{"body":52,"title":1},"https://www.getzola.org/themes/shadharon/":{"body":100,"title":1},"https://www.getzola.org/themes/simple-dev-blog/":{"body":204,"title":3},"https://www.getzola.org/themes/slim/":{"body":44,"title":1},"https://www.getzola.org/themes/soapstone/":{"body":19,"title":1},"https://www.getzola.org/themes/solar-theme-zola/":{"body":43,"title":3},"https://www.getzola.org/themes/tabi/":{"body":447,"title":1},"https://www.getzola.org/themes/tale-zola/":{"body":296,"title":2},"https://www.getzola.org/themes/tilde/":{"body":31,"title":1},"https://www.getzola.org/themes/toucan/":{"body":25,"title":1},"https://www.getzola.org/themes/tranquil/":{"body":159,"title":1},"https://www.getzola.org/themes/zallery/":{"body":279,"title":1},"https://www.getzola.org/themes/zerm/":{"body":141,"title":1},"https://www.getzola.org/themes/zhuia/":{"body":279,"title":1},"https://www.getzola.org/themes/zola-386/":{"body":276,"title":1},"https://www.getzola.org/themes/zola-easydocs-theme/":{"body":296,"title":1},"https://www.getzola.org/themes/zola-grayscale/":{"body":437,"title":2},"https://www.getzola.org/themes/zola-hacker/":{"body":352,"title":2},"https://www.getzola.org/themes/zola-henry/":{"body":66,"title":1},"https://www.getzola.org/themes/zola-minimal/":{"body":126,"title":1},"https://www.getzola.org/themes/zola-paper/":{"body":58,"title":2},"https://www.getzola.org/themes/zola-pickles/":{"body":149,"title":1},"https://www.getzola.org/themes/zola-theme-course/":{"body":121,"title":1},"https://www.getzola.org/themes/zola-theme-hikari/":{"body":32,"title":1},"https://www.getzola.org/themes/zola-theme-terminimal/":{"body":630,"title":1},"https://www.getzola.org/themes/zolarwind/":{"body":1354,"title":1},"https://www.getzola.org/themes/zolastrap/":{"body":269,"title":1},"https://www.getzola.org/themes/zplit/":{"body":370,"title":1},"https://www.getzola.org/themes/zulma/":{"body":620,"title":1}},"length":133},"lang":"English"} \ No newline at end of file diff --git a/site.css b/site.css new file mode 100644 index 000000000..c75064e59 --- /dev/null +++ b/site.css @@ -0,0 +1 @@ +/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible;}pre{font-family:monospace,monospace;font-size:1em;}a{background-color:rgba(0,0,0,0);-webkit-text-decoration-skip:objects;}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted;}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em;}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible}button,select{text-transform:none}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button;}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{display:inline-block;vertical-align:baseline;}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0;}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px;}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}*,*:before,*:after{box-sizing:border-box}html,body{font-size:16px;height:100%}body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";line-height:1.6;background-color:#191919;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%234b4b4b' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");color:#fff;display:flex;flex-direction:column;min-height:100vh;overflow-wrap:break-word}img{max-width:100%;height:auto}a{color:#007cbc;text-decoration:none;cursor:pointer;border-bottom:1px solid rgba(0,124,188,.25)}a:hover{border-bottom:1px solid #007cbc}a:visited{color:#007cbc}a.button{outline:none;white-space:nowrap;display:inline-block;height:40px;line-height:40px;padding:0 14px;box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);background:#fff;border-radius:4px;font-size:15px;font-weight:600;text-transform:uppercase;letter-spacing:.025em;color:#191919;text-decoration:none;transition:all .15s ease;border-bottom:none}a.button:hover{transform:translateY(-1px);text-decoration:none;box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08)}a.button:active{background-color:#f6f9fc;transform:translateY(1px)}a.white{color:#fff;border-bottom-color:rgba(255,255,255,.25)}a.white:hover{border-bottom-color:#fff}a.white:visited{color:#fff}pre{padding:1rem;overflow:auto}pre[data-linenos]{padding:1rem 0}pre mark{display:block;background-color:rgba(254,252,232,.9)}pre table{width:100%;border-collapse:collapse}pre table td{padding:0}pre table td:nth-of-type(1){text-align:center;user-select:none}p code,li code:not(pre code){background-color:#f5f5f5;white-space:pre-wrap;padding:5px;border-radius:5px;font-size:.85rem;box-shadow:0 1px 3px rgba(0,0,0,.1),0 1px 1px rgba(0,0,0,.1),0 2px 1px -1px rgba(0,0,0,.12)}header{padding:2rem 3rem;display:flex;flex-wrap:wrap;align-items:baseline;column-gap:2rem}header nav{display:flex;flex-grow:1;flex-wrap:wrap;align-items:baseline;justify-content:center;gap:1rem 2rem;margin:0}.container{max-width:1000px;margin:0 auto}@media only screen and (max-width: 1000px){header{max-width:90%;margin-inline:auto;justify-content:center}}.content{flex-grow:1}.content--reversed{background:#fff;color:#191919}footer{text-align:center;padding:2rem 3rem}header .header__logo{border-bottom:none}header ul{padding-inline-start:0;display:flex;gap:1ch 2rem;margin:0}header li{list-style:none}header .header__logo{font-size:2rem;font-weight:bold}header .header__logo:hover{text-decoration:none}@media only screen and (max-width: 1000px){header{padding:1rem 0}header nav{text-align:center}header .header__logo{text-align:center;width:100%}}.inverted-colours{background:#fff;color:#191919}.hero{width:60%;margin:0 auto;margin-top:3rem;margin-bottom:6rem;text-align:center}.hero__tagline{margin-bottom:2rem}.selling-points{padding:3rem}.selling-points__content{display:flex;flex-wrap:wrap}.selling-point{width:33%;padding:2rem;padding-top:1rem}@media only screen and (max-width: 1000px){.hero{width:90%;margin-top:2rem;margin-bottom:4rem}.selling-points{padding:2rem}.selling-point{width:100%;padding:1rem}.selling-point h2{text-align:center}}.documentation{padding:3rem;display:flex}.documentation__sidebar{margin-right:2rem}.documentation__sidebar ul{padding-left:0;list-style:none}.documentation__sidebar>ul>li{margin-bottom:1rem}.documentation__sidebar>ul .documentation__sidebar__title{font-size:1.25rem;font-weight:bold}.documentation__sidebar>ul ul{margin-top:.25rem}.documentation__sidebar>ul ul li{border-left:1px solid #191919;padding-left:.75rem;padding-top:.25rem;padding-bottom:.25rem}.documentation__sidebar>ul ul li.active a{font-weight:bold;border-bottom:1px solid #007cbc}.documentation__content{width:60%;margin-left:2rem}.documentation__content h1 .zola-anchor,.documentation__content h2 .zola-anchor,.documentation__content h3 .zola-anchor,.documentation__content h4 .zola-anchor,.documentation__content h5 .zola-anchor,.documentation__content h6 .zola-anchor{font-size:1.25rem;margin-left:-2rem;margin-right:.75rem;text-decoration:none;border-bottom-color:rgba(0,0,0,0);cursor:pointer}.documentation__content blockquote{border-left:10px solid #000;padding:.25rem .5rem;margin-left:0;font-style:italic}.documentation iframe{width:100%;min-height:400px}@media only screen and (max-width: 1000px){.documentation{flex-direction:column;padding:2rem}.documentation__content{width:100%;margin-left:0}.documentation__sidebar{border-top:1px solid #191919;order:1;margin-right:0;margin-top:1rem}}.themes-container{padding:3rem;width:80%;margin:0 auto}.themes-container img{max-width:100%}@media only screen and (max-width: 1000px){.themes-container{width:100%;margin:0 1rem}}.themes{display:flex;flex-wrap:wrap;justify-content:space-between}.themes .theme{width:45%;text-decoration:none;cursor:pointer;margin-bottom:2rem;border-bottom:none;box-shadow:0 1px 2px rgba(0,0,0,.4);padding:10px}.themes .theme img{width:100%;aspect-ratio:16/9;height:90%;object-fit:cover}.themes .theme span{display:block;text-align:center;font-size:1.1rem}.theme-info{display:flex;align-items:flex-start;padding:1rem}.theme-info .thumb{box-shadow:0 1px 2px rgba(0,0,0,.07);width:400px;margin-right:2rem}.theme-info h1,.theme-info p{margin:0}@media only screen and (max-width: 1000px){.themes .theme{width:100%}}@media only screen and (max-width: 1000px){.theme-info{flex-direction:column;align-items:center}.theme-info img{margin-bottom:1rem}}.search-container{display:inline-block;position:relative;width:100%;max-width:300px;margin-left:auto}.search-container input{width:100%;padding:.5rem}.search-results{display:none;position:absolute;background:#fff;color:#000;padding:1rem;box-shadow:2px 2px 2px 0 rgba(0,0,0,.5);max-height:500px;overflow:auto;width:150%;right:0}.search-results__items{list-style:none}.search-results li{margin-top:1rem;border-bottom:1px solid #ccc;font-size:.9rem}.search-results li:first-of-type{margin-top:0}.search-results__item{margin-bottom:1rem}.search-results__item a{font-size:1.2rem;display:inline-block;margin-bottom:.5rem}@media only screen and (max-width: 1000px){.search-container{margin-left:0}} \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 000000000..0c062f6b0 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,508 @@ + + + + https://www.getzola.org/ + + + https://www.getzola.org/documentation/ + + + https://www.getzola.org/documentation/content/ + + + https://www.getzola.org/documentation/content/image-processing/ + + + https://www.getzola.org/documentation/content/linking/ + + + https://www.getzola.org/documentation/content/multilingual/ + + + https://www.getzola.org/documentation/content/overview/ + + + https://www.getzola.org/documentation/content/page/ + + + https://www.getzola.org/documentation/content/sass/ + + + https://www.getzola.org/documentation/content/search/ + + + https://www.getzola.org/documentation/content/section/ + + + https://www.getzola.org/documentation/content/shortcodes/ + + + https://www.getzola.org/documentation/content/syntax-highlighting/ + + + https://www.getzola.org/documentation/content/table-of-contents/ + + + https://www.getzola.org/documentation/content/taxonomies/ + + + https://www.getzola.org/documentation/deployment/ + + + https://www.getzola.org/documentation/deployment/aws-s3/ + + + https://www.getzola.org/documentation/deployment/cloudflare-pages/ + + + https://www.getzola.org/documentation/deployment/codeberg-pages/ + + + https://www.getzola.org/documentation/deployment/docker-image/ + + + https://www.getzola.org/documentation/deployment/edgio/ + + + https://www.getzola.org/documentation/deployment/flyio/ + + + https://www.getzola.org/documentation/deployment/github-pages/ + + + https://www.getzola.org/documentation/deployment/gitlab-pages/ + + + https://www.getzola.org/documentation/deployment/netlify/ + + + https://www.getzola.org/documentation/deployment/overview/ + + + https://www.getzola.org/documentation/deployment/sourcehut/ + + + https://www.getzola.org/documentation/deployment/vercel/ + + + https://www.getzola.org/documentation/deployment/zeabur/ + + + https://www.getzola.org/documentation/getting-started/ + + + https://www.getzola.org/documentation/getting-started/cli-usage/ + + + https://www.getzola.org/documentation/getting-started/configuration/ + + + https://www.getzola.org/documentation/getting-started/directory-structure/ + + + https://www.getzola.org/documentation/getting-started/installation/ + + + https://www.getzola.org/documentation/getting-started/overview/ + + + https://www.getzola.org/documentation/templates/ + + + https://www.getzola.org/documentation/templates/404/ + + + https://www.getzola.org/documentation/templates/archive/ + + + https://www.getzola.org/documentation/templates/feeds/ + + + https://www.getzola.org/documentation/templates/overview/ + + + https://www.getzola.org/documentation/templates/pages-sections/ + + + https://www.getzola.org/documentation/templates/pagination/ + + + https://www.getzola.org/documentation/templates/robots/ + + + https://www.getzola.org/documentation/templates/sitemap/ + + + https://www.getzola.org/documentation/templates/taxonomies/ + + + https://www.getzola.org/documentation/themes/ + + + https://www.getzola.org/documentation/themes/creating-a-theme/ + + + https://www.getzola.org/documentation/themes/extending-a-theme/ + + + https://www.getzola.org/documentation/themes/installing-and-using-themes/ + + + https://www.getzola.org/documentation/themes/overview/ + + + https://www.getzola.org/themes/ + + + https://www.getzola.org/themes/abridge/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/adidoks/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/after-dark/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/albatros/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/anatole-zola/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/andromeda/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/anemone/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/anpu/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/apollo/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/archie-zola/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/ataraxia-zola/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/bearblog/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/blow/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/book/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/boring/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/clean-blog/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/codinfox-zola/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/d3c3nt/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/deepthought/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/dinkleberg/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/docsascode-theme/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/dose/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/duckquill/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/emily/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/ergo/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/even/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/feather/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/float/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/hallo/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/halve-z/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/hayflow/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/hephaestus/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/hermit/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/hook/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/hyde/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/inky/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/juice/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/kangae/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/karzok/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/kita/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/kodama-theme/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/lightspeed/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/mabuya/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/minimal-dark/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/nasm-theme/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/neovim-theme/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/no-style-please/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/ntun/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/oceanic-zen/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/otherworld/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/papaya/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/papermod/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/particle/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/pico/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/polymathic/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/resume/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/sam/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/seagull/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/seje2/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/serene/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/shadharon/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/simple-dev-blog/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/slim/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/soapstone/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/solar-theme-zola/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/tabi/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/tale-zola/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/tilde/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/toucan/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/tranquil/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zallery/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zerm/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zhuia/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-386/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-easydocs-theme/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-grayscale/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-hacker/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-henry/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-minimal/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-paper/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-pickles/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-theme-course/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-theme-hikari/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zola-theme-terminimal/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zolarwind/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zolastrap/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zplit/ + 2024-08-12T05:57:54Z + + + https://www.getzola.org/themes/zulma/ + 2024-08-12T05:57:54Z + + diff --git a/themes/abridge/index.html b/themes/abridge/index.html new file mode 100644 index 000000000..6e9efca15 --- /dev/null +++ b/themes/abridge/index.html @@ -0,0 +1,202 @@ + + + + + + + + + abridge | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+
+ +

Abridge Zola Theme

+

A fast, lightweight, and modern Zola theme utilizing abridge.css (a class-light semantic HTML CSS Framework). Perfect Lighthouse, YellowLabTools, and Observatory scores. Here is a Zola Themes Benchmarks Page.

+

Lighthouse Score

+

Maintenance of this project is made possible by all the contributors and sponsors. If you'd like to sponsor this project and have your avatar or company logo appear below click here. 💖

+Samuel Henrique +
+

View Abridge demo

+

View Abridge.css demo [abridge.css framework]

+

The Abridge.css demo is simply using Abridge theme as a submodule: config.toml, sass/abridge.scss

+
+

Features

+
    +
  • +Perfect Lighthouse, YellowLabTools, and Observatory scores.
  • +
  • +PWA support (Progressive Web Application).
  • +
  • +All JavaScript can be fully disabled.
  • +
  • +Dark, Light, Auto, and Switcher themes. (colors can be customized, css variables)
  • +
  • +Code syntax highlighting. (colors can be customized, css variables)
  • +
  • +Numbered code blocks with line highlighting.
  • +
  • +Entirely Offline Site by using the PWA or by setting offline = true in config.toml (full search support).
  • +
  • +Multi-language support.
  • +
  • +Search support. (elasticlunr, pagefind, tinysearch)
  • +
  • +Search Suggestions navigation keys, / focus, arrow move, enter select, escape close.
  • +
  • +Search Results Page, type search query then hit Enter Key or click the search button icon.
  • +
  • +SEO support. (Search Engine Optimization)
  • +
  • +Pagination with numbered paginator on index.
  • +
  • +Title Based Previous and Next Article links at bottom of Article.
  • +
  • +Table of Contents in page Index (Optional, clickable links)
  • +
  • +Recent Posts Block. (Optional)
  • +
  • +Back to Top button. (uses css only)
  • +
  • +Code Blocks copy button.
  • +
  • +Email link in footer obfuscation. (anti-spam)
  • +
  • +KaTeX support.
  • +
  • +Archive page.
  • +
  • +Tags.
  • +
  • +Categories. (similar to Tags, disabled/commented out by default)
  • +
  • +Social icon links in footer.
  • +
  • +Responsive design. (mobile first)
  • +
  • +Video Shortcodes: Youtube, Vimeo, Streamable.
  • +
  • +Media Shortcodes: video, img, imgswap, image, gif, audio.
  • +
  • +Other Shortcodes: showdata, katex.
  • +
+

Complete Documentation is available here

+

Quick Start

+

This theme requires version 0.19.1 or later of Zola

+
git clone https://github.com/jieiku/abridge.git
+cd abridge
+zola serve
+# open http://127.0.0.1:1111/ in the browser
+
+

Installation

+

The Quick Start shows how to run the theme directly. Next we will use abridge as a theme to a NEW site.

+

1: Create a new zola site

+
yes "" | zola init mysite
+cd mysite
+
+

2: Install Abridge

+

Add the theme as a git submodule:

+
git init  # if your project is a git repository already, ignore this command
+git submodule add https://github.com/jieiku/abridge.git themes/abridge
+git submodule update --init --recursive
+git submodule update --remote --merge
+
+

Or clone the theme into your themes directory:

+
git clone https://github.com/jieiku/abridge.git themes/abridge
+
+

3: Configuration

+

Copy some files from the theme directory to your project's root directory:

+
rsync themes/abridge/.gitignore .gitignore
+rsync themes/abridge/config.toml config.toml
+rsync themes/abridge/content/_index.md content/
+rsync -r themes/abridge/COPY-TO-ROOT-SASS/* sass/
+rsync themes/abridge/netlify.toml netlify.toml
+rsync themes/abridge/package_abridge.js package_abridge.js
+rsync themes/abridge/package.json package.json
+
+
    +
  • config.toml base configuration with all config values.
  • +
  • content/_index.md required to set pagination.
  • +
  • COPY-TO-ROOT-SASS/abridge.scss overrides to customize Abridge variables.
  • +
  • netlify.toml settings to deploy your repo with netlfiy.
  • +
  • package_abridge.js node script to: update cache files list in PWA, minify js, bundle js
  • +
  • package.json to facilitate use of package_abridge.js
  • +
+

Uncomment the theme line in your project's root config.toml:

+
sed -i 's/^#theme = "abridge"/theme = "abridge"/' config.toml
+
+

4: Add new content

+

Copy the content from the theme directory to your project or make a new post:

+
rsync -r themes/abridge/content .
+
+

5: Run the project

+

Just run zola serve in the root path of the project:

+
zola serve
+
+

Zola will start the dev web server, accessible by default at http://127.0.0.1:1111.

+

Saved changes will live reload in the browser. (press ctrl+f5, or while developing set pwa=false in config.toml)

+

Customization

+

For further customization be sure to check the docs.

+ +

Do you love this theme? Was it useful to you? Please leave a github star, and if you feel inclined to donate you can make a donation to me through github sponsors.

+

Contributing and Philosophy

+

We'd love your help! Especially with fixes to issues, or improvements to existing features.

+

The goal is for Abridge to be lightweight, fast, and to work properly even if javascript is disabled or blocked.

+

The only feature that may be considered a necessity that relies on javascript is the Search.

+

License

+

Abridge is distributed under the terms of the MIT license.

+ + +
+ +
+ + + + + + diff --git a/themes/abridge/screenshot.png b/themes/abridge/screenshot.png new file mode 100644 index 000000000..c8b9d8610 Binary files /dev/null and b/themes/abridge/screenshot.png differ diff --git a/themes/adidoks/index.html b/themes/adidoks/index.html new file mode 100644 index 000000000..2b1aea14f --- /dev/null +++ b/themes/adidoks/index.html @@ -0,0 +1,179 @@ + + + + + + + + + adidoks | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola Theme AdiDoks

+

AdiDoks is a modern documentation theme, which is a port of the Hugo +theme Doks for Zola.

+

Demo

+

Live Preview.

+

Requirements

+

Before using the theme, you need to install the Zola ≥ 0.15.0.

+

Quick Start

+
git clone https://github.com/aaranxu/adidoks.git
+cd adidoks
+zola serve
+# open http://127.0.0.1:1111/ in the browser
+
+

Read more from the document of the AdiDoks.

+

Installation

+

Just earlier we showed you how to run the theme directly. Now we start to +install the theme in an existing site step by step.

+

Step 1: Create a new zola site

+
zola init mysite
+
+

Step 2: Install AdiDoks

+

Download this theme to your themes directory:

+
cd mysite/themes
+git clone https://github.com/aaranxu/adidoks.git
+
+

Or install as a submodule:

+
cd mysite
+git init  # if your project is a git repository already, ignore this command
+git submodule add https://github.com/aaranxu/adidoks.git themes/adidoks
+
+

Step 3: Configuration

+

Enable the theme in your config.toml in the site directory:

+
theme = "adidoks"
+
+

Or copy the config.toml.example from the theme directory to your project's +root directory:

+
cp themes/adidoks/config.toml.example config.toml
+
+

Step 4: Add new content

+

You can copy the content from the theme directory to your project:

+
cp -r themes/adidoks/content .
+
+

You can modify or add new posts in the content/blog, content/docs or other +content directories as needed.

+

Step 5: Run the project

+

Just run zola serve in the root path of the project:

+
zola serve
+
+

AdiDoks will start the Zola development web server accessible by default at +http://127.0.0.1:1111. Saved changes will live reload in the browser.

+

Customisation

+

You can customize your configurations, templates and content for yourself. Look +at the config.toml, theme.toml, content files and templates files in this +repo for an idea.

+

Global Configuration

+

There are some configuration options that you can customize in config.toml.

+

Configuration options before extra options

+

Set the authors's taxonomies for the site.

+
taxonomies = [
+  {name = "authors"},
+]
+
+

Use search function for the content.

+
build_search_index = true
+
+

Configuration options under the extra

+

The following options should be under the [extra] in config.toml

+
    +
  • language_code - set HTML file language (default to en-US)
  • +
  • theme_color - your site's HTML color (default to #fff)
  • +
  • title_separator - the separator to your site title, like | and - (defaults to |)
  • +
  • title_addition - the additon content for the title of the homepage
  • +
  • timeformat - the timeformat for the blog article published date
  • +
  • timezone - the timezone for the blog article published date
  • +
  • edit_page (and docs_repo, repo_branch) - whether to show the edit page in the github repo for your docs
  • +
  • math (and library) - set KaTeX or MathJax library
  • +
  • [extra.open] - Open Graph + Twitter Cards for the site
  • +
  • [extra.schema] - set JSON-LD for the site
  • +
  • [[extra.menu.main]] - the header navigations for the site
  • +
  • [[extra.menu.social]] - the social links on the header of the page
  • +
  • [extra.footer] - the footer content on the left
  • +
  • [[extra.footer.nav]] - the footer navigations on the right
  • +
+

Templates

+

All pages are extend to the base.html, and you can customize them as need.

+

Content

+

Homepage

+

Go to the content/_index.md file to add your own homepage content.

+
    +
  • [extra] - the main content of the homepage
  • +
  • [[extra.ist]] - the lists' content of the homepage
  • +
+

Sections

+

Each section includes a _index.md, and you can customize it or add your new +section under the content folder.

+

Pages

+

There are mainly three types of pages in the site.

+
    +
  • blog - blog article
  • +
  • docs - documentation article
  • +
  • authors - authors page if you need to add some information for a new author
  • +
+

Reporting Issues

+

We use GitHub Issues as the official bug tracker for the AdiDoks. Please +search existing issues. It’s +possible someone has already reported the same problem.

+

If your problem or idea is not addressed yet, open a new issue.

+

Contributing

+

We'd love your help! Please see CONTRIBUTING.md to learn +about the kinds of contributions we're looking for.

+

License

+

AdiDoks is distributed under the terms of the +MIT license.

+ + +
+ +
+ + + + + + diff --git a/themes/adidoks/screenshot.png b/themes/adidoks/screenshot.png new file mode 100644 index 000000000..ae728d6a6 Binary files /dev/null and b/themes/adidoks/screenshot.png differ diff --git a/themes/after-dark/index.html b/themes/after-dark/index.html new file mode 100644 index 000000000..b8ed9b4d1 --- /dev/null +++ b/themes/after-dark/index.html @@ -0,0 +1,131 @@ + + + + + + + + + after-dark | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

after-dark

+

after-dark screenshot

+

Contents

+
    +
  • Installation
  • +
  • Options +
      +
    • Top menu
    • +
    • Title
    • +
    • Author
    • +
    +
  • +
+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://github.com/getzola/after-dark.git
+
+

and then enable it in your config.toml:

+
theme = "after-dark"
+
+

This theme requires your index section (content/_index.md) to be paginated to work:

+
paginate_by = 5
+
+

The posts should therefore be in directly under the content folder.

+

The theme requires tags and categories taxonomies to be enabled in your config.toml:

+
taxonomies = [
+    # You can enable/disable RSS
+    {name = "categories", feed = true},
+    {name = "tags", feed = true},
+]
+
+

If you want to paginate taxonomies pages, you will need to overwrite the templates +as it only works for non-paginated taxonomies by default.

+

Options

+

Top-menu

+

Set a field in extra with a key of after_dark_menu:

+
after_dark_menu = [
+    {url = "$BASE_URL", name = "Home"},
+    {url = "$BASE_URL/categories", name = "Categories"},
+    {url = "$BASE_URL/tags", name = "Tags"},
+    {url = "https://google.com", name = "Google"},
+]
+
+

If you put $BASE_URL in a url, it will automatically be replaced by the actual +site URL.

+

Title

+

The site title is shown on the homepage. As it might be different from the <title> +element that the title field in the config represents, you can set the after_dark_title +instead.

+

Author

+

You can set this on a per page basis or in the config file.

+

config.toml:

+
[extra]
+author = "John Smith"
+
+

In a page (wrap this in +++):

+
title = "..."
+date = 1970-01-01
+
+[extra]
+author = "John Smith"
+
+

Original

+

This template is based on the Hugo template https://git.habd.as/comfusion/after-dark

+ + +
+ +
+ + + + + + diff --git a/themes/after-dark/screenshot.png b/themes/after-dark/screenshot.png new file mode 100644 index 000000000..e34718d6b Binary files /dev/null and b/themes/after-dark/screenshot.png differ diff --git a/themes/albatros/index.html b/themes/albatros/index.html new file mode 100644 index 000000000..a199f56ca --- /dev/null +++ b/themes/albatros/index.html @@ -0,0 +1,90 @@ + + + + + + + + + Albatros | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Albatros theme for Zola

+

This theme was made for Duniter website. It was then abstracted and turned into Albatros.

+

screenshot

+

Installation

+

Add the theme as a git submodule:

+
git submodule add --name albatros https://git.42l.fr/HugoTrentesaux/albatros.git themes/albatros
+
+

and enable the theme in your config.toml

+

theme = "albatros"

+

Features

+

It has a lot of feature that I could not find time to document yet. Most of the available customization is in theme.toml/extra section and sass/_albatros.sass file (e.g. for colors).

+

See:

+
    +
  • https://duniter.fr/
  • +
  • https://duniter.org/
  • +
+

for reference.

+

Landing pages

+

You are encouraged to provide custom landing pages that you can write in template/custom. +The theme will take care of the rest (pages organised as wiki with breadcrumb).

+

Authors

+

Each author must have a card in content/team folder.

+

Support

+

I'll provide support on demand on Zola forum by documenting the theme step by step.

+ + +
+ +
+ + + + + + diff --git a/themes/albatros/screenshot.png b/themes/albatros/screenshot.png new file mode 100644 index 000000000..33a6d2227 Binary files /dev/null and b/themes/albatros/screenshot.png differ diff --git a/themes/anatole-zola/index.html b/themes/anatole-zola/index.html new file mode 100644 index 000000000..20e3e04c3 --- /dev/null +++ b/themes/anatole-zola/index.html @@ -0,0 +1,241 @@ + + + + + + + + + anatole-zola | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Anatole Theme for Zola

+

Anatole theme for Farbox ported to Zola

+
+

Zola Homepage | Demo with customizations

+
+

screenshot

+

screenshot-mobile

+

screenshot-dark

+

screenshot-mobile-dark

+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/longfangsong/anatole-zola.git
+
+

and then enable it in your config.toml:

+
theme = "anatole-zola"
+
+

And copy the content/about, content/archive, content/_index.md in the theme folder to your own content folder. And edit the _index.md in about folder to edit the content of your about page.

+

Options

+

Basic

+

Add title, description and base_url:

+
title = "Anatole"
+description = "A other zola theme"
+base_url = "https://example.com"
+
+

Mode

+

Though the origin theme only support light mode, we added a dark mode option here.

+

You can either

+
    +
  • set the extra.mode field in config.toml to use the dark/light mode
  • +
  • or set the extra.default_mode field in config.toml to read the dark/light mode from localStorage (the key is 'mode'), and use some Javascript to control the theme each reader is using
  • +
  • or do nothing, we'll use light mode by default
  • +
+

Language

+

Currently, we have English, Chinese, German and Swedish translations, set the default_language if necessary:

+
# 如果你想要中文
+default_language = "zh"
+
+

If there are complications, you can copy this snippet to your config.toml:

+
[languages.en.translations]
+language_name = "English"
+about = "About"
+home = "Home"
+tags = "Tags"
+archive = "Archive"
+links = "Links"
+date_format = "%Y-%m-%d"
+next_page = "Next Page"
+last_page = "Last Page"
+
+[languages.zh.translations]
+language_name = "中文"
+home = "首页"
+about = "关于"
+tags = "标签"
+archive = "归档"
+links = "友链"
+date_format = "%Y-%m-%d"
+next_page = "下一页"
+last_page = "上一页"
+
+[languages.de.translations]
+language_name = "Deutsch"
+about = "Info"
+home = "Home"
+tags = "Kategorien"
+archive = "Archiv"
+links = "Links"
+date_format = "%d-%m-%Y"
+next_page = "Nächste Seite"
+last_page = "Vorherige Seite"
+
+[languages.sv.translations]
+language_name = "Svenska"
+about = "Info"
+home = "Hem"
+tags = "Etiketter"
+archive = "Arkiv"
+links = "Länkar"
+date_format = "%Y-%m-%d"
+next_page = "Nästa Sidan"
+last_page = "Sista Sidan"
+
+

Feel free to create a pull request if you want to translate the theme into other languages!

+

Multilingual

+

The theme will become multilingual automatically if you specify another language except default_language.

+

You'll see a language-switching button on top right.

+

Sections

+

Tags and links sections are optional.

+
    +
  • +

    If you want to enable the tags page, add

    +
    taxonomies = [
    +  {name = "tags"},
    +]
    +
    +[extra.show]
    +tags = true
    +
    +

    To your config.toml

    +
  • +
  • +

    If you want to enable the links page, add

    +
    [extra.show]
    +links = true
    +
    +

    and copy content/links to your own content library. And edit the _index.md in it to modify its content.

    +
  • +
  • +

    If you want to add the author's name on each page, add:

    +
    [extra]
    +author = "John Doe"
    +
    +
  • +
+ +

We support a bunch of social links:

+
[extra.social]
+github = ""
+gitlab = ""
+stackoverflow = "" # use user_id
+twitter = ""
+mastodon = "" # use hostname/@username
+facebook = ""
+instagram = ""
+dribbble = ""
+weibo = ""
+linkedin = ""
+flickr = ""
+
+

Fill in your username if you want! And the logo won't appear if you leave it empty.

+

Comment system

+

We currently support...

+ +
[extra.comment.valine]
+appid = "Your appid goes here"
+appkey = "Your appkey goes here"
+notify = false # true/false: mail notify https://github.com/xCss/Valine/wiki/Valine-%E8%AF%84%E8%AE%BA%E7%B3%BB%E7%BB%9F%E4%B8%AD%E7%9A%84%E9%82%AE%E4%BB%B6%E6%8F%90%E9%86%92%E8%AE%BE%E7%BD%AE
+verify = false # true/false: verify code
+avatar = "mm" # avatar style https://github.com/xCss/Valine/wiki/avatar-setting-for-valine
+placeholder = "Say something here"
+
+
    +
  • Disqus, note that Disqus does not work in Mainland China:
  • +
+
[extra.comment.disqus]
+name = "longfangsong"
+
+ +
[extra.comment.utterances]
+repo = "Your repo for comments"
+issue_term = "pathname"
+theme = "github-light"
+
+

Customize

+

There are several options I left in the origin templates for you to customize your site.

+

More style

+

You can create a blog.scss or something similiar in the your sass folder, add a templates.html with following content:

+
{%/* extends "anatole-zola/templates/basic.html" */%}
+{%/* block extra_head */%}
+<link rel="stylesheet" href="{{ get_url(path="blog.css") }}">
+{%/* endblock */%}
+
+ +

You can add more social links by adding a templates.html with some content added to more_social_link block:

+
{%/* extends "anatole-zola/templates/basic.html" */%}
+{%/* block more_social_link */%}
+<div id="pirate" data-wordart-src="//cdn.wordart.com/json/685czi4rqil5" style="width: 100%;" data-wordart-show-attribution></div>
+{%/* endblock */%}
+
+

If you want to use some awesome logos, FontAwesome icons are already available.

+ + +
+ +
+ + + + + + diff --git a/themes/anatole-zola/screenshot.png b/themes/anatole-zola/screenshot.png new file mode 100644 index 000000000..68657ff5d Binary files /dev/null and b/themes/anatole-zola/screenshot.png differ diff --git a/themes/andromeda/index.html b/themes/andromeda/index.html new file mode 100644 index 000000000..0aaff99ce --- /dev/null +++ b/themes/andromeda/index.html @@ -0,0 +1,111 @@ + + + + + + + + + Andromeda | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Andromeda Theme for Zola

+
+

Andromeda is a lightweight photojournal & blog theme designed for Zola.

+
+

With built-in support for galleries and some options for customization, Andromeda is designed for photojournalism without complications.

+

Index demo: +Index demo graphic

+

Post demo: +Post demo graphic

+
+

Installation

+

Assuming you already have a site set up (see the Zola guide for setting up a site),

+
    +
  1. Create a themes directory in the root of your site if it does not already exist.
  2. +
  3. Clone the theme into your themes directory:
    git clone https://github.com/Pixadus/andromeda-theme themes/andromeda
    +
    +
  4. +
  5. Duplicate the structure of the the config.toml file found in themes/andromeda/config.toml or this repository within your own config.toml.
  6. +
  7. Set the theme to Andromeda, by including theme = andromeda in your config.toml file.
  8. +
+

Creating pages

+

To create a new post, create a .md file within /content, with the header format:

+
+++
+title = "Post title"
+date = 2023-04-25
+description = "Post description"
+extra = {header_img = "image-url"}
++++
+
+

Note: The +++ are necessary.

+

The header_img field is the image shown on the homepage of the blog and in the heading of each page. It can be a remote URL or local - if local, by default this will be files stored in the static folder, or /images in the URL.

+

Galleries

+

Galleries can be set up by using the following template in your Markdown file:

+
<div class="gallery">
+    <a href="original_photo1.jpg" data-ngthumb="thumbnail_photo1.jpg"></a>
+    <a href="original_photo2.jpg" data-ngthumb="thumbnail_photo2.jpg"></a>
+</div>
+
+

For more or less photos, use <a href> tags. Flickr provides a good hosting option as it automatically generates thumbnails for you.

+

Configuration

+

Andromeda supports custom navbar links - see config.toml for an example. You may also set a custom favicon.ico though config.toml.

+

If you wish to customize the design of the gallery, basic Javascript knowledge will be necessary. Andromeda uses nanogallery2 by default - the documentation can be found here. Customizations to the gallery design are done within the {%/* macro pagefooter() */%} block within /templates/macros.html.

+

By default, this script is divided into three sections (indicated by item==): single-image, two-image and three+ image gallery setups.

+

Credits

+

The demo images used included Antelope Canyon by Anishkumar Sugumaran and Bryce Canyon by Marco Isler.

+ + +
+ +
+ + + + + + diff --git a/themes/andromeda/screenshot.png b/themes/andromeda/screenshot.png new file mode 100644 index 000000000..26197474a Binary files /dev/null and b/themes/andromeda/screenshot.png differ diff --git a/themes/anemone/index.html b/themes/anemone/index.html new file mode 100644 index 000000000..c5d58e36c --- /dev/null +++ b/themes/anemone/index.html @@ -0,0 +1,164 @@ + + + + + + + + + anemone | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

anemone

+

Introducing "anemone," a minimalist Zola theme that prioritizes clean CSS and avoids heavy JavaScript. Enjoy a seamless user experience with lightning-fast load times. Let your content take center stage in a clutter-free, elegant design that enhances readability. Responsive and efficient, anemone brings focus to your ideas.

+

You can browse the demo website here +I also use it on my own website.

+

Anemone is a versatile Zola theme that comes with both light and dark variants. You can easily switch between the light and dark themes to suit your preferences.

+

Anemone Light and Dark Theme

+

Installation

+

To get started with Anemone, follow these simple steps:

+
    +
  1. Download the theme to your themes directory:
  2. +
+
cd themes
+git clone https://github.com/Speyll/anemone
+
+
    +
  1. Enable Anemone in your config.toml:
  2. +
+
theme = "anemone"
+
+

Release Notes

+

02-03-2024

+

This release brings several improvements and enhancements, focusing mainly on optimizing performance and user experience. Here's a summary of the key changes:

+
    +
  • +

    suCSS Integration: The core CSS now leverages the lightweight suCSS framework made by yours truly, providing better maintainability, robustness, and scalability. With suCSS, the theme should maintain consistent appearance across different browsers.

    +
  • +
  • +

    Enhanced Theme Toggle: The dark and light theme toggle has been revamped for more consistency. Now, the website respects the user's system-wide theme settings, ensuring a seamless experience. Additionally, the toggle retains the selected theme for future visits, offering improved usability.

    +
  • +
  • +

    Smooth Transition and Sound Effect: Enjoy a smoother transition between the dark and light mode accompanied by a subtle sound effect. Rest assured, the added sound effect incurs minimal performance overhead, with the file size being just 1kb.

    +
  • +
  • +

    Class Names and Shortcodes Update: Some class names and shortcodes have been modified for better organization and clarity. I apologize for any inconvenience this may cause.

    +
  • +
  • +

    Slight change in Color Choice: Some dark mode colors have been changed for the sake of readability, still using veqev.

    +
  • +
+

Options

+

Anemone provides various options to customize your website:

+

Default Taxonomies

+

To use tags, add the following code to a page's metadata:

+
[taxonomies]
+tags = ["tag1", "tag2"]
+
+

Pages List in Homepage

+

Enable listing of pages in the homepage by adding the following code to config.toml:

+
[extra]
+list_pages = true
+
+

Multilanguage

+

The theme has a built-in feature that allows you to use multiple languages. For detailed instructions on how to use this feature, you can refer to the Zola Multilingual documentation. This documentation provides additional information on how to make the most out of this multilingual capability.

+
[languages.fr]
+weight = 2
+title = "anemone"
+languageName = "Français"
+languageCode = "fr"
+
+

Multilanguage-Ready Navigation Bar

+

Customize the header navigation links with the following code in the extra section of config.toml:

+
[extra]
+
+header_nav = [
+  { url = "/", name_en = "/home/", name_fr = "/accueil/" },
+  { url = "/about", name_en = "/about/", name_fr = "/concernant/" },
+  { url = "/journal", name_en = "/journal/", name_fr = "/journal/" },
+  { url = "/blog", name_en = "/blog/", name_fr = "/blog/" }
+]
+
+

Add Table of Contents (TOC) to Pages

+

In a page's frontmatter, set extra.toc to true:

+
[extra]
+toc = true
+
+

Display Author Name in Blog Posts

+

Customize the display of the author's name in your blog posts by toggling the display_author variable to either true or false:

+
[extra]
+display_author = true
+
+

Webrings

+

Add a webring with a shortcode:

+
{{ webring(prev="#", webring="#", webringName="Random Webring", next="#") }}
+
+

Extra Data

+
    +
  • Set the author in both the main config and in pages metadata.
  • +
  • Use the image variable in pages to add an image to HTML <meta> tags.
  • +
  • Similarly, set favicon in the main config, and it will be used as the site icon.
  • +
  • Set footer_content_license and footer_content_license_link if you wish to display content license information in the footer.
  • +
+

Disable Twitter Card

+

Twitter metatags are generated by default. To disable them, set extra.twitter_card to false in config.toml:

+
[extra]
+twitter_card = true
+
+

License

+

The Anemone theme is available as open source under the terms of the MIT License.

+ + +
+ +
+ + + + + + diff --git a/themes/anemone/screenshot.png b/themes/anemone/screenshot.png new file mode 100644 index 000000000..44c39a32a Binary files /dev/null and b/themes/anemone/screenshot.png differ diff --git a/themes/anpu/index.html b/themes/anpu/index.html new file mode 100644 index 000000000..8abe29798 --- /dev/null +++ b/themes/anpu/index.html @@ -0,0 +1,111 @@ + + + + + + + + + Anpu | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Anpu theme for Zola

+

This is a port of the Hugo theme Anubis for Zola.

+

Screenshots

+ + +
Light modeDark mode
light mode website screenshotdark mode website screenshot
+

Usage

+

In order to use the theme you need to clone this repository in your themes folder:

+
git clone https://github.com/zbrox/anpu-zola-theme.git themes/anpu
+
+

Then set your theme setting in config.toml to anpu:

+
theme = "anpu"
+
+

This theme requires both the tags and categories taxonomies.

+
taxonomies = [
+    { name = "categories" },
+    { name = "tags" },
+]
+
+

How To Customize

+

There are two things you can customize:

+
    +
  • The links to be included in the menu
  • +
  • The date format of the posts
  • +
+ +

In your config.toml under the [extra] section you need to set the anpu_menu_links list.

+

Example:

+
[extra]
+anpu_menu_links = [
+    { url = "$BASE_URL/about/", name = "About" },
+]
+
+

If you include $BASE_URL in the url of a link it will be replaced to the base url of your site.

+

Date format

+

In your config.toml under the [extra] section you need to set the anpu_date_format value.

+

Example:

+
[extra]
+anpu_date_format = "%e %B %Y"
+
+

The formatting uses the standart date filter in Tera. The date format options you can use are listed in the chrono crate documentation.

+

Attributions

+

The icons used are part of UXWing's collection.

+

License

+

Source code is available under MIT.

+ + +
+ +
+ + + + + + diff --git a/themes/anpu/screenshot.png b/themes/anpu/screenshot.png new file mode 100644 index 000000000..f23d7d321 Binary files /dev/null and b/themes/anpu/screenshot.png differ diff --git a/themes/apollo/index.html b/themes/apollo/index.html new file mode 100644 index 000000000..9fa49150e --- /dev/null +++ b/themes/apollo/index.html @@ -0,0 +1,136 @@ + + + + + + + + + apollo | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

apollo

+

Modern and minimalistic blog theme powered by Zola. See a live preview here.

+

Named after the greek god of knowledge, wisdom and intellect

+
+ Dark theme +

blog-dark

+
+
+ Light theme +

blog-light

+
+

Features

+
    +
  • +Pagination
  • +
  • +Themes (light, dark, auto)
  • +
  • +Projects page
  • +
  • +Analytics using GoatCounter / Umami
  • +
  • +Social Links
  • +
  • +MathJax Rendering
  • +
  • +Taxonomies
  • +
  • +Meta Tags For Individual Pages
  • +
  • +Custom homepage
  • +
  • +Comments
  • +
  • +Search
  • +
  • +Categories
  • +
+

Installation

+
    +
  1. Download the theme
  2. +
+
git submodule add https://github.com/not-matthias/apollo themes/apollo
+
+
    +
  1. Add the following to the top of your config.toml
  2. +
+
theme = "apollo"
+taxonomies = [{ name = "tags" }]
+
+[extra]
+theme = "auto"
+socials = [
+  # Configure socials here
+]
+menu = [
+  # Configure menu bar here
+]
+
+# See this for more options: https://github.com/not-matthias/apollo/blob/main/config.toml#L14
+
+
    +
  1. Copy the example content
  2. +
+
cp -r themes/apollo/content/* content/
+
+

Configuration

+

You can find all the configuration options here

+

References

+

This theme is based on archie-zola.

+ + +
+ +
+ + + + + + diff --git a/themes/apollo/screenshot.png b/themes/apollo/screenshot.png new file mode 100644 index 000000000..914524433 Binary files /dev/null and b/themes/apollo/screenshot.png differ diff --git a/themes/archie-zola/index.html b/themes/archie-zola/index.html new file mode 100644 index 000000000..201a9c2be --- /dev/null +++ b/themes/archie-zola/index.html @@ -0,0 +1,234 @@ + + + + + + + + + archie-zola | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

archie-zola

+

A zola theme forked from https://github.com/athul/archie

+

Demo

+

The Main branch source code hosted on https://archie-zola.netlify.app

+

ScreenShot

+

screenshot-light

+

screenshot-dark

+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://github.com/XXXMrG/archie-zola.git
+
+

or add as a git submodule:

+
git submodule add https://github.com/XXXMrG/archie-zola.git  themes/archie-zola
+
+

and then enable it in your config.toml:

+
theme = "archie-zola"
+
+

Update

+

If this is the first time you've checked out a repository containing this submodule, you need to initialize the submodules:

+
git submodule update --init
+
+

If your project contains multiple submodules, this command initializes all of them.

+

Then, update all submodule:

+
git submodule update --remote
+
+

Finally, check your commit and push it.

+

Feature

+
    +
  • Pagination
  • +
  • Tags
  • +
  • Auto Dark Mode(based on system theme)
  • +
  • Dark/Light Mode toggle
  • +
  • Google Analytics Script
  • +
  • Meta Tags For Individual Pages
  • +
  • Support Latex.
  • +
+

in the planning stage:

+
    +
  • +Custom CSS & JS
  • +
  • +Twitter Cards & Youtube video
  • +
+

Config

+

Customize <meta/> tags

+

The following TOML and YAML code will yiled two <meta/> tags, <meta property="og:title" content="the og title"/>, <meta property="og:description" content="the og description"/>.

+

TOML:

+
title = "post title"
+description = "post desc"
+date = "2023-01-01"
+
+[extra]
+meta = [
+    {property = "og:title", content = "the og title"},
+    {property = "og:description", content = "the og description"},
+]
+
+

YAML:

+
title: "post title"
+description: "post desc"
+date: "2023-01-01"
+extra:
+  meta:
+    - property: "og:title"
+      content: "the og title"
+    - property: "og:description"
+      content: "the og description"
+
+

If the og:title, the og:description, or the "description" are not set, the page's title and description will be used. That is, the following TOML code generates <meta property="og:title" content="post title"/>, <meta property="og:description" content="post desc"/>, and <meta property="og:description" content="post desc"/> as default values.

+
title = "post title"
+description = "post desc"
+date = "2023-01-01"
+
+

Theme config

+

Cause Zola limited custom config must under the extra field, so there are some different with the origin theme:

+

Demo website config.toml:

+
# control dark mode: auto | dark | toggle
+mode = "toggle"
+
+# subtitle will show under the title in index page
+subtitle = "A zola theme forked from [archie](https://github.com/athul/archie)"
+
+# if set true, will use external CDN resource to load font and js file
+useCDN = false
+
+favicon = "/icon/favicon.png"
+
+# show in the footer
+copyright = "keith"
+
+# config your Google Analysis ID
+ga = "XXXX-XXXXX"
+
+# optional: config your i18n entry
+[extra.translations]
+languages = [{name = "en", url = "/"}]
+
+# config multi-language menu and other text
+[[extra.translations.en]]
+show_more = "Read more ⟶"
+previous_page = "← Previous"
+next_page = "Next →"
+posted_on = "on "
+posted_by = "Published by"
+read_time = "minute read"
+all_tags = "All tags"
+menus = [
+    { name = "Home", url = "/", weight = 2 },
+    { name = "All posts", url = "/posts", weight = 2 },
+    { name = "About", url = "/about", weight = 3 },
+    { name = "Tags", url = "/tags", weight = 4 },
+]
+
+# config social icon info in the footer
+[[extra.social]]
+icon = "github"
+name = "GitHub"
+url = "https://github.com/XXXMrG/archie-zola"
+
+[[extra.social]]
+icon = "twitter"
+name = "Twitter"
+url = "https://github.com/your-name/"
+
+[[extra.social]]
+icon = "gitlab"
+name = "GitLab"
+url = "https://gitlab.com/your-name/"
+
+
+

Latex math formula support

+

This theme support latex math formula, by using KaTeX.

+

You can enable it by add katex_enable = true in the extra section of config.toml:

+
[extra]
+katex_enable = true
+
+

After that, you can use latex math formula in your markdown file:

+
$$
+{x: \mathbf{Num},\ y: \mathbf{Num} \over x + y : \mathbf{Num} }\ (\text{N-Add})
+$$
+
+

You can also use inline and block-style:

+
1. \\( \KaTeX \\) inline
+2. \\[ \KaTeX \\]
+3. $$ \KaTeX $$
+
+

Content config

+

In content/posts/_index.md. I use Zola config: transparent = true to implement the pagination

+

In Zola, you can use config in the _index.md to control pagination and sort post list:

+
paginate_by = 3
+sort_by = "date"
+
+[taxonomies]
+tags = ["FE", "Rust"]
+
+[extra]
+author = { name = "XXXMRG", social= "https://github.com/XXXMrG" }
+
+

Extension

+

Follow this doc to extend theme.

+

Contributing

+

Thank you very much for considering contributing to this project!

+

We appreciate any form of contribution:

+
    +
  • New issues (feature requests, bug reports, questions, ideas, ...)
  • +
  • Pull requests (documentation improvements, code improvements, new features, ...)
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/archie-zola/screenshot.png b/themes/archie-zola/screenshot.png new file mode 100644 index 000000000..32f187573 Binary files /dev/null and b/themes/archie-zola/screenshot.png differ diff --git a/themes/ataraxia-zola/index.html b/themes/ataraxia-zola/index.html new file mode 100644 index 000000000..e887ba44e --- /dev/null +++ b/themes/ataraxia-zola/index.html @@ -0,0 +1,121 @@ + + + + + + + + + ataraxia | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Ataraxia

+

Ataraxia preview

+

A personal theme for Zola focused on readability that aims to be simple, beautiful, and modern. It is designed to support multiple languages and be highly customizable.

+

The theme takes visual inspiration from the Chirpy and Neumorphism themes.

+

Installation

+

Open a command terminal at your site path and run:

+
cd themes
+
+
git clone https://github.com/gersonbenavides/ataraxia-zola.git ataraxia
+
+

Configuration

+

Copy the config_sample.toml file to your site's main path, then rename it to config.toml and edit it with your site data.

+
+

You can see the Gerson's website repository for theme setup guide.

+
+

For the site to work properly you need to create a _index.md file within the content path with the following structure:

+
+++
+title = "Home"
+description = "Home site description."
+sort_by = "date"
+template = "index.html"
+page_template = "page.html"
++++
+
+

You can add more markdown content inside this file if you need to.

+

If you want to enable the site's blog, create a _index.md file inside the content/blog path then copy the following structure inside the file:

+
+++
+title = "Blog"
+description = "Blog site description."
+sort_by = "date"
+paginate_by = 5
+template = "blog.html"
+page_template = "blog_page.html"
++++
+
+

You can display the result of your website by running:

+
zola serve
+
+

Hacking

+

By default, the theme comes with all the scss styles already compiled, in such a way that the installation of Bootstrap is not necessary, in order to avoid dependencies such as Node.js in the production file.

+

If you want to edit the theme's styles, you'll need to have a Node.js interpreter and a Sass compiler installed. After that, go to the main path of the theme and execute:

+
npm install
+
+
sass --watch scss/custom.scss:static/assets/css/custom.css
+
+
+

Keep in mind that the main branch of this repository only has the stable versions of the theme, if you want to see the development status and the unstable versions, change to the corresponding branch.

+
+

Credits

+

This theme is mainly built on Zola and Bootstrap, plus it makes use of Google fonts.

+

Sponsoring

+

Liberapay

+

PayPal

+

License

+

This work is published under the MPL-2.0 license

+ + +
+ +
+ + + + + + diff --git a/themes/ataraxia-zola/screenshot.png b/themes/ataraxia-zola/screenshot.png new file mode 100644 index 000000000..514f0af3a Binary files /dev/null and b/themes/ataraxia-zola/screenshot.png differ diff --git a/themes/bearblog/index.html b/themes/bearblog/index.html new file mode 100644 index 000000000..b1c2f6dfc --- /dev/null +++ b/themes/bearblog/index.html @@ -0,0 +1,139 @@ + + + + + + + + + Bear | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola ʕ•ᴥ•ʔ Bear Blog

+

Netlify Status

+

🧸 A Zola-theme based on Bear Blog.

+
+

Free, no-nonsense, super-fast blogging.

+
+

Demo

+

This theme has multiple demo sites, to provide examples of how to set up deployment

+ +

Screenshot

+

Screenshot

+

When the user's browser is running »dark mode«, the dark color scheme will be used automatically. The default is the light/white color scheme. Check out the style.html-file for the implementation.

+

Installation

+

If you already have a Zola site on your machine, you can simply add this theme via

+
git submodule add https://codeberg.org/alanpearce/zola-bearblog themes/zola-bearblog
+
+

Then, adjust the config.toml as detailed below.

+

For more information, read the official setup guide of Zola.

+

Alternatively, you can quickly deploy a copy of the theme site to Netlify using this button:

+

Deploy to Netlify

+

(Note that this method makes it harder to keep up-to-date with theme updates, which might be necessary for newer versions of Zola.)

+

Adjust configuration / config.toml

+

Please check out the included config.toml

+

Content & structure

+ +

Create an array in extra with a key of main_menu. url is passed to get_url

+
[[extra.main_menu]]
+name = "Home"
+url = "@/_index.md"
+
+[[extra.main_menu]]
+name = "Bear"
+url = "@/bear.md"
+
+[[extra.main_menu]]
+name = "Zola"
+url = "@/zola.md"
+
+[[extra.main_menu]]
+name = "Blog"
+url = "@/blog/_index.md"
+
+

Adding / editing content

+

Index-Page

+

The contents of the index-page may be changed by editing your content/_index.md-file.

+

Adding your branding / colors / css

+

Add a custom_head.html-file to your templates/-directory. In there you may add a <style>-tag, or you may add a <link>-tag referencing your own custom.css (in case you prefer to have a separate .css-file). Check out the style.html-file to find out which CSS-styles are applied by default.

+

Table of contents

+

Table of contents are not rendered by default. To render them, set extra.table_of_contents.show = true in config.toml.

+

The table of contents is rendered inside a details element. +If you want the section to be collapsed on page load, set extra.table_of_contents.visible_on_load = false. +This defaults to true.

+

In addition, extra.table_of_contents.max_level can limit the maximum level of headers to show. +To show only h1s, set max_level = 1, to show h1s and h2s, set max_level = 2, and so on. +By default, max_level is set to 6, so all headers on the page are shown.

+

Below is an example of how to configure the table of contents in config.toml.

+
[extra.table_of_contents]
+show = true
+max_level = 2
+visible_on_load = false
+
+

It can also be toggled on page-by-page basis. Add extra.hide_table_of_contents = true to the page's frontmatter to hide the table of contents for that specific page.

+

Issues / Feedback / Contributing

+

Please use Codeberg issues and Pull Requests.

+

Special Thanks 🎁

+

A special thank you goes out to Herman, for creating the original ʕ•ᴥ•ʔ Bear Blog and Jan Raasch for creating the hugo port of the Bear Blog theme.

+

License

+

MIT License © Alan Pearce

+ + +
+ +
+ + + + + + diff --git a/themes/bearblog/screenshot.png b/themes/bearblog/screenshot.png new file mode 100644 index 000000000..de55c842d Binary files /dev/null and b/themes/bearblog/screenshot.png differ diff --git a/themes/blow/index.html b/themes/blow/index.html new file mode 100644 index 000000000..599a251b2 --- /dev/null +++ b/themes/blow/index.html @@ -0,0 +1,216 @@ + + + + + + + + + Blow | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Blow

+

A Zola theme built with tailwindcss

+

(WIP) Example : Here

+

Preview

+

preview

+

Usage

+

You should follow the official documentation about installing a Zola theme.

+

I recommend adding the theme as a git submodule :

+
cd my-zola-website
+git submodule add -b main git@github.com:tchartron/blow.git themes/blow
+
+

Edit the theme used in your config.toml file

+
# The site theme to use.
+theme = "blow"
+
+

Then edit your config.toml file to override values from the theme :

+
[extra]
+enable_search = true
+enable_sidebar = true
+enable_adsense = true
+enable_multilingue = true
+adsense_link = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=myclientid"
+
+[extra.lang]
+items = [
+    { lang = "en", links = [
+        { base_url = "/", name = "English" },
+        { base_url = "/fr", name = "French" },
+    ] },
+    { lang = "fr", links = [
+        { base_url = "/", name = "Anglais" },
+        { base_url = "/fr", name = "Français" },
+    ] },
+]
+
+[extra.navbar]
+items = [
+    { lang = "en", links = [
+        { url = "/", name = "Home" },
+        { url = "/categories", name = "Categories" },
+        { url = "/tags", name = "Tags" },
+    ] },
+    { lang = "fr", links = [
+        { url = "/fr", name = "Accueil" },
+        { url = "/fr/categories", name = "Categories" },
+        { url = "/fr/tags", name = "Tags" },
+    ] },
+]
+title = "title"
+
+[extra.sidebar]
+items = [
+    { lang = "en", links = [
+        { url = "/markdown", name = "Markdown" },
+        { url = "/blog", name = "Blog" },
+    ] },
+    { lang = "fr", links = [
+        { url = "/fr/markdown", name = "Markdown" },
+        { url = "/fr/blog", name = "Blog" },
+    ] },
+]
+
+# Index page
+[extra.index]
+title = "Main title"
+image = "https://via.placeholder.com/200"
+image_alt = "Placeholder text describing the index's image."
+
+[extra.default_author]
+name = "John Doe"
+avatar = "https://via.placeholder.com/200"
+avatar_alt = "Placeholder text describing the default author's avatar."
+
+[extra.social]
+codeberg = "https://codeberg.org/johndoe"
+github = "https://github.com/johndoe"
+gitlab = "https://gitlab.com/johndoe"
+twitter = "https://twitter.com/johndoe"
+mastodon = "https://social.somewhere.com/users/johndoe"
+linkedin = "https://www.linkedin.com/in/john-doe-b1234567/"
+stackoverflow = "https://stackoverflow.com/users/01234567/johndoe" 
+telegram = "https://t.me/johndoe"
+email = "john.doe@gmail.com"
+
+[extra.favicon]
+favicon = "/icons/favicon.ico"
+favicon_16x16 = "/icons/favicon-16x16.png"
+favicon_32x32 = "/icons/favicon-32x32.png"
+apple_touch_icon = "/icons/apple-touch-icon.png"
+android_chrome_512 = "/icons/android-chrome-512x512.png"
+android_chrome_192 = "/icons/android-chrome-192x192.png"
+manifest = "/icons/site.webmanifest"
+
+

You can now run zola serve and visit : http://127.0.0.1:1111/ to see your site

+

Syntax Highlighting

+

Blow makes use of Zola code highlighting feature.
+It supports setting a different color scheme depending on the user selected theme (Dark / Light)
+In order to use it you should select the color scheme you want to use for light and dark themes in the list provided here and edit your config.toml file like this example :

+
highlight_theme = "css"
+
+highlight_themes_css = [
+  { theme = "ayu-dark", filename = "syntax-dark.css" },
+  { theme = "ayu-light", filename = "syntax-light.css" },
+]
+
+ +

To overwrite the default footer (copyright notice), extend the layout.html template of the theme as described in the Zola documentation by creating a layout.html with the following content in your templates directory:

+
{%/* extends "blow/templates/layout.html" */%}
+
+{%/* block content_footer */%}
+Here is my own footer with a <a href="http://example.com">link</a>.
+{%/* endblock */%}
+
+

Features

+
    +
  • +Dark/Light modes (with syntax highlighting depending on selected theme)
  • +
  • +Customizable navbar links
  • +
  • +Tags and Categories taxonomies
  • +
  • +Search functionality supporting Command + K shortcut
  • +
  • +Social links (github, gitlab, twitter, linkedin, email)
  • +
  • +Postcss build process with cssnano (and tailwindcss tree shaking to reduce final bundle size)
  • +
  • +Uglifyjs build process with minification
  • +
  • +Example script to deploy to Github Pages
  • +
  • +Pagination
  • +
  • +Sidemenu menu with sections links
  • +
  • +Table of content (2 levels and currently viewed part highlighted)
  • +
  • +Multilingue
  • +
  • +404
  • +
  • +Mobile responsive
  • +
  • +Favicon
  • +
  • +Adsense
  • +
+

Deployment

+

There is a section about deployment in Zola documentation but you'll find an example to deploy your site to github pages

+ + +
+ +
+ + + + + + diff --git a/themes/blow/screenshot.png b/themes/blow/screenshot.png new file mode 100644 index 000000000..0ac5fdc99 Binary files /dev/null and b/themes/blow/screenshot.png differ diff --git a/themes/book/index.html b/themes/book/index.html new file mode 100644 index 000000000..d7d33d58d --- /dev/null +++ b/themes/book/index.html @@ -0,0 +1,107 @@ + + + + + + + + + book | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

book

+

A theme based on Gitbook, to write documentation +or books.

+

book screenshot

+

Contents

+
    +
  • Installation
  • +
  • Options +
      +
    • Numbered chapters
    • +
    +
  • +
+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/getzola/book.git
+
+

and then enable it in your config.toml:

+
theme = "book"
+# Optional, if you want search
+build_search_index = true
+
+

Usage

+

Book will generate a book from the files you place in the content directory. Your book +can have two levels of hierarchy: chapters and subchapters.

+

Each chapter should be a section within the Gutenberg site and should have an _index.md +file that sets its weight front-matter variable to its chapter number. For example, +chapter 2 should have weight = 2. Additionally, each chapter should also set the +sort_by = "weight" in its front matter.

+

Each subchapter should be a page and should have its weight variable set to the subchapter +number. For example, subchapter 3.4 should have weight = 4.

+

Finally, you should create an _index.md file and set the redirect_to front-matter variable +to redirect to the first section of your content. For example, if your first section has the +slug introduction, then you would set redirect_to = "introduction".

+

Options

+

Numbered chapters

+

By default, the book theme will number the chapters and pages in the left menu. +You can disable that by setting the book_number_chapters in extra:

+
book_number_chapters = false
+
+ + +
+ +
+ + + + + + diff --git a/themes/book/screenshot.png b/themes/book/screenshot.png new file mode 100644 index 000000000..d4dfd0784 Binary files /dev/null and b/themes/book/screenshot.png differ diff --git a/themes/boring/index.html b/themes/boring/index.html new file mode 100644 index 000000000..6226a2fa6 --- /dev/null +++ b/themes/boring/index.html @@ -0,0 +1,96 @@ + + + + + + + + + boring | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Boring

+

Minimal theme for Zola, powered by +TailwindCSS

+

Demo

+

https://boring-zola.netlify.app/

+

sreenshot

+

Setup

+

In your zola site directory

+
    +
  • +

    Get theme

    +
    git submodule add https://github.com/ssiyad/boring themes/boring
    +
    +
  • +
  • +

    Build CSS

    +
    cd themes/boring
    +yarn install --frozen-lockfile
    +yarn build
    +
    +
  • +
  • +

    Change theme specific variables. They are listed in extra section of +config.toml

    +
  • +
+

Refer Zola Docs +for further instructions

+

License

+

GPLv3

+ + +
+ +
+ + + + + + diff --git a/themes/boring/screenshot.png b/themes/boring/screenshot.png new file mode 100644 index 000000000..320341fe6 Binary files /dev/null and b/themes/boring/screenshot.png differ diff --git a/themes/clean-blog/index.html b/themes/clean-blog/index.html new file mode 100644 index 000000000..93cfa11b8 --- /dev/null +++ b/themes/clean-blog/index.html @@ -0,0 +1,120 @@ + + + + + + + + + Clean Blog | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

zola-clean-blog

+

screenshot

+

A port of the StartBootstrap Clean Blog theme, for Zola.

+

Demo

+

Live Demo

+

Usage

+

To use the theme, clone this repository to your themes directory. +It requires that you use the categories and tags taxonomies. +This can be done with the following additions to config.toml:

+
theme = "zola-clean-blog"
+
+taxonomies = [
+    {name = "categories", rss = true, paginate_by=5},
+    {name = "tags", rss = true, paginate_by=5},
+]
+
+

Features

+
    +
  • Paginated Home/Categories/Tag Pages
  • +
  • Customizable Menu
  • +
  • Customizable Social Links
  • +
+

How To Customize

+
    +
  • +

    To replace header images, add a new image to static/img/$page-bg.jpg where $page is one of about, home, post or contact.

    +
  • +
  • +

    To replace the copyright field, create your own templates/index.html to extend the template and add a copyright block:

    +
  • +
+
{%/* extends "zola-clean-blog/templates/index.html" */%}
+{%/* block copyright */%}
+Copyright %copy; Example, Inc. 2016-2019
+{%/* endblock copyright */%}
+
+
    +
  • +

    To add a new menu item, override clean_blog_menu in your config.toml. You can use $BASE_URL to reference your own site.

    +
  • +
  • +

    To add a new social link, override clean_blog_social in your config.toml. You can use $BASE_URL to reference your own site.

    +
  • +
  • +

    To add Google Analytics, you may add your script to the extrascripts block using your own index.html

    +
  • +
+
{%/* extends "zola-clean-blog/templates/index.html" */%}
+{%/* block analytics */%}
+<script>
+...
+</script>
+{%/* endblock analytics */%}
+
+ + +
+ +
+ + + + + + diff --git a/themes/clean-blog/screenshot.png b/themes/clean-blog/screenshot.png new file mode 100644 index 000000000..394d23eac Binary files /dev/null and b/themes/clean-blog/screenshot.png differ diff --git a/themes/codinfox-zola/index.html b/themes/codinfox-zola/index.html new file mode 100644 index 000000000..b6355904c --- /dev/null +++ b/themes/codinfox-zola/index.html @@ -0,0 +1,119 @@ + + + + + + + + + codinfox-zola | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Codinfox-Zola

+

Zola Deploy to Github Pages on push

+

This is a Zola theme inspired to Codinfox-Lanyon, a Lanyon based theme for Jekyll. See a live demo here.

+

This theme places content first by tucking away navigation in a hidden drawer.

+ +

This theme supports:

+
    +
  1. Theme colors: you can choose your favorite theme color (changing in _config.scss)
  2. +
  3. Changable sidebar locations (reverse it by changing the boolean value in _config.scss)
  4. +
  5. Integration of FontAwesome, MathJax, Disqus and Google Analytics
  6. +
  7. Support for multilingual sites
  8. +
  9. Support for Gravatar
  10. +
  11. and numerous improvements over original Lanyon and Codinfox-Lanyon
  12. +
+

All the configuration variables and their meaning are inside:

+
    +
  • config.toml (for the zola config variables and some extra variables required by this theme),
  • +
  • author.toml (for the personal informations to be displayed about the author of the site),
  • +
  • nav.toml (for the navigation menu structure available in the site's sidebar)
  • +
  • _config.scss (for the definition of some css customizations)
  • +
+

The options are fairly straightforward and described in comments.

+

Learn more and contribute on GitHub.

+

Have questions or suggestions? Feel free to open an issue on GitHub or ask me on Twitter.

+

Before you start

+

Get a gravatar account and set this up with a profile image.

+

Add gravatar profile image to codinfox-zola theme

+
    +
  1. login to gravatar.com
  2. +
  3. click My Profile
  4. +
  5. click view profile in RH sidebar beneath profile name
  6. +
  7. click JSON
  8. +
  9. copy the hash value on line 4
  10. +
  11. paste the hash value to author.toml line 10
  12. +
+

Install and use

+

To use this theme you can follow the instruction required by any Zola theme.

+

Simply clone this repository under the themes folder of your site's main folder.

+

Then, define the required extra variables in the config.toml (take it from the config.toml file of the theme), create and define the author.toml and nav.toml configuration files in the main folder of your site (the same level of the config.toml), and that's it!

+

To define your own home picture, put an image file in the static/img/ folder and set the path in the config.extra.image variable.

+

Now is possible to create the content inside the content folder as usual for Zola sites.

+

If you want to have a Blog with this theme, then create a folder inside the content folder containing all the blog posts in Markdown format. Zola automatically generate a section that you can manage as a blog. See an example in the live demo.

+

License

+

Open sourced under the MIT license.

+

TODO

+
    +
  • recaptcha for hiding email address link (https://developers.google.com/recaptcha/intro)
  • +
  • hidden multilingual links in topbar for main index section pages
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/codinfox-zola/screenshot.png b/themes/codinfox-zola/screenshot.png new file mode 100644 index 000000000..135ba71a7 Binary files /dev/null and b/themes/codinfox-zola/screenshot.png differ diff --git a/themes/d3c3nt/index.html b/themes/d3c3nt/index.html new file mode 100644 index 000000000..792fa7c53 --- /dev/null +++ b/themes/d3c3nt/index.html @@ -0,0 +1,88 @@ + + + + + + + + + d3c3nt | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

d3c3nt

+

d3c3nt is a simple, clean, and flexible theme for personal sites, made +by FIGBERT for the Zola static site engine. This theme is +developed mainly for use on my personal site, so new features and styles +will be added when I stumble onto the need to make them.

+

All in all, it's fairly... decent.

+

installation

+

To use d3c3nt in your own site, you have to add it to your themes +directory. You can do this in a variety of ways, but I recommend adding +it as a git submodule:

+
$ cd themes/
+$ git submodule add git://git.figbert.com/d3c3nt.git
+
+

After installing the theme, set the top-level theme variable to +"d3c3nt" in your config.toml.

+

For more information about Zola themes in general, check out Zola's +official site. To find out more about d3c3nt's features and +configuration, head over to the project's docs.

+

whoami

+

To learn more about me, feel free to check out my website and +subscribe via the Atom feed. You can contact me via email at: +figbert+d3c3nt@figbert.com.

+ + +
+ +
+ + + + + + diff --git a/themes/d3c3nt/screenshot.png b/themes/d3c3nt/screenshot.png new file mode 100644 index 000000000..28ee279d2 Binary files /dev/null and b/themes/d3c3nt/screenshot.png differ diff --git a/themes/deepthought/index.html b/themes/deepthought/index.html new file mode 100644 index 000000000..a86f9ec88 --- /dev/null +++ b/themes/deepthought/index.html @@ -0,0 +1,362 @@ + + + + + + + + + DeepThought | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+
+logo +

DeepThought

+

+ A simple blog theme focused on writing powered by Bulma and Zola. +

+ +

+ + contributors + + + last update + + + forks + + + stars + + + open issues + + + license + +

+

+ View Demo + · + Documentation + · + Report Bug + · + Request Feature +

+
+
+ +

:notebook_with_decorative_cover: Table of Contents

+
    +
  • :notebook_with_decorative_cover: Table of Contents +
      +
    • :star2: About the Project +
        +
      • :camera: Screenshots
      • +
      • :space_invader: Tech Stack
      • +
      • :dart: Features
      • +
      +
    • +
    • :toolbox: Getting Started +
        +
      • :bangbang: Prerequisites
      • +
      • :gear: Installation
      • +
      • :running: Run Locally
      • +
      • :triangular_flag_on_post: Deployment
      • +
      +
    • +
    • :eyes: Usage +
        +
      • Multilingual Navbar
      • +
      • KaTeX math formula support +
          +
        • Automatic rendering without short codes
        • +
        +
      • +
      • Elasticlunr search in other language
      • +
      +
    • +
    • :wave: Contributing
    • +
    • :warning: License
    • +
    • :handshake: Contact
    • +
    • :gem: Acknowledgements
    • +
    +
  • +
+ +

:star2: About the Project

+ +

:camera: Screenshots

+
+ screenshot +
+ +

:space_invader: Tech Stack

+
    +
  • Zola - Your one-stop static site engine
  • +
  • Bulma - The modern CSS framework that just works.
  • +
+ +

:dart: Features

+
    +
  • +Dark Mode
  • +
  • +Pagination
  • +
  • +Search
  • +
  • +Charts
  • +
  • +Maps
  • +
  • +Diagrams
  • +
  • +Galleria
  • +
  • +Analytics
  • +
  • +Comments
  • +
  • +Categories
  • +
  • +Social Links
  • +
  • +Multilingual Navbar
  • +
  • +Katex
  • +
+ +

:toolbox: Getting Started

+ +

:bangbang: Prerequisites

+

You need static site generator (SSG) Zola installed in your machine to use this theme follow their guide on getting started.

+ +

:gear: Installation

+

Follow zola's guide on installing a theme. +Make sure to add theme = "DeepThought" to your config.toml

+

Check zola version (only 0.9.0+) +Just to double-check to make sure you have the right version. It is not supported to use this theme with a version under 0.14.1.

+ +

:running: Run Locally

+

Go into your sites directory and type zola serve. You should see your new site at localhost:1111.

+

NOTE: you must provide the theme options variables in config.toml to serve a functioning site

+ +

:triangular_flag_on_post: Deployment

+

Zola already has great documentation for deploying to Netlify or Github Pages. I won't bore you with a regurgitated explanation.

+ +

:eyes: Usage

+

Following options are available with the DeepThought theme

+
# Enable external libraries
+[extra]
+katex.enabled = true
+katex.auto_render = true
+
+chart.enabled = true
+mermaid.enabled = true
+galleria.enabled = true
+
+navbar_items = [
+ { code = "en", nav_items = [
+  { url = "$BASE_URL/", name = "Home" },
+  { url = "$BASE_URL/posts", name = "Posts" },
+  { url = "$BASE_URL/docs", name = "Docs" },
+  { url = "$BASE_URL/tags", name = "Tags" },
+  { url = "$BASE_URL/categories", name = "Categories" },
+ ]},
+]
+
+# Add links to favicon, you can use https://realfavicongenerator.net/ to generate favicon for your site
+[extra.favicon]
+favicon_16x16 = "/icons/favicon-16x16.png"
+favicon_32x32 = "/icons/favicon-32x32.png"
+apple_touch_icon = "/icons/apple-touch-icon.png"
+safari_pinned_tab = "/icons/safari-pinned-tab.svg"
+webmanifest = "/icons/site.webmanifest"
+
+# Author details
+[extra.author]
+name = "DeepThought"
+avatar = "/images/avatar.png"
+
+# Social links
+[extra.social]
+email = "<email_id>"
+facebook = "<facebook_username>"
+github = "<github_username>"
+gitlab = "<gitlab_username>"
+keybase = "<keybase_username>"
+linkedin = "<linkedin_username>"
+stackoverflow = "<stackoverflow_userid>"
+twitter = "<twitter_username>"
+instagram = "<instagram_username>"
+behance = "<behance_username>"
+google_scholar = "<googlescholar_userid>"
+orcid = "<orcid_userid>"
+mastodon_username = "<mastadon_username>"
+mastodon_server = "<mastodon_server>" (if not set, defaults to mastodon.social)
+
+
+# To add google analytics
+[extra.analytics]
+google = "<your_gtag>"
+
+# To add disqus comments
+[extra.commenting]
+disqus = "<your_disqus_shortname>"
+
+# To enable mapbox maps
+[extra.mapbox]
+enabled = true
+access_token = "<your_access_token>"
+
+

Multilingual Navbar

+

If you want to have a multilingual navbar on your blog, you must add your new code language in the languages array in the config.toml file.

+

NOTE: Don't add you default language to this array

+
languages = [
+    {code = "fr"},
+    {code = "es"},
+]
+
+

And then create and array of nav item for each language:

+

NOTE: Include your default language in this array

+
navbar_items = [
+ { code = "en", nav_items = [
+  { url = "$BASE_URL/", name = "Home" },
+  { url = "$BASE_URL/posts", name = "Posts" },
+  { url = "$BASE_URL/docs", name = "Docs" },
+  { url = "$BASE_URL/tags", name = "Tags" },
+  { url = "$BASE_URL/categories", name = "Categories" },
+ ]},
+ { code = "fr", nav_items = [
+  { url = "$BASE_URL/", name = "Connexion" },
+ ]},
+ { code = "es", nav_items = [
+  { url = "$BASE_URL/", name = "Publicationes" },
+  { url = "$BASE_URL/", name = "Registrar" },
+ ]}
+]
+
+

en:

+

DeepThought

+

fr:

+

DeepThought

+

es:

+

DeepThought

+

KaTeX math formula support

+

This theme contains math formula support using KaTeX, +which can be enabled by setting katex.enabled = true in the extra section +of config.toml.

+

After enabling this extension, the katex short code can be used in documents:

+
    +
  • {{ katex(body="\KaTeX") }} to typeset a math formula inlined into a text, +similar to $...$ in LaTeX
  • +
  • {% katex(block=true) %}\KaTeX{% end %} to typeset a block of math formulas, +similar to $$...$$ in LaTeX
  • +
+

Automatic rendering without short codes

+

Optionally, \\( \KaTeX \\) / $ \KaTeX $ inline and \\[ \KaTeX \\] / $$ \KaTeX $$ +block-style automatic rendering is also supported, if enabled in the config +by setting katex.auto_render = true.

+

Elasticlunr search in other language

+

Zola use Elasticlunr.js to add full-text search feature. +To use languages other than en (English), you need to add some javascript files. See the Zola's issue #1349. +By placing the templates/base.htmlon your project and using the other_lang_search_js block, you can load the required additional javascript files in the right timing.

+

e.g. templates/base.html

+
{%/* extends "DeepThought/templates/base.html" */%} {%/* block other_lang_search_js */%}
+<script src="{{ get_url(path='js/lunr.stemmer.support.js') }}"></script>
+<script src="{{ get_url(path='js/tinyseg.js') }}"></script>
+<script src="{{/* get_url(path='js/lunr.' ~ lang ~ '.js') */}}"></script>
+<script src="{{ get_url(path='js/search.js') }}"></script>
+{%/* endblock */%}
+
+

More detailed explanations are aound in elasticlunr's documents.

+ +

:wave: Contributing

+ + + +

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

+
    +
  • Fork the Project
  • +
  • Create your Feature Branch (git checkout -b feature/AmazingFeature)
  • +
  • Commit your Changes (git commit -m 'Add some AmazingFeature')
  • +
  • Push to the Branch (git push origin feature/AmazingFeature)
  • +
  • Open a Pull Request
  • +
+ +

:warning: License

+

Distributed under the MIT License. See LICENSE for more information.

+ +

:handshake: Contact

+

Ratan Kulshreshtha - @RatanShreshtha - ratan.shreshtha[at]gmail.com

+

Project Link: https://github.com/RatanShreshtha/DeepThought

+ +

:gem: Acknowledgements

+

Use this section to mention useful resources and libraries that you have used in your projects.

+ + + +
+ +
+ + + + + + diff --git a/themes/deepthought/screenshot.png b/themes/deepthought/screenshot.png new file mode 100644 index 000000000..420203eae Binary files /dev/null and b/themes/deepthought/screenshot.png differ diff --git a/themes/dinkleberg/index.html b/themes/dinkleberg/index.html new file mode 100644 index 000000000..b49f8396f --- /dev/null +++ b/themes/dinkleberg/index.html @@ -0,0 +1,119 @@ + + + + + + + + + dinkleberg | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

753986_1

+

Rust BR Blog template for Gutenberg

+

Features

+
    +
  • A kind of i18n for base words as: "Next", "Previous", "Pages", "Categories"
  • +
  • Blog Title and Logo on extra configurations
  • +
  • Auto-sidebar links by configuration
  • +
  • Simple design based on Medium
  • +
  • SEO using structured data and another features
  • +
+

Configurations

+
[extra]
+blog_logo="/imgs/common/logo.png" #will appear on top header
+blog_title="rust::br::Blog" #will appear on top header after logo
+
+## i18n words
+label_tags = "Tags"
+label_tag = "Tag"
+label_categories = "Categorias"
+label_category = "Categoria"
+label_relative_posts = "Postagens Relacionadas"
+label_next = "Próxima"
+label_previous = "Anterior"
+label_page = "Página"
+label_of = "de"
+label_minutes = "minutos"
+
+og_image="" # Image that will appear on social media
+og_alt_image="" # Alt for og_image
+og_site_name="" # Site Name for Open Graphic
+keywords="" # Keywords for SEO
+
+educational_use="knowledge share" # OPTIONAL
+copyright_year="2018" # OPTIONAL
+
+fb_app_id="???" # OPTIONAL, Facebook App Id to help in metrics
+twitter_username="@???" # OPTIONAL, Twitter User to help with metrics
+
+## Sidebar automatic links
+sidebar = [
+    {name = "Social", urls=[
+        {name="Telegram", url="https://t.me/rustlangbr"},
+        {name="Github", url="https://github.com/rust-br"},
+    ]},
+    {name = "Divida Conhecimento!", urls=[
+        {name="Contribuir!", url="https://rust-br.github.io/blog/hello-world"}
+    ]}
+]
+
+
+

This configuration was the same configuration that we use on RustBR Blog

+

Favicons and other stuff

+

By default Dinkleberg wait that you have all icons on root of your static, for it you can use the site https://www.favicon-generator.org/ to generate that bundle and put it inside you /static :D

+ + +
+ +
+ + + + + + diff --git a/themes/dinkleberg/screenshot.png b/themes/dinkleberg/screenshot.png new file mode 100644 index 000000000..c19e68e2c Binary files /dev/null and b/themes/dinkleberg/screenshot.png differ diff --git a/themes/docsascode-theme/index.html b/themes/docsascode-theme/index.html new file mode 100644 index 000000000..15bbe862f --- /dev/null +++ b/themes/docsascode-theme/index.html @@ -0,0 +1,145 @@ + + + + + + + + + Docsascode_theme | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Demo: docsascode.codeandmedia.com

+

I was inspired by Linode's approach to creating and managing docs. They call it docs as code methodology. Thereby my aim was making simple and productive way to work with any sort of documents and articles through Markdown, Git and Docker/k8s optionally.

+

The repo contains a theme for Zola (the best static site generator I've ever seen) and dockerfile for building Docker images with Nginx-alpine. You can pull to your Docker an image with demo-content

+
codeandmedia/docsascode-theme:latest
+
+

If you would use Docker on MacBook M1 processors \ Raspberry Pi4 64bit \ Amazon Graviton or another ARM64 - just fork the ARM64 branch or push

+
codeandmedia/docsascode-theme-arm64:latest
+
+

Perks

+
    +
  • light / dark switcher
  • +
  • tags and authors taxonomies by default
  • +
  • search
  • +
  • useful UI both on mobiles and desktops
  • +
+

6 steps build your knowledge base/docs repo

+
    +
  1. Fork the repo
  2. +
  3. delete demo content and add your own (I explain how to structure it below)
  4. +
  5. change website name and domain in config.toml, also, change the title in _index.md in a root
  6. +
  7. connect your repo to dockerhub
  8. +
  9. build your docker image or setup autobuilds
  10. +
  11. host a builded docker image on your own way
  12. +
+

But, zola is amazing static site generator, so you feel free to

+
    +
  1. download all repo files
  2. +
  3. again delete demo content and add your own
  4. +
  5. change name and domain in config.toml/index.md
  6. +
  7. setup zola (win, linux, mac)
  8. +
  9. execute zola build
  10. +
  11. host builded html-output anywhere you want
  12. +
+

Zola supports Netlify and other similar services, or you can decide to create your own CI/CD process.

+

How to structure your content

+

All your articles should be inside content folder. Any images, videos, other static files should be inside static.

+

Folders

+

Every folder should contains _index.md like

+
+++
+title = "Docsascode title"
+description = "Description is optional"
+sort_by = "date" # sort by weight or date
+insert_anchor_links = "right" # if you want § next to headers
++++
+
+

Each folder is the section of the website, it means if you create folder foo it will be seen as yoursitedomain.com/foo

+

The theme supports folders in folders and articles + folders in one folder (see an example inside content). So you can store inside folder another folders and describe in index some specific details.

+

Pages

+

A page should be started by

+
+++
+title = "File and folders in folder"
+date = 2020-01-18 # or weight 
+description = "Description"
+insert_anchor_links = "right"
+
+[taxonomies] #all taxonomies is optional
+tags = ["newtag"]
+authors = ["John Doe"]
++++
+
+

Zola allows to create drafts:

+
draft = true
+
+

Also, by default you have two taxonomies: tags and authors. It's optional, not necessary to use it on all pages. And you can add your own taxonomy:

+
    +
  1. Copy tags or authors folder and rename it to your taxonomy
  2. +
  3. Add your taxonomy to config.toml
  4. +
  5. Add to page.html template code like
  6. +
+
    {%/* if page.taxonomies.yourtaxonomynameplural */%}
+      <ul>
+      {%/* for tag in page.taxonomies.yourtaxonomynameplural */%}
+        <li><a href="{{/* get_taxonomy_url(kind="yourtaxonomynameplural", name=yourtaxonomyname) | safe */}}" >{{/* yourtaxonomyname */}}</a></li>
+      {%/* endfor */%}
+      </ul>
+    {%/* endif */%}
+
+

Done. I told you Zola is amazing :)

+

Anyway you can rewrite theme for your own wishes with Zola (link to documentation)

+ + +
+ +
+ + + + + + diff --git a/themes/docsascode-theme/screenshot.png b/themes/docsascode-theme/screenshot.png new file mode 100644 index 000000000..2c27e8ef4 Binary files /dev/null and b/themes/docsascode-theme/screenshot.png differ diff --git a/themes/dose/index.html b/themes/dose/index.html new file mode 100644 index 000000000..8687ccdd6 --- /dev/null +++ b/themes/dose/index.html @@ -0,0 +1,139 @@ + + + + + + + + + dose | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

dose

+

+

Installation

+

First install the theme into the themes directory with one of these options:

+
# If you work with git: 
+git submodule add https://github.com/oltdaniel/dose.git themes/dose
+# or just do a download:
+git clone https://github.com/oltdaniel/dose.git themes/dose
+
+

and then enable it in your config.toml:

+
theme = "dose"
+
+

You can enable the following taxonomies:

+
taxonomies = [
+    { name = "tags", feed = true },
+]
+
+

And the theme uses the following extras:

+
[extra]
+social_media = [
+    { name = "GitHub", url = "https://github.com/oltdaniel" },
+    { name = "Twitter", url = "https://twitter.com/@twitter" },
+    { name = "Mastodon", url = "https://mastodon.social/@Mastodon", rel = "me" }
+]
+default_theme = "dark" # or "light"
+
+

The description of yourself with your image, you can modify by using a template. Just create a new +file myblog/templates/parts/me.html:

+
<img src="https://via.placeholder.com/50" height="50px" width="50px">
+<p>Hi, this is me. I write about microcontrollers, programming and cloud software. ...</p>
+
+

If you want to have all pages sorted by their date, please create myblog/content/_index.md:

+
+++
+sort_by = "date"
++++
+
+

About

+

Inspired

+

I created this theme mainly for my personal website. You are free to use it or modify it. It is inspired by the no-style-please jekyll theme.

+

Typography

+

This theme uses no special font, just the browsers default monospace font. Yes, this can mean that the website could be rendered differently, but users can freely choose their webfont.

+

Darkmode

+

This theme supports dark and light mode. Currently this will be only switched based on the users preffered system theme. But a manual switch will follow in the future in the footer (see the todo).

+ + +
lightdark
+

Size

+

The JavaScript has been moved into the page itself to allow minification. Together this results in the following sizes for the index.html:

+
    +
  • ~ 3kB JavaScript
  • +
  • ~ 3kB CSS
  • +
  • ~ 17kB Profile Image
  • +
  • ~5kB - ~3kB = ~2kB HTML
  • +
+

Which results in a total loading size of 3kB + 3kB + 17kB + 2kB = 25kB.

+

Syntax Highlighting

+

As I didn't want to invest any time in creating an own syntax color schema for this theme, I suggest to use visual-studio-dark, which is the same one used in the demo page.

+

Customization

+

You can create your own version of this theme, by simply changing the sass variables in sass/style.scss to match your taste.

+
/**
+ * Variables
+ */
+$base-background: white;
+$text-color: black;
+$article-tag: green;
+$lang-tag: red;
+$link-color: blue;
+$target-color: yellow;
+$separator-decoration: "//////";
+
+

License & Contributors

+

GitHub

+

This project was created by Daniel Oltmanns and has been imporved by these contributors.

+ + +
+ +
+ + + + + + diff --git a/themes/dose/screenshot.png b/themes/dose/screenshot.png new file mode 100644 index 000000000..fe751f844 Binary files /dev/null and b/themes/dose/screenshot.png differ diff --git a/themes/duckquill/index.html b/themes/duckquill/index.html new file mode 100644 index 000000000..d9256bc63 --- /dev/null +++ b/themes/duckquill/index.html @@ -0,0 +1,97 @@ + + + + + + + + + Duckquill | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Please don't upload to GitHub +MIT license +status-badge

+

Duckquill Logo

+

Duckquill is a modern, pretty, and clean (and opinionated) Zola theme that has the purpose of greatly simplifying the process of rolling up your blog. It aims to provide all the needed options for comfortable writing, keeping the balance of it being simple.

+

Screenshot

+

Docs

+

Docs are provided in form of a live demo.

+

Know your rights

+

This website is under the MIT license:

+
    +
  • Freedom to Use: You have the right to use the software for any purpose, whether it's personal, academic, or commercial.
  • +
  • Freedom to Modify: You can modify the source code of the software to suit your needs or preferences.
  • +
  • Freedom to Distribute: You have the right to distribute the software, whether in its original form or modified, to others.
  • +
  • Collaboration: You can collaborate with others on the software's development and improvement.
  • +
  • No License Compatibility Issues: You can combine the MIT-licensed software with other software, even if they use different licenses.
  • +
  • No Usage Restrictions: There are no restrictions on the technologies or fields of use, giving you maximum flexibility.
  • +
  • No Royalties: You are not required to pay any royalties or fees for using, modifying, or distributing the software.
  • +
+

Contributing guidelines

+

There are several ways to contribute to this project:

+
    +
  • Reporting issues
  • +
  • Discussing potential improvements
  • +
  • Contributing code
  • +
  • Writing documentation
  • +
  • Submitting feature requests
  • +
  • Providing feedback
  • +
+

When making any sort of contribution, please make sure to follow Forgejo's Code of Conduct. If you don't have the time to read it, just know that all you have to do is be nice, and you'll be just fine.

+

</> with <3 by daudix | README based on libreivan's

+ + +
+ +
+ + + + + + diff --git a/themes/duckquill/screenshot.png b/themes/duckquill/screenshot.png new file mode 100644 index 000000000..02105a8bd Binary files /dev/null and b/themes/duckquill/screenshot.png differ diff --git a/themes/emily/index.html b/themes/emily/index.html new file mode 100644 index 000000000..9134c11a4 --- /dev/null +++ b/themes/emily/index.html @@ -0,0 +1,100 @@ + + + + + + + + + emily_zola_theme | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

emily_zola_theme

+

screenshot01

+

A KISS theme for Zola (static site generator written in Rust).

+

Features:

+
    +
  • simple & clean
  • +
  • mobile-friendly
  • +
  • MathJax support
  • +
+

Demo site is here.

+

Usage

+
cd YOUR_SITE_DIRECTORY/themes
+git clone https://github.com/kyoheiu/emily_zola_theme.git
+
+

and set the theme-name in config.toml to emily_zola_theme.

+
theme = "emily_zola_theme"
+
+

example articles

+

In YOUR_SITE_DIRECTORY/themes/emily_zola_theme/content.

+

MathJax support

+

To use MathJax, add the following lines to the front matter in .md file. [extra] is mandatory:

+
[extra]
+math = true
+
+

How to customize

+

In addition to default values, you can customize following parts easily:

+
    +
  • author name (appears in footer)
  • +
  • header icon (appears in header)
  • +
  • favicon
  • +
  • header icon size (default width: 70px)
  • +
  • number of posts in index.html (default 5)
  • +
+

Set your own in themes/emily_zola_theme/theme.toml, or to overwrite, copy [extra] block, paste it into your config.toml and edit.

+ + +
+ +
+ + + + + + diff --git a/themes/emily/screenshot.png b/themes/emily/screenshot.png new file mode 100644 index 000000000..68731b847 Binary files /dev/null and b/themes/emily/screenshot.png differ diff --git a/themes/ergo/index.html b/themes/ergo/index.html new file mode 100644 index 000000000..46a1020a3 --- /dev/null +++ b/themes/ergo/index.html @@ -0,0 +1,173 @@ + + + + + + + + + Ergo | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

ergo LIVE DEMO

+

Ergo Screenshot

+

A light, simple & beautiful Zola theme made with a focus on writing. Inspired by sbvtle and Pixyll.

+

Like both those web designs, Ergo is a theme that emphasizes content, but still tries to be stylish. Frankly, the design is +most like sbvtle (http://sbvtle.com) but without the clever svbtle Engine, Javascript, community or kudos button (kudos is on the list of additions, though! But then i'll have to use JS...) +If you find that you like all those things, please check out svbtle; this theme is meant as a lighter (free) alternative, +and ergo's design will most likely diverge more in the future as this theme evolves with me and it's users (if there are any). +This is not meant as a svbtle clone.

+

Here's a timelapse: +Ergo Creation Timelapse

+

Installation

+

Get Zola and/or follow their guide on installing a theme. +Make sure to add theme = "ergo" to your config.toml

+

Ergo relies on having paginate_by variable set in content/_index.md.

+

Check zola version (only 0.11.0+)

+

Just to double-check to make sure you have the right version. It is not supported to use this theme with a version under 0.11.0.

+

how to serve

+

go into your sites directory, and type zola serve. You should see your new site at localhost:1111.

+

Deployment to Github Pages or Netlify

+

Zola already has great documentation for deploying to Netlify or Github Pages. I won't bore you with a regurgitated explanation.

+

Customizing the Theme

+

All colors used on the site are from sass/colors.scss. There's only about 5-6 colors total. +Change them however you like! Feel free to go into theme and edit the colors. However, editing anything other than sass/colors.scss is strongly advised against. Continue at your own peril!

+

Theme Options

+
# Specify a profile picture to use for the logos in the theme. It can be svg, png, jpg, whatever, just make sure to copy the logo you want and put it in img/${YOUR_PROFILE}.*
+# and update your config.toml accordingly
+profile = 'profile.svg'
+
+# Description. This is needed for SEO/site metadata purposes
+description = "Simple blog theme focused on writing, inspired by svbtle"
+
+# Color themes used by the theme (theme will use ${color_theme}.css file, generated by SASS or SCSS file with the same name). Defaults to ["default"]. User can choose either of them, default theme is the first in list.
+color_themes = ["my-awesome-theme", "default"]
+
+[[extra.socials]] # website
+icon = "globe"
+icon_class = "fas"
+display = "code.liquidthink.net"
+uri = "https://code.liquidthink.net"
+
+[[extra.socials]] # github
+icon = "github"
+display = "Insipx"
+uri = "https://github.com/Insipx"
+
+[[extra.socials]] # twitter
+icon = "twitter"
+display = "@liquid_think"
+uri = "https://twitter.com/liquid_think"
+
+[[extra.socials]] # email
+icon = "envelope"
+icon_class = "fas"
+display = "say hello"
+uri = "mailto:${MY_EMAIL}@cool_domain.com?subject=hi"
+
+[[extra.socials]]
+icon = "instagram"
+display = "${your_insta}"
+uri = "https://instagram.com/${your_insta}"
+
+[[extra.socials]]
+icon = "keybase"
+display = "${your_keybase}"
+uri = "https://keybase.io/${your_keybase}"
+
+[[extra.socials]]
+icon = "linkedin"
+display = "${your_linkedin}"
+uri = "https://www.linkedin.com/in/${your_linkedin}"
+
+[[extra.socials]]
+icon = "reddit"
+display = "${your_reddit}"
+uri = "https://www.reddit.com/u/${your_reddit}"
+
+[[extra.socials]]
+icon = "youtube"
+display = "${your_youtube_channel_id}"
+uri = "https://youtube.com/channel/${your_youtube_channel_id}"
+
+# Whether to use country flags or language code
+country_flags = true
+
+

Features

+
    +
  • +Pagination
  • +
  • +Dynamic Color Schemes
  • +
  • +Edit Colors in config.toml
  • +
  • +NoJS
  • +
  • +Analytics
  • +
  • +Comments?
  • +
  • +Like button http://kudosplease.com/
  • +
  • +categories?
  • +
  • +related posts? (would meaningful related posts, or unmeaningful ones, be worth it w/o database?)
  • +
  • +user-requested: Open a Issue, or, if you're feeling up to it, a Pull Request
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/ergo/screenshot.png b/themes/ergo/screenshot.png new file mode 100644 index 000000000..6b1d959f8 Binary files /dev/null and b/themes/ergo/screenshot.png differ diff --git a/themes/even/index.html b/themes/even/index.html new file mode 100644 index 000000000..8ec3fb38c --- /dev/null +++ b/themes/even/index.html @@ -0,0 +1,140 @@ + + + + + + + + + even | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Even

+

Even is a clean, responsive theme based on the Hugo theme with the same name featuring categories, tags and pagination.

+

even screenshot

+

Contents

+
    +
  • Installation
  • +
  • Options +
      +
    • Top menu
    • +
    • Title
    • +
    +
  • +
+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://github.com/getzola/even.git
+
+

and then enable it in your config.toml:

+
theme = "even"
+
+

The theme requires tags and categories taxonomies to be enabled in your config.toml:

+
taxonomies = [
+    # You can enable/disable RSS
+    {name = "categories", feed = true},
+    {name = "tags", feed = true},
+]
+
+

If you want to paginate taxonomies pages, you will need to overwrite the templates +as it only works for non-paginated taxonomies by default.

+

It also requires to put the posts in the root of the content folder and to enable pagination, for example in content/_index.md:

+
+++
+paginate_by = 5
+sort_by = "date"
++++
+
+

Options

+

Top-menu

+

Set a field in extra with a key of even_menu:

+
# This is the default menu
+even_menu = [
+    {url = "$BASE_URL", name = "Home"},
+    {url = "$BASE_URL/categories", name = "Categories"},
+    {url = "$BASE_URL/tags", name = "Tags"},
+    {url = "$BASE_URL/about", name = "About"},
+]
+
+

If you put $BASE_URL in a url, it will automatically be replaced by the actual +site URL.

+

Title

+

The site title is shown on the header. As it might be different from the <title> +element that the title field in the config represents, you can set the even_title +instead.

+

KaTeX math formula support

+

This theme contains math formula support using KaTeX, +which can be enabled by setting katex_enable = true in the extra section +of config.toml:

+
[extra]
+katex_enable = true
+
+

After enabling this extension, the katex short code can be used in documents:

+
    +
  • {{ katex(body="\KaTeX") }} to typeset a math formula inlined into a text, +similar to $...$ in LaTeX
  • +
  • {% katex(block=true) %}\KaTeX{% end %} to typeset a block of math formulas, +similar to $$...$$ in LaTeX
  • +
+

Automatic rendering without short codes

+

Optionally, \\( \KaTeX \\) inline and \\[ \KaTeX \\] / $$ \KaTeX $$ +block-style automatic rendering is also supported, if enabled in the config:

+
[extra]
+katex_enable = true
+katex_auto_render = true
+
+ + +
+ +
+ + + + + + diff --git a/themes/even/screenshot.png b/themes/even/screenshot.png new file mode 100644 index 000000000..1acdd6231 Binary files /dev/null and b/themes/even/screenshot.png differ diff --git a/themes/feather/index.html b/themes/feather/index.html new file mode 100644 index 000000000..b3f8e3e4e --- /dev/null +++ b/themes/feather/index.html @@ -0,0 +1,119 @@ + + + + + + + + + feather | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

feather

+

A lightweight blog theme for Zola (and to my knowledge the first of now +many themes created specifically for Zola).

+

Live demo 🔗

+

screenshot

+

Features

+
    +
  • Fully responsive
  • +
  • Designed for legibility
  • +
  • All JS is non-critical and fails gracefully
  • +
+

Options

+

Zola allows themes to define [extra] variables +in the config. Here's a full list of theme variables with example values and comments.

+
# Regular variables you might want to set...
+title = "My site" # Otherwise, this will read "Home" in the nav
+
+[extra]
+# Specify a theme
+# Default: unset
+#
+# by default, feather enables light and dark mode
+# (and switching when javascript is enabled.)
+# However, if you prefer to only allow one mode,
+# set this to "dark" or "light".
+feather_theme = "dark"
+
+# Quickly insert into `<head>`
+# Default: unset
+feather_head = "<script>alert()</script>"
+
+# Add Disqus comments
+# Default: unset
+#
+# Adds comments to pages by providing your
+# disqus domain. Comments will not appear on
+# index pages, etc.
+feather_disqus_domain = "mysite-com"
+
+# Hide the nav bottom border/background image
+# Default: false
+feather_hide_nav_image = true
+
+

Usage

+

Using feather is easy. Install Zola and follow +the guide for creating a site and using a theme. Then, +add theme = "feather" to your config.toml file.

+

If you intend to publish your site to GitHub Pages, please check out this +tutorial.

+

You can specify tags taxonomies .

+

Developing & Contributing

+

Because feather comes with example content, you can run the theme just like any Zola +blog with zola serve.

+ + +
+ +
+ + + + + + diff --git a/themes/feather/screenshot.png b/themes/feather/screenshot.png new file mode 100644 index 000000000..17fe5a488 Binary files /dev/null and b/themes/feather/screenshot.png differ diff --git a/themes/float/index.html b/themes/float/index.html new file mode 100644 index 000000000..9b89329a5 --- /dev/null +++ b/themes/float/index.html @@ -0,0 +1,157 @@ + + + + + + + + + Float | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Float

+

English

+

Float 是一款為 Zola 設計的佈景主題。

+

[[TOC]]

+

特色

+
    +
  • 依據不同的螢幕尺寸提供最佳化版面,從小尺寸到大尺寸都可獲得優秀的閱讀體驗。
  • +
  • 文章卡片提供兩種卡片尺寸,重點文章可採用更醒目的寬版卡片。
  • +
  • 文章卡片配圖可自行指定,未指定者使用 Unsplash Source 的隨機圖片。
  • +
  • 使用 Zola 的 resize_image() 自動產生適用於 DPR 1.0 ~ 3.0 的圖片,卡片配圖會由瀏覽器依據設備之 DPR 自動選用最佳尺寸的圖片。
  • +
  • 圖片啟用延遲載入,縮短頁面載入時間。
  • +
  • 預設埋入 HTML SEO 標籤、Open GraphTwitter Cards 標籤。
  • +
  • 整合 Google Analytics
  • +
  • 整合 Google AdSense
  • +
  • 版面為 AdSense 自動廣告最佳化,不會因自動廣告的寬度不一而破版。
  • +
  • 整合 LikeCoin
  • +
  • 整合 utterances,利用 GitHub issue 作為留言系統。
  • +
+

安裝與啟用

+

在您的 Zola 專案資料夾內:

+

把 Float 以 Git 子模組的方式加入專案內:

+
git submodule add https://gitlab.com/float-theme/float.git themes/float
+
+

編輯您的 config.toml,指定 Float 作為佈景主題:

+
theme = "float"
+
+

編輯您的 config.toml,加入 tags 作為分類系統:

+
taxonomies = [
+    {name = "tags", paginate_by = 10},
+]
+
+

複製 float/static/ 的所有子資料夾與檔案到您的 static/:

+
cp -r themes/float/static/* static/
+
+

複製 float/content/ 的所有子資料夾與檔案到您的 content/:

+
cp -r themes/float/content/* content/
+
+

使用 Float

+

文章與配圖

+

文章皆以資料夾的方式存在,如下例:

+
content/
+└── blog/
+    └── 2020/
+        └── 2020-06-15-Zola-Theme-Float/
+            ├── index.md
+            ├── pic1.png
+            ├── pic2.png
+            └── qa_report.pdf
+
+

文章為 index.md,文內的配圖或其它檔案也是放在文章資料夾內。

+

Front-matter

+

Front-matter 請參照下列註解說明:

+
title = "Float theme for Zola"
+description = "Float features and usage guide"
+draft = false
+[taxonomies]
+tags = ["Float", "Zola"]
+[extra]
+feature_image = "pic1.png" # 卡片圖片。
+feature = true # 是否為重點文章,重點文章會以寬版卡片顯示。
+link = "" # 指定卡片連結,若有指定則卡片不會連結到文章頁。
+
+

客製化

+

可客製化設定大多可以在 config.toml 的 [extra] 區段做設定:

+
[extra]
+main_section = "blog"
+
+copyright = ""
+
+web_fonts = "<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@500;700&display=swap'>"
+
+google_analytics = false
+# google_analytics_id = "UA-XXXXXX-X"
+
+google_adsense = false
+# google_adsense_id = "ca-pub-XXXXXXXXXXXXXXXX"
+
+twitter_account = "@xxx"
+
+likecoin = false
+# likecoin_name = "xxx"
+
+utterances = false
+# utterances_repo = "xxx/xxx"
+
+

字體

+

字體的 CSS 位於 float/sass/font.scss,欲更換字體,把 float/sass/font.scss 複製到自己的 sass/font.scss,並修改之。

+

已知問題

+
    +
  • 分頁設定皆須設為 10 篇分頁。因為 Zola 的 get_section() 無法取得該 section 的分頁設定。
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/float/screenshot.png b/themes/float/screenshot.png new file mode 100644 index 000000000..c4e7c1e33 Binary files /dev/null and b/themes/float/screenshot.png differ diff --git a/themes/hallo/index.html b/themes/hallo/index.html new file mode 100644 index 000000000..cec31f468 --- /dev/null +++ b/themes/hallo/index.html @@ -0,0 +1,124 @@ + + + + + + + + + hallo | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Build Status +Demo

+

Hallo

+
+

A single-page theme to introduce yourself.

+

Zola port of hallo-hugo.

+
+

Screenshot

+

Original

+

This is a port of the original hallo-hugo theme for Hugo (License).

+

Installation

+

The easiest way to install this theme is to either clone it ...

+
git clone https://github.com/janbaudisch/zola-hallo.git themes/hallo
+
+

... or to use it as a submodule.

+
git submodule add https://github.com/janbaudisch/zola-hallo.git themes/hallo
+
+

Either way, you will have to enable the theme in your config.toml.

+
theme = "hallo"
+
+

Introduction

+

The introduction text is made in content/_index.md.

+

Options

+

See config.toml for an example configuration.

+

Author

+

The given name will be used for the 'I am ...' text.

+

Default: Hallo

+
[extra.author]
+name = "Hallo"
+
+

Greeting

+

The string will be used as a greeting.

+

Default: Hello!

+
[extra]
+greeting = "Hello!"
+
+

iam

+

This variable defines the I am text, which you may want to swap out for another language.

+

Default: I am

+
[extra]
+iam = "I am"
+
+ +

Links show up below the introduction. They are styled with Font Awesome, you may optionally choose the iconset (default is brands).

+
[extra]
+links = [
+    { title = "E-Mail", url = "mailto:mail@example.org", iconset = "fas", icon = "envelope" },
+    { title = "GitHub", url = "https://github.com", icon = "github" },
+    { title = "Twitter", url = "https://twitter.com", icon = "twitter" }
+]
+
+

Theme

+

Change the colors used.

+
[extra.theme]
+background = "#6FCDBD"
+foreground = "#FFF" # text and portrait border
+hover = "#333" # link hover
+
+ + +
+ +
+ + + + + + diff --git a/themes/hallo/screenshot.png b/themes/hallo/screenshot.png new file mode 100644 index 000000000..da242a0bd Binary files /dev/null and b/themes/hallo/screenshot.png differ diff --git a/themes/halve-z/index.html b/themes/halve-z/index.html new file mode 100644 index 000000000..e34a270ac --- /dev/null +++ b/themes/halve-z/index.html @@ -0,0 +1,103 @@ + + + + + + + + + halve-z | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

halve-z

+

Netlify Status

+

A two-column theme for Zola.

+

logo

+

Features

+

This is a retro port of Halve (Jekyll). It features:

+
    +
  • search
  • +
  • taxonomies
  • +
  • PWA (dynamic cache/offline mode)
  • +
  • auto color schemes
  • +
  • ToC
  • +
  • pagination
  • +
  • media shortcodes
  • +
  • SEO
  • +
  • CSP
  • +
  • project cards
  • +
  • comments (Cactus/Giscus)
  • +
  • read time
  • +
+

Installation

+

Add theme submodule using git:

+
git submodule add https://github.com/charlesrocket/halve-z themes/halve-z
+
+

Updates

+

Use the following command to update theme to the latest version:

+
git submodule update --recursive --remote
+
+

Configuration

+
    +
  1. Copy theme's config.toml into your project's root directory. Set variables as required and add theme = "halve-z" at the top of the config file.
  2. +
  3. Copy the content to get started:
  4. +
+
cp -R -f themes/halve-z/content/ content/
+
+

Usage

+

See demo posts.

+ + +
+ +
+ + + + + + diff --git a/themes/halve-z/screenshot.png b/themes/halve-z/screenshot.png new file mode 100644 index 000000000..abfaaa434 Binary files /dev/null and b/themes/halve-z/screenshot.png differ diff --git a/themes/hayflow/index.html b/themes/hayflow/index.html new file mode 100644 index 000000000..3067f1467 --- /dev/null +++ b/themes/hayflow/index.html @@ -0,0 +1,229 @@ + + + + + + + + + HayFlow | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

HayFlow - Modular Zola Theme

+

About

+
+![Preview screenshot](https://gitlab.com/cyril-marpaud/hayflow/-/raw/main/screenshot.png "Preview screenshot") +
+

HayFlow is a modular landing page made as a theme for Zola, a static site generator written in Rust. It features a dark theme with a particles background, vertical arrows for navigation and a few card types which you are free to include to best suit your needs. Nearly all UI elements are subtly animated to convey a professional look (although I'm no designer 🤷 merely an embedded systems engineer).

+

It has been designed to require only Markdown editing (no HTML/CSS), but feel free to do so if you need to. I'll be glad to review a Merge Request if you implement a new card type !

+

[[TOC]]

+

Live demo

+

See my personal website for an example of what can be accomplished in a few minutes with this theme. Its source code is also available as an example in my Gitlab website repository.

+

Built with

+ +

Quick start

+

Initialize a Zola website and install HayFlow:

+
zola init mywebsite
+cd mywebsite
+git clone git@gitlab.com:cyril-marpaud/hayflow.git themes/hayflow
+
+

Add theme = "hayflow" at the top of config.toml file to tell Zola to use HayFlow (as described in the documentation).

+

Finally, run...

+
zola serve
+
+

...and go to http://localhost:1111 to see the landing page in action with the default name displayed (John Doe).

+

Landing page customization

+

Customizing the landing page boils down to two things:

+
    +
  • adding the name and links variables to the config.toml's [extra] section (links is optional. So is name if your name is John Doe)
  • +
  • adding the roles variable to the content/_index.md's [extra] section (also optional)
  • +
+

The difference comes from the fact that you might need to translate the roles into other languages. For that to be possible, they must be placed in a MarkDown file. See multilingual support for more info.

+
    +
  • name speaks for itself.
  • +
  • roles is an array of strings. Each string is displayed on a separate line.
  • +
  • links is an array of {icon, url} objects. You can use any free icon from Font Awesome here, all you need is the icon's code. The enveloppe icon's code is fa-solid fa-envelope. The pizza-slice icon's code is fa-solid fa-pizza-slice.
  • +
+

This is what the config.toml's [extra] section might look like after customization:

+
[extra]
+name = { first = "ninja", last = "turtle" }
+
+links = [
+   { icon = "fa-solid fa-envelope", url = "mailto:slice@pizza.it" },
+   { icon = "fa-solid fa-pizza-slice", url = "https://en.wikipedia.org/wiki/Pizza" },
+]
+
+

And here's a customized version of content/_index.md:

+
+++
+[extra]
+roles = ["Green 🟢", "Turtle 🐢", "Pizza enthusiast 🍕"]
++++
+
+

Adding a section

+

Inside the content directory, create a pizza folder and place this _index.md file inside:

+
+++
+title = "Pizza"
++++
+
+What a mouthful !
+
+

Then, add this sections variable (an array of strings) to the config.toml's [extra] section:

+
[extra]
+sections = ["pizza"]
+
+

A new internal link pointing to that section will appear on the landing page. Click it and see what happens ! This is called a "simple card" section.

+

Customizing sections

+

HayFlow currently supports three card types : simple, columns and list. If left unspecified, the type will default to simple. To change it, add a card_type variable to the _index.md's [extra] section:

+
+++
+title = "Pizza"
+
+[extra]
+card_type = "simple"
++++
+
+What a mouthful !
+
+

Columns card

+

Add a new section and set its card type to columns. Then, alongside the _index.md file, create three other files: one.md, two.md and three.md. These will be the ingredients of your new pizza. Their content is similar to _index.md:

+
+++
+title = "Tomato"
+
+[extra]
+icons = ["fa-solid fa-tomato"]
++++
+
+The basis of any self-respecting pizza. It is the edible berry of the plant Solanum lycopersicum.
+
+

The icons variable is optional.

+

List card

+

Add a new section and set its card type to list. Then, alongside the _index.md file, create three other files: one.md, two.md and three.md. These will be your favourite pizzas. Their content is similar to _index.md:

+
+++
+title = "Margherita"
+
+[extra]
+link = "https://en.wikipedia.org/wiki/Pizza_Margherita"
++++
+
+Margherita pizza is a typical [Neapolitan pizza](https://en.wikipedia.org/wiki/Neapolitan_pizza), made with San Marzano tomatoes, mozzarella cheese, fresh basil, salt, and extra-virgin olive oil.
+
+

The link variable is optional.

+

Multilingual support

+

HayFlow supports multilingual websites out of the box.

+

Declare more languages

+

In config.toml, add the languages you want to support like so:

+
default_language = "fr"
+[translations]
+flag = "🇫🇷"
+
+[languages.en]
+[languages.en.translations]
+flag = "🇬🇧"
+
+[languages.italian]
+[languages.italian.translations]
+flag = "🇮🇹"
+
+

This will make the language-select block in the top-right corner visible. It consists of clickable links to the translated versions of your website. +The flag variable is optional and you can use simple text instead of an emoji flag. If left unspecified, it will default to the country code you chose for that language (fr, en and italian in this example).

+

Translate the content

+

Each .md file in the content folder now needs to be translated into every additional language previously declared in config.toml.

+

Following the above example (three languages, french, english and italian) and given this initial filetree:

+
content/
+   _index.md
+   pizzas/
+      _index.md
+      margherita.md
+      capricciosa.md
+
+

The final filetree should look like this for the translation to be complete:

+
content/
+   _index.md
+   _index.en.md
+   _index.italian.md
+   pizzas/
+      _index.md
+      _index.en.md
+      _index.italian.md
+      margherita.md
+      margherita.en.md
+      margherita.italian.md
+      capricciosa.md
+      capricciosa.en.md
+      capricciosa.italian.md
+
+

List cards

+

Additionally, if your website includes any "list card" sections, you might want to specify a discover variable in their [extra] sections like so:

+
+++
+title = "List Card Section"
+
+[extra]
+card_type = "list"
+discover = "Découvrir"
++++
+
+

Whoami

+

My name is Cyril Marpaud, I'm an embedded systems freelance engineer and a Rust enthusiast 🦀 I have nearly 10 years experience and am currently living in Lyon (France).

+
+

LinkedIn

+
+ + +
+ +
+ + + + + + diff --git a/themes/hayflow/screenshot.png b/themes/hayflow/screenshot.png new file mode 100644 index 000000000..15a5fba20 Binary files /dev/null and b/themes/hayflow/screenshot.png differ diff --git a/themes/hephaestus/index.html b/themes/hephaestus/index.html new file mode 100644 index 000000000..82f2de179 --- /dev/null +++ b/themes/hephaestus/index.html @@ -0,0 +1,164 @@ + + + + + + + + + hephaestus | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

hephaestus

+

Hephaestus is a portfolio theme for zola. It uses bulma css and supports using icons from ion-icon.

+

hephaestus screenshot

+

Contents

+
    +
  • Installation
  • +
  • Options +
      +
    • Navigation Bar
    • +
    • Education
    • +
    • Projects
    • +
    • Skills
    • +
    • Social Links
    • +
    +
  • +
+

Installation

+

First, you will download the theme into your themes directory:

+
$ cd themes
+$ git clone https://github.com/BConquest/hephaestus
+
+

Second, you will enable the theme in your config.toml directory:

+
theme = "hephaestus"
+
+

Options

+ +

To edit the navigation bar you will need to edit your config.toml to include:

+
menu = [
+{ text = "foo", link = "/foo"},
+{ text = "bar", link = "/bar"},
+]
+
+

You can have as many items as you want to have and the links can be to anything.

+

Education

+

To edit the education that is displayed you will need to create a directory in content. +In the _index.md the frontmatter needs to include:

+
title = "foo"
+template = "education.html"
+
+[extra]
+author = "Name"
+
+

For every educational level you want to add you will need to create a new markdown file that includes the frontmatter:

+
title = "place of education"
+
+[extra]
+image = "image-location"
+link = "link to school"
++++
+
+

Any content that is typed will be rendered underneath these two items.

+

Projects

+

To edit the projects that are displayed you will need to create a directory in content. +In the _index.md the frontmatter needs to include:

+
title = "foo"
+template = "projects.html"
+
+[extra]
+author = "bar"
+
+

Then for every project you want to add you will need to format the *.md as:

+
+++
+title = "foo"
+
+[extra]
+image = "/image_location"
+link = "link to project"
+technologies = ["bar", "baz"]
++++
+
+Description of project named foo.
+
+

Skills

+

To edit the skills that you want to display it is important to note that there are two types of skills that can be +displayed (lan, and tools). To format the look you will need to create a directory in content that includes the +frontmatter of:

+
title = "foo"
+template = "skills.html"
+page_template = "skills.html"
+
+[extra]
+author = "author-name"
+image = "image-location"
+
+lan = [
+{ lang = "language", expr = "num between 1-5", image = "image-location", comfort = "word to describe comfort"},
+]
+
+tools = [
+{ tool = "tool-name", expr = "num between 1-5", image = "tool-image"},
+]
+
+ +

To edit the social links that appear in the footer of the page, you need to edit your config.toml to include:

+
social = [
+{ user = "username", link = "link", icon = "icon-name from ion-icon"},
+]
+
+ + +
+ +
+ + + + + + diff --git a/themes/hephaestus/screenshot.png b/themes/hephaestus/screenshot.png new file mode 100644 index 000000000..f05cff55f Binary files /dev/null and b/themes/hephaestus/screenshot.png differ diff --git a/themes/hermit/index.html b/themes/hermit/index.html new file mode 100644 index 000000000..72a9a1dc3 --- /dev/null +++ b/themes/hermit/index.html @@ -0,0 +1,131 @@ + + + + + + + + + Hermit_Zola | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Build Status

+

Hermit

+
+

this is a port of the Hermit theme for Zola

+
+

Hermit is a minimal & fast Zola theme for bloggers.

+

screenshot

+

View demo

+

Installation

+

First download the theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/VersBinarii/hermit_zola
+
+

and then enable it in your config.toml:

+
theme = "hermit_zola"
+
+

Configuration

+
[extra]
+home_subtitle = "Some profound and catchy statement"
+
+footer_copyright = ' &#183; <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
+
+hermit_menu = [
+    { link = "/posts", name = "Posts" },
+    { link = "/about", name = "About" }
+]
+
+hermit_social = [
+    { name = "twitter", link = "https://twitter.com" },
+    { name = "github", link = "https://github.com" },
+    { name = "email", link = "mailto:author@domain.com" }
+]
+
+
+
+[extra.highlightjs]
+enable = true
+clipboard = true
+theme = "vs2015"
+
+[extra.disqus]
+enable = false
+# Take this from your Disqus account
+shortname = "my-supa-dupa-blog"
+
+[extra.author]
+name = "The Author"
+email = "author@domain.com"
+
+[extra.google_analytics]
+enable = false
+id = "UA-4XXXXXXX-X"
+
+

Table of content

+

Table of content can be enabled by adding

+
+++
+[extra]
+toc=true
++++
+
+

to the page front matter. Icon will then appear above the page title that will +allow to toggle the ToC.

+

License

+

MIT

+

Thanks to Track3 for creating the original!

+ + +
+ +
+ + + + + + diff --git a/themes/hermit/screenshot.png b/themes/hermit/screenshot.png new file mode 100644 index 000000000..cfe7e726f Binary files /dev/null and b/themes/hermit/screenshot.png differ diff --git a/themes/hook/index.html b/themes/hook/index.html new file mode 100644 index 000000000..ec628bb49 --- /dev/null +++ b/themes/hook/index.html @@ -0,0 +1,120 @@ + + + + + + + + + Hook | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Hook

+

A clean and simple personal site/blog theme for Zola.

+

Demo

+

Setup

+

Clone this repo into your themes folder:

+
cd themes
+git clone https://github.com/InputUsername/zola-hook.git hook
+
+

Then, enable it in your config.toml:

+
theme = "hook"
+
+

Features

+

The following templates are built-in:

+
    +
  • index.html - the homepage;
  • +
  • page.html - pages and posts (extends index.html);
  • +
  • section.html - archive of pages in a section, mostly for a blog (extends page.html);
  • +
  • 404.html - 404 page (extends page.html).
  • +
+

Templates have the following Tera blocks:

+
    +
  • title - to override the default <title> (config.title);
  • +
  • description - to override the <meta name="description">'s content (config.description);
  • +
  • extra_head - to override styles and anything else in <head>;
  • +
  • header - to change the header (best to put this in a <header>);
  • +
  • content - to change the content (best to put this in a <main>).
  • +
+

You can set a section or page description using description in your front matter. +By default, the description in config.toml is used.

+

You can define links to include in the header on the homepage in config.toml:

+
[extra]
+
+links = [
+    { title = "Link display text", href = "http://example.com" },
+    # ...
+]
+
+

Pages in the root section can define extra.in_header = true to be included in the header links on the homepage.

+

The content in the root _index.md is included in the homepage if present.

+

Below that is a list of the 20 most recent posts. For this, the blog/_index.md section is expected to exist +(will error if it doesn't exist). There is also a link to an archive of all blog posts by year.

+

Hook supports light/dark mode based on the user's preference. There is also a manual toggle button +(requires JavaScript).

+

Screenshots

+

Homepage

+

Homepage

+

Blog post

+

Blog post

+

Blog archive

+

Blog archive

+

Dark mode

+

Dark mode

+

License

+

MIT license, see LICENSE.

+ + +
+ +
+ + + + + + diff --git a/themes/hook/screenshot.png b/themes/hook/screenshot.png new file mode 100644 index 000000000..8cb1eb723 Binary files /dev/null and b/themes/hook/screenshot.png differ diff --git a/themes/hyde/index.html b/themes/hyde/index.html new file mode 100644 index 000000000..4dfdfffe1 --- /dev/null +++ b/themes/hyde/index.html @@ -0,0 +1,114 @@ + + + + + + + + + hyde | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

hyde

+

Hyde is a brazen two-column Zola based on the Jekyll theme of the same name that pairs a prominent sidebar with uncomplicated content.

+

Hyde screenshot

+

Contents

+
    +
  • Installation
  • +
  • Options +
      +
    • Sidebar menu
    • +
    • Sticky sidebar content
    • +
    • Themes
    • +
    • Reverse layout
    • +
    +
  • +
+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://github.com/getzola/hyde.git
+
+

and then enable it in your config.toml:

+
theme = "hyde"
+
+

Options

+ +

Set a field in extra with a key of hyde_links:

+
[extra]
+hyde_links = [
+    {url = "https://google.com", name = "Google.com"},
+    {url = "https://google.fr", name = "Google.fr"},
+]
+
+

Each link needs to have a url and a name.

+ +

By default Hyde ships with a sidebar that affixes it's content to the bottom of the sidebar. You can optionally disable this by setting hyde_sticky to false in your config.toml.

+

Themes

+

Hyde ships with eight optional themes based on the base16 color scheme. Apply a theme to change the color scheme (mostly applies to sidebar and links).

+

Hyde in red

+

There are eight themes available at this time.

+

Hyde theme classes

+

To use a theme, set the hyde_theme field in config.toml to any of the themes name:

+
[extra]
+hyde_theme = "theme-base-08"
+
+

To create your own theme, look to the Themes section of included CSS file. Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.

+

Reverse layout

+

Hyde with reverse layout

+

Hyde's page orientation can be reversed by setting hyde_reverse to true in the config.toml.

+ + +
+ +
+ + + + + + diff --git a/themes/hyde/screenshot.png b/themes/hyde/screenshot.png new file mode 100644 index 000000000..5e218059f Binary files /dev/null and b/themes/hyde/screenshot.png differ diff --git a/themes/index.html b/themes/index.html new file mode 100644 index 000000000..658d81ef6 --- /dev/null +++ b/themes/index.html @@ -0,0 +1,493 @@ + + + + + + + + + Themes | Zola + + + + + +
+ + +
+ +
+ +
+ +

Zola themes

+
+ + + Screenshot of abridge + abridge + + + + Screenshot of adidoks + adidoks + + + + Screenshot of after-dark + after-dark + + + + Screenshot of Albatros + Albatros + + + + Screenshot of anatole-zola + anatole-zola + + + + Screenshot of Andromeda + Andromeda + + + + Screenshot of anemone + anemone + + + + Screenshot of Anpu + Anpu + + + + Screenshot of apollo + apollo + + + + Screenshot of archie-zola + archie-zola + + + + Screenshot of ataraxia + ataraxia + + + + Screenshot of Bear + Bear + + + + Screenshot of Blow + Blow + + + + Screenshot of book + book + + + + Screenshot of boring + boring + + + + Screenshot of Clean Blog + Clean Blog + + + + Screenshot of codinfox-zola + codinfox-zola + + + + Screenshot of d3c3nt + d3c3nt + + + + Screenshot of DeepThought + DeepThought + + + + Screenshot of dinkleberg + dinkleberg + + + + Screenshot of Docsascode_theme + Docsascode_theme + + + + Screenshot of dose + dose + + + + Screenshot of Duckquill + Duckquill + + + + Screenshot of emily_zola_theme + emily_zola_theme + + + + Screenshot of Ergo + Ergo + + + + Screenshot of even + even + + + + Screenshot of feather + feather + + + + Screenshot of Float + Float + + + + Screenshot of hallo + hallo + + + + Screenshot of halve-z + halve-z + + + + Screenshot of HayFlow + HayFlow + + + + Screenshot of hephaestus + hephaestus + + + + Screenshot of Hermit_Zola + Hermit_Zola + + + + Screenshot of Hook + Hook + + + + Screenshot of hyde + hyde + + + + Screenshot of Inky + Inky + + + + Screenshot of juice + juice + + + + Screenshot of kangae + kangae + + + + Screenshot of karzok + karzok + + + + Screenshot of Kita + Kita + + + + Screenshot of kodama + kodama + + + + Screenshot of lightspeed + lightspeed + + + + Screenshot of Mabuya + Mabuya + + + + Screenshot of minimal-dark + minimal-dark + + + + Screenshot of nasm-theme + nasm-theme + + + + Screenshot of neovim + neovim + + + + Screenshot of no style, please! + no style, please! + + + + Screenshot of ntun-zola-theme + ntun-zola-theme + + + + Screenshot of Oceanic Zen + Oceanic Zen + + + + Screenshot of otherworld + otherworld + + + + Screenshot of Papaya + Papaya + + + + Screenshot of PaperMod + PaperMod + + + + Screenshot of particle + particle + + + + Screenshot of pico + pico + + + + Screenshot of polymathic + polymathic + + + + Screenshot of resume + resume + + + + Screenshot of sam + sam + + + + Screenshot of Seagull + Seagull + + + + Screenshot of Seje2 + Seje2 + + + + Screenshot of serene + serene + + + + Screenshot of shadharon + shadharon + + + + Screenshot of simple-dev-blog + simple-dev-blog + + + + Screenshot of Slim + Slim + + + + Screenshot of Soapstone + Soapstone + + + + Screenshot of solar-theme-zola + solar-theme-zola + + + + Screenshot of tabi + tabi + + + + Screenshot of tale-zola + tale-zola + + + + Screenshot of tilde + tilde + + + + Screenshot of Toucan + Toucan + + + + Screenshot of tranquil + tranquil + + + + Screenshot of zallery + zallery + + + + Screenshot of zerm + zerm + + + + Screenshot of Zhuia + Zhuia + + + + Screenshot of zola.386 + zola.386 + + + + Screenshot of EasyDocs + EasyDocs + + + + Screenshot of zola-grayscale + zola-grayscale + + + + Screenshot of zola-hacker + zola-hacker + + + + Screenshot of henry + henry + + + + Screenshot of Minimal + Minimal + + + + Screenshot of zola-paper + zola-paper + + + + Screenshot of pickles + pickles + + + + Screenshot of Course + Course + + + + Screenshot of Hikari + Hikari + + + + Screenshot of terminimal + terminimal + + + + Screenshot of Zolarwind + Zolarwind + + + + Screenshot of zolastrap + zolastrap + + + + Screenshot of Zplit + Zplit + + + + Screenshot of Zulma + Zulma + + +
+ +
+ +
+ + + + + + diff --git a/themes/inky/index.html b/themes/inky/index.html new file mode 100644 index 000000000..5aa1cc3f1 --- /dev/null +++ b/themes/inky/index.html @@ -0,0 +1,110 @@ + + + + + + + + + Inky | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola-Inky

+
+

An elegant and understated theme for Zola

+
+

Zola Inky (view demo) is a theme by jimmyff and mr-karan for the Zola static site generator. This theme was originally based on the hugo-ink theme, ported by mr-karan. It was then packaged and developed further by jimmyff. The theme is available on Github under the MIT license, for more information on how to use it please see the readme and check the changelog for a list of the latest changes.

+

PNG

+

Changelog

+

For latest changes please see the changelog.

+

Features

+
    +
  • Responsive design
  • +
  • Responsive images
  • +
  • Gallery template
  • +
  • Taxonomy support
  • +
  • Search
  • +
  • Customisable via template hooks
  • +
+

Getting started

+
    +
  1. Add this theme to your themes/ folder (recommended method: git submodule).
  2. +
  3. Copy of the the theme's config.toml file and put in your projects root directory. Update it as required and don't forget to add theme = 'zola-inky' at the top of the file.
  4. +
  5. Copy this contents of the content/ directory the root of your project and change the files as your necessary.
  6. +
+

Customising the theme

+
    +
  • To change the settings copy config.toml in to your project and update as required (make sure you add the theme variable at the top of the file, see the getting started heading above).
  • +
  • To change the themes colours copy sass/variables.scss in to your project under the same folder and update as required.
  • +
  • To inject content in to templates copy templates/macros/hooks.html and update as required.
  • +
+

Using the responsive image shortcode

+

Using the responsive images will make sure your images are generated at various sizes and served up to viewers at the size that best suits their device via the image srcset attribute. You can use this feature in your markdown like so:

+
{{ image(src="yourimage.jpg", alt="This is my image") }}
+
+

Feature requests & support

+

I'm afraid I'm unable to accept feature requests or provide user support for this theme. The Zola documentation and Tera documentation are great resources and there is a Zola discussion forum. If you've found a bug in the themse please open a github issue.

+

Contributing

+

Contributions are very welcome! If you are planning to add a feature to the theme then feel free to open an issue to discuss your approach and we will be able to say if it's it will likely be accepted. Please keep the following in mind:

+
    +
  • Only widely generic features will be accepted, anything too specific should be kept to your own templates.
  • +
  • Be careful about destroying indentation as Tera syntax doesn't seem to be widely supported by IDEs.
  • +
  • Keep it lean. Adding bloat will likely result in your PR being rejected.
  • +
  • Consider backward compatibility, ideally people blindly-upgrading won't see any unexpected changes to their sites.
  • +
+

New theme maintainers are welcome but should provide pull-request or two first!

+ + +
+ +
+ + + + + + diff --git a/themes/inky/screenshot.png b/themes/inky/screenshot.png new file mode 100644 index 000000000..367b71588 Binary files /dev/null and b/themes/inky/screenshot.png differ diff --git a/themes/juice/index.html b/themes/juice/index.html new file mode 100644 index 000000000..5ddc32b63 --- /dev/null +++ b/themes/juice/index.html @@ -0,0 +1,158 @@ + + + + + + + + + juice | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Juice

+ +

Juice is an intuitive, elegant, and responsive Zola theme for product sites.

+
    +
  • Build for product sites
  • +
  • Simple and intuitive structure
  • +
  • Clean and elegant design
  • +
  • Responsive and mobile device compatible
  • +
  • Customize and extend friendly
  • +
+

https://juice.huhu.io

+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/huhu/juice.git
+
+

or add as a submodule

+
$ git submodule add https://github.com/huhu/juice  themes/juice
+
+

and then enable it in your config.toml:

+
theme = "juice"
+
+

Structure

+

Hero

+

Juice is designed for product websites, hence we let hero part fills whole of screen. +You can customize your hero by using hero block in the templates/index.html.

+
{%/* extends "juice/templates/index.html" */%}
+{%/* block hero */%}
+    <div>
+        Your cool hero html...
+    </div>
+{%/* endblock hero */%}
+
+

Page

+

Every markdown file located in content directory will become a Page. There also will display as +a navigate link on the top-right corner. +You can change the frontmatter's weight value to sort the order (ascending order).

+
+++
+title = "Changelog"
+description = "Changelog"
+weight = 2
++++
+
+
+

CSS variables

+

You can override theme variable by creating a file named _variables.html in your templates directory.

+

See the default value here

+

Favicon

+

The same way as changing the hero block in the templates/index.html, you can change the favicon.

+
{%/* extends "juice/templates/index.html" */%}
+{%/* block favicon */%}
+    <link rel="icon" type="image/png" href="/favicon.ico">
+{%/* endblock favicon */%}
+
+

Fonts

+

If you changed the --xy-font-family-variable in _variables.html, you have to load the mentioned fonts in the templates/index.html.

+
{%/* extends "juice/templates/index.html" */%}
+{%/* block fonts */%}
+    <link href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" rel="stylesheet" crossorigin="anonymous">
+    <link href="https://fonts.googleapis.com/css2?family=Babylonica&display=swap" rel="stylesheet">
+{%/* endblock fonts */%}
+
+

Configuration

+

You can customize some builtin property in config.toml file:

+
[extra]
+juice_logo_name = "Juice"
+juice_logo_path = "juice.svg"
+juice_extra_menu = [
+    { title = "Github", link = "https://github.com/huhu/juice"}
+]
+juice_exclude_menu = [
+    "exclude_from_nav"
+]
+repository_url = "https://github.com/huhu/juice"
+
+

Shortcodes

+

Juice have some builtin shortcodes available in templates/shortcodes directory.

+
    +
  • issue(id) - A shortcode to render issue url, e.g. issue(id=1) would render to the link https://github.com/huhu/juice/issue/1.
  • +
+
+

The repository_url is required.

+
+

Showcases

+

Please see the showcases page.

+

Contributing

+

Thank you very much for considering contributing to this project!

+

We appreciate any form of contribution:

+
    +
  • New issues (feature requests, bug reports, questions, ideas, ...)
  • +
  • Pull requests (documentation improvements, code improvements, new features, ...)
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/juice/screenshot.png b/themes/juice/screenshot.png new file mode 100644 index 000000000..3150b2159 Binary files /dev/null and b/themes/juice/screenshot.png differ diff --git a/themes/kangae/index.html b/themes/kangae/index.html new file mode 100644 index 000000000..aae5f19ff --- /dev/null +++ b/themes/kangae/index.html @@ -0,0 +1,184 @@ + + + + + + + + + kangae | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

kangae (考え, idea or thought)

+

kangae is a lightweight microblog theme for zola.

+
+ kangae screenshots on desktop and mobile +

kangae screenshot light mode on desktop +kangae screenshot dark mode on desktop +kangae screenshot light mode on mobile +kangae screenshot dark mode on mobile

+
+

I've created kangae from scratch and it is not based on any other theme. However, I was inspired to +create kangae after I came across Wolfgang Müller's microblog. Thanks Wolf!

+

kangae is licensed under the NCSA license, which is quite similar to the BSD-3-Clause license. +Unlike BSD-3-Clause, NCSA also covers documentation of a project.

+

Showcase

+

Here's a list of websites using the kangae theme

+ +

If you want to mention your website in this section, please raise a pull request.

+

Installation

+

Before using this theme, install zola. After you've installed zola,

+
$ zola init microblog
+> What is the URL of your site? (https://example.com):
+> Do you want to enable Sass compilation? [Y/n]:
+> Do you want to enable syntax highlighting? [y/N]:
+> Do you want to build a search index of the content? [y/N]:
+$ cd microblog/
+
+

kangae doesn't use Sass or syntax highlighting so if you don't want to use custom Sass code or +enable syntax highlighting, answer the 2nd and 3rd question with a 'no'. kangae also doesn't use any +JavaScript library to search content. If you don't intend to install a JavaScript library to enable +search on your microblog, answer 'no' to the last question as well.

+

If you intend to publish your microblog on a forge like GitHub, initialize an empty git repository +using

+
$ git init
+$ git commit --allow-empty -m 'initial empty root commit'
+
+

If you don't want to make an empty commit, add and commit a README or a LICENSE file instead.

+

At this point, you can install kangae using one of the following methods

+

using git subtree

+
$ git subtree add -P themes/kangae/ --squash https://github.com/ayushnix/kangae.git master
+
+

using git submodule

+
$ git submodule add https://github.com/ayushnix/kangae.git themes/kangae
+
+

download kangae in themes directory

+

If you want to keep things simple and figure out version control later, you can

+
$ git clone https://github.com/ayushnix/kangae.git themes/kangae
+
+

Configuration

+

To begin using kangae after installing it,

+
$ cp themes/kangae/config.toml ./
+$ sed -i 's;# theme =\(.*\);theme =\1;' config.toml
+
+

The config.toml file of kangae has been documented carefully using TOML comments. If you have +any questions about configuring kangae which haven't been answered in the config.toml file itself, +please raise an issue.

+

Shortcodes

+

kangae provides several shortcodes that can be used to add content in an accessible manner

+

kaomoji (・_・)ノ

+

If you want to use kaomoji in your posts, you can use insert them in an accessbile manner using

+
I don't know. {{ kaomoji(label="shrug kaomoji", text="╮( ˘_˘ )╭") }} I've never thought about it.
+
+

Providing a value for the label is optional but highly recommended. A short text should be +mentioned that explains what the kaomoji means to convey. The value of text should be the actual +emoticon itself.

+

This shortcode can also be used for any other ASCII emoticon that can fit in an inline paragraph. +This includes western emoticons such as ;) and combination emoticons such as <(^_^<).

+

Quotes

+

You can add quotes in your microblog posts using

+
{% quote(author="Nara Shikamaru") %}
+You would think just this once, when it was life or death, I could pull through.
+{% end %}
+
+

This is the most basic form of improvement in writing quotes over simply using > in markdown.

+

If you want to mention the name of the source from where the quote has been taken, such as the name +of the book or a movie, you can use

+
{% quote(citation="Mass Effect 3", author="Javik") %}
+Stand in the ashes of a trillion dead souls, and ask the ghosts if honor matters. The silence is your answer.
+{% end %}
+
+

A citeurl can also be given as an argument to this shortcode to provide the actual URL from where +the source is borrowed.

+
{% quote(author="Edward Snowden", citeurl="https://old.reddit.com/r/IAmA/comments/36ru89/just_days_left_to_kill_mass_surveillance_under/crglgh2/") %}
+Arguing that you don't care about the right to privacy because you have nothing to hide is no different than saying you don't care about free speech because you have nothing to say.
+{% end %}
+
+

A live preview of these how these shortcodes look like can be found on this blog post.

+

Optional Features

+

kangae includes some optional features that aren't enabled by default

+ +

Donate

+

If you found kangae helpful in creating your own microblog website, please consider supporting me by +buying me a coffee :coffee:

+

buy ayushnix a coffee at buymeacoffee.com +buy ayusnix a coffee at ko-fi.com

+

If you're in India, you can also use UPI for donations. My UPI address is ayushnix@ybl.

+

Notes

+

Although I'm not a web developer, I am interested in learning HTML and CSS to create lightweight +textual websites. You may be interested in reading my log about how I learned HTML and CSS. +However, that page is just an unorganized dump of my thoughts and isn't a polished blog post. +Seirdy's blog post on creating textual websites is probably a better reference.

+

TODO (maybe?)

+
    +
  • (responsive) image shortcodes
  • +
  • run prettier on HTML and CSS before deployment
  • +
  • twitter and mastodon shortcodes
  • +
  • add optional support for cross posting and commenting on mastodon without using JS
  • +
  • add optional support for giscus and loading mastodon comments
  • +
  • add shortcode for asciinema
  • +
  • add shortcode for blockquote and citation
  • +
  • pagination
  • +
  • light and dark mode switch
  • +
  • content tabs
  • +
  • microdata and microformats2
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/kangae/screenshot.png b/themes/kangae/screenshot.png new file mode 100644 index 000000000..a06eeb595 Binary files /dev/null and b/themes/kangae/screenshot.png differ diff --git a/themes/karzok/index.html b/themes/karzok/index.html new file mode 100644 index 000000000..fb570db38 --- /dev/null +++ b/themes/karzok/index.html @@ -0,0 +1,173 @@ + + + + + + + + + karzok | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

+ status-badge + license a repository, MIT + latest release as a repository +

+

+ Documentation +

+

Karzok

+
    +
  • classless and frameworkless
  • +
  • Jinja-like templates
  • +
  • javascript is optional, needed only for search,math,alerts and dark mode
  • +
  • no roundings and other strange design trends
  • +
+

screenshot

+

Get Started

+ +

Requirements

+ +

1. Create a new zola site

+
zola init zola_site
+
+

2. Download this theme to you themes directory:

+
git clone https://codeberg.org/kogeletey/karzok zola_site/themes
+
+

or install as submodule:

+
cd zola_site
+git init # if your project is a git repository already, ignore this command
+git submodule add https://codeberg.org/kogeletey/karzok zola_site/themes
+
+

3. Configuration. Open in favorite editor config.toml

+
base_url = "https://karzok.example.net" # set-up for production
+theme = "karzok"
+
+

See more in configuration

+

4. Added new content

+
    cp ./themes/content/_index.md content/_index.md
+
+

how you can give freedom to your creativity

+

5. Run the project

+

i. development enviroment

+
    +
  1. Install node dependencies needed to work
  2. +
+
pnpm ci
+pnpm run build
+
+
    +
  1. Just run zola serve in the root path of the project
  2. +
+
zola serve
+
+

Open in favorite browser http://127.0.0.1:1111. Saved +changes live reolad.

+

ii. production enviroment

+
    +
  • with conainers
  • +
+
    +
  1. Write file for container
  2. +
+
FROM ghcr.io/kogeletey/karzok:latest AS build-stage
+# or your path to image
+ADD . /www
+WORKDIR /www
+RUN sh /www/build.sh 
+
+FROM nginx:stable-alpine
+
+COPY --from=build-stage /www/public /usr/share/nginx/html
+
+EXPOSE 80
+
+
    +
  1. Run the your container
  2. +
+
docker build -t <your_name_image> . &&\
+docker run -d -p 8080:8080 <your_name_image> 
+
+
    +
  • using gitlab-ci and gitlab-pages
  • +
+
image: ghcr.io/kogeletey/karzok:latest # or change use your registry
+
+pages: 
+  script:
+    - sh /www/build.sh   
+    - mv /www/public public
+  artifacts:
+    paths:
+      - public/
+
+

Open in favorite browser https://localhost:8080

+

License

+

This program is Free Software: You can use, study share and improve it at your +will. Specifically you can redistribute and/or modify it under the terms of the +MIT

+

Contribute

+

Make sure to read the Code of Conduct

+

Find bugs and come up with features

+

On the codeberg issues or +github issues

+ + +
+ +
+ + + + + + diff --git a/themes/karzok/screenshot.png b/themes/karzok/screenshot.png new file mode 100644 index 000000000..c2944fded Binary files /dev/null and b/themes/karzok/screenshot.png differ diff --git a/themes/kita/index.html b/themes/kita/index.html new file mode 100644 index 000000000..3f1dcc9cb --- /dev/null +++ b/themes/kita/index.html @@ -0,0 +1,103 @@ + + + + + + + + + Kita | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Kita

+

Kita is a clean, elegant and simple blog theme for Zola.

+

This theme is based on Hugo theme hugo-paper with some features added.

+

Demo

+

Screenshot

+

Features

+
    +
  • Easy to use and modify
  • +
  • No preset limits (This theme does not limit your content directory structure, taxonomy names, etc. It's applicable to all zola sites.)
  • +
  • Dark mode
  • +
  • Responsive design
  • +
  • Social icons
  • +
  • Taxonomies support
  • +
  • Projects page
  • +
  • Archive page
  • +
  • Table of Content
  • +
  • Admonition shortcode
  • +
  • SEO friendly
  • +
  • Comments using Giscus
  • +
  • Mathematical notations using KaTeX
  • +
  • Diagrams and charts using Mermaid
  • +
+

Installation

+

The easiest way to install this theme is to clone this repository in the themes directory:

+
git clone https://github.com/st1020/kita.git themes/kita
+
+

Or to use it as a submodule:

+
git submodule add https://github.com/st1020/kita.git themes/kita
+
+

Then set kita as your theme in config.toml.

+
theme = "kita"
+
+

Configuration

+

See the extra section in config.toml as a example.

+

License

+

MIT License

+

Copyright (c) 2023-present, st1020

+ + +
+ +
+ + + + + + diff --git a/themes/kita/screenshot.png b/themes/kita/screenshot.png new file mode 100644 index 000000000..36c6d7616 Binary files /dev/null and b/themes/kita/screenshot.png differ diff --git a/themes/kodama-theme/index.html b/themes/kodama-theme/index.html new file mode 100644 index 000000000..71fc234d9 --- /dev/null +++ b/themes/kodama-theme/index.html @@ -0,0 +1,274 @@ + + + + + + + + + kodama | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Kodama

+

Theme screenshot

+

Summary

+

This theme is greatly inspired from hugo academic theme.

+

First lets introduce some technical details:

+ +

Getting started

+

The best way to get started is to follow the official zola tutorial.

+

This theme can be installed as any other theme.

+
mkdir themes
+cd themes & git clone https://github.com/adfaure/kodama-theme
+
+

and set in the config.toml the variable theme to kodama-theme.

+

Generate the CSS

+

Tailwindcss is a framework that parses your html files, and generate the minimal CSS required. +This theme depends on this framework.

+

The theme comes with the precompiled style files (static/styles/styles.css). However, if you wish to change the style, or modify the template htlm, you might need to recompile your styles.

+

The most simple way, is to follow the installation page of tailwindcss.

+

At the end, you should have tailwindcss installed, and I advise to use the following tailwind configuration:

+
# tailwind.config.js
+module.exports = {
+  content: ["./templates/**/*.html", "./themes/**/*.html",  "./themes/**/*.html"],
+  theme: {},
+  variants: {},
+  plugins: [
+      require('@tailwindcss/typography'),
+  ],
+};
+
+

Create a file styles/styles.css, and use the following command to generate the final CSS file:

+
npx tailwindcss -i styles/styles.css -o static/styles/styles.css
+
+

The resulting file static/styles/styles.css is loaded in the html.

+

Note that, for the moment the generation of the css is not automated. As a result, it is necessary to re-run this command when changes are made with the styling.

+

Configuration

+

This theme use some extra configuration, that can be set in the extra section of your config.toml.

+
# Title displayed in the index page
+title = "Website title"
+
+# Use this theme
+theme = "kodama-theme"
+
+[extra]
+
+# Image of your avatar displayed on the landing page
+avatar = "static/img/avatar.jpg"
+# Image of the favicon
+favicon = "static/img/avatar.jpg"
+
+# Your email address showed in the contact section
+email = "kodama[at]domain.com"
+
+# If you don't want to show your contact information in the index
+contact_in_index = true
+
+# Additional menu items
+# `Name` is what it is displayed, `path` is the url
+menu_items = [
+  { path = "#contacts", name = "Contact" },
+]
+
+

Index page

+

The information needed to build the index page are located in the page front matter of root index file (e.g content/_index.md).

+

The available configuration options are:

+
# Insert zola front matter variable such as date etc
+
+[extra]
+
+# Show a concise description of what you do below your avatar.
+title = "Concise description"
+
+# The list of interests displayed
+interests = [
+  "Rainbow pony",
+  "Martian food",
+  "Quantic science"
+]
+
+# The list of your degrees / education
+[[extra.education.courses]]
+  course = "Latest degree"
+  institution = "Some acamedy"
+  year = 2020
+
+[[extra.education.courses]]
+  course = "Another degree"
+  institution = "Here and there"
+  year = 2016
+
+# Finally, a list of icons with a link displayed below your avatar
+[[extra.avatar_icons]]
+  icon = "github"
+  link = "https://github.com/adfaure"
+[[extra.avatar_icons]]
+  icon = "gitlab"
+  link = "https://gitlab.com/adfaure"
+[[extra.avatar_icons]]
+  icon = "linkedin"
+  link = "https://www.linkedin.com/in/adrien-faure-9958978b/"
+
+

Contact

+

The predefined contact page can be use. +The front matter extra part should contains a list of the link to show in the contacts.

+

Sections

+

The section available in your website are automatically detected and displayed in the nav bar at the top of the page. +To prevent a section to be displayed in the nav bar, you can set the extra front matter option extra.hidden_nav = false to false.

+

The section are sorted by weight defined in the front matter of the section.

+

By default, the sections (i.e folders under content/section_name) have a summary showed in the index. +This is configurable in the front matter of the section (e.g content/section_name/_index.md).

+
# The name displayed in the section summary
+extra.index_title = "Recent Posts"
+# Set to false to remove the section from the index
+extra.index_show = true
+
+

Blog

+

The section blog is the most standard section. It show a list of article with things that you want to share in your website. +To use the blog template, configure the section with the following front matter:

+
template = "section.html"
+page_template = "blog-page.html"
+
+

Publications

+

The section publication is very similar to the blog section however it is dedicated to show your list of scientific articles. +The articles are showed in two subcategories: Thesis and Conference / Workshop.

+

To configure a publication section (e.g content/research) and set the following content:

+
+++
+title = "Research"
+sort_by = "date"
+
+# Here the two dedicated templates
+template = "publications.html"
+page_template = "publication-page.html"
+
+# If you want to show your publications under different sections
+# the title will be the displayed text in your website, and the type
+# should be the type of publication.
+# Each individual plublication has an `extra.type` that refers to the
+# publication type (example in content sub-section).
+extra.publications_types = [
+  { title = "Journal articles", type = "journals" },
+  { title = "Thesis", type = "thesis" },
+  { title = "Conferences and workshops ", type = "conferences" }
+]
++++
+
+## Content
+
+Any content will be displayed on top of the section.
+
+

Article are referenced in subdirectories of this section.

+
tree content/research
+content/research
+├── _index.md
+├── paper1
+│   ├── bib
+│   └── index.md
+└── thesis
+    ├── bib
+    ├── index.md
+    ├── thesis.pdf
+    └── thesis_slides.pdf
+
+

The bib files are automatically loaded to get information from it. However, it is also possible to add information in the front matter of the article markdown file.

+
+++
+title = "Article 1"
+date = 2021-05-18
+
+[extra]
+type = "Conference"
+authors = [ "Kodama Mononoke" ]
+
+# Should be the type of the publication type it should appears under
+# configured in the front matter of publications/_index.md
+type = "conferences"
+
+featured = true
+publication = "2020 IEE rainbow workshop"
+# Add full url for your pdf and your presentation
+url_pdf = "https://your-pdf"
+url_slides = "path_to_slides"
+
+# Add a link to a local pdf inside of your paper folder (example in content/publications/paper1.index.md)
+pdf = "paper.pdf"
+slides = "path_to_slides.pdf"
++++
+
+

Extend the html header

+

In some cases, it is needed to add extra javascript or css files to be loaded by the web browsers. +The base template of this theme define an empty block named user_head.

+

To use this block, you can just create a new template name templates/base.html with the following content:

+
{%/* extends "kodama-theme/templates/base.html" */%}
+
+{%/* block user_head */%}
+  <script>
+    console.log("hello world!");
+  </script>
+{%/* endblock user_head */%}
+
+

Icons

+

The icons available in this project are stored in a dedicated macro function in templates/macros/icons.html. +To add a new svg, you can add a case in the if elif .. else of the function containing the svg copied from heroicons for instance.

+ + +
+ +
+ + + + + + diff --git a/themes/kodama-theme/screenshot.png b/themes/kodama-theme/screenshot.png new file mode 100644 index 000000000..a4f8a1c3e Binary files /dev/null and b/themes/kodama-theme/screenshot.png differ diff --git a/themes/lightspeed/index.html b/themes/lightspeed/index.html new file mode 100644 index 000000000..ecc7291bf --- /dev/null +++ b/themes/lightspeed/index.html @@ -0,0 +1,154 @@ + + + + + + + + + lightspeed | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Light Speed

+

An insanely fast and performance-based Zola theme, ported from Light Speed Jekyll.

+

Some fun facts about the theme:

+
    +
  • Perfect score on Google's Lighthouse audit
  • +
  • Only ~700 bytes of CSS
  • +
  • No JavaScript
  • +
  • Now with SEO!
  • +
+

Demo: quirky-perlman-34d0da.netlify.com

+
+

Contents

+
    +
  • Installation
  • +
  • Options +
      +
    • Title
    • +
    • Footer menu
    • +
    • SEO
    • +
    • Footer text
    • +
    • Sass
    • +
    +
  • +
  • Original
  • +
  • License
  • +
+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/carpetscheme/lightspeed.git
+
+

and then enable it in your config.toml:

+
theme = "lightspeed"
+
+

Posts should be placed directly in the content folder.

+

To sort the post index by date, enable sort in your index section content/_index.md:

+
sort_by = "date"
+
+

Options

+

Title

+

Set a title and description in the config to appear in the site header:

+
title = "Different strokes"
+description = "for different folks"
+
+
+ +

Set a field in extra with a key of footer_links:

+
[extra]
+
+footer_links = [
+    {url = "$BASE_URL/about", name = "About"},
+    {url = "$BASE_URL/atom.xml", name = "RSS"},
+    {url = "https://google.com", name = "Google"},
+]
+
+

If you put $BASE_URL in a url, it will automatically be replaced by the actual +site URL.

+

Create pages such as $BASE_URL/about by placing them in a subfolder of the content directory, and specifying the path in the frontmatter:

+
path = "about"
+
+

SEO

+

Most SEO tags are populated by the page metadata, but you can set the author and for the og:image tag provide the path to an image:

+
[extra]
+
+author = "Grant Green"
+ogimage = "Greenery.png"
+
+ +

By default the footer provides links to Zola and Netlify, and a tagline of "Maintained with :heart: for the web". +To disable any of those parts, and/or add a custom tagline of your own, the following options are available:

+
[extra]
+
+zola = true
+netlify = false
+maintained_with_love = false
+footer_tagline = "What if everything is an illusion and nothing exists? In that case, I definitely overpaid for my carpet."
+
+

Sass

+

Styles are compiled from sass and imported inline to the header :zap:

+

You can overide the styles by enabling sass compilation in the config:

+
compile_sass = true
+
+

...and placing a replacement style.scss file in your sass folder.

+

Original

+

This template is based on the Jekyll template Light Speed Jekyll by Bradley Taunt.

+

License

+

Open sourced under the MIT license.

+

This project is open source except for example articles found in content.

+ + +
+ +
+ + + + + + diff --git a/themes/lightspeed/screenshot.png b/themes/lightspeed/screenshot.png new file mode 100644 index 000000000..6070f1eea Binary files /dev/null and b/themes/lightspeed/screenshot.png differ diff --git a/themes/mabuya/index.html b/themes/mabuya/index.html new file mode 100644 index 000000000..a7571754e --- /dev/null +++ b/themes/mabuya/index.html @@ -0,0 +1,161 @@ + + + + + + + + + Mabuya | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+
+

🦎 Mabuya

+ + + + + +
+
+
+

Mabuya is a minimal Zola theme for building light and SEO-ready blogs.
+Put your work front and center with Mabuya as the base of your project.

+ +demo +
+
+
+Mabuya screenshot +
+

ⓘ Background

+

While searching for themes, I came across Zola Tale. Sadly, the project's last update was on Dec, 2021. Shortly after, I decided to fork the project and add my own touches to it.

+

The name Mabuya comes from the Mabuya hispaniolae, a possibly extinct1 species of skink endemic to the Dominican Republic, my home country.

+

✨ Features and Improvements

+

While working on the theme, I have added new functionality and made many quality of life improvements. Here's a short list:

+
    +
  • Refactored stylesheets.
  • +
  • Added Dark theme and color theme toggle.
  • +
  • Added new footer navigation.
  • +
  • Created a custom GitHub Action to deploy Zola sites faster than any other GitHub Actions using Docker.
  • +
  • Refined page transitions from desktop to mobile and viceversa.
  • +
  • Centralized custom variables–made it easier to customize the site's colors.
  • +
  • Addressed PR #7 fixing the pagination problem present in the original Zola theme.
  • +
  • Addressed Issue #4 fixing custom text not being used correctly.
  • +
  • Addressed (temporarily) Issue #1 by removing the erroneous pinned marker.
  • +
  • Optimized for speed and accessibility. Subtle color changes to make the text more readable, etc.
  • +
  • Many other small improvements...
  • +
+

🚀 Quick Start

+

Before using the theme, you need to install Zola ≥ v0.18.0.

+

1. Clone the repo

+
git clone git@github.com:semanticdata/mabuya.git
+
+

2. Change directory into clone

+
cd mabuya
+
+

3. Serve the site locally

+
zola serve
+
+

For more detailed instructions, visit the Documentation page about installing and using themes.

+

🎨 Customization

+

You can change the configuration, templates and content yourself. Refer to the config.toml, and templates for ideas. In most cases you only need to modify the contents of config.toml to customize the appearance of your blog. Make sure to visit the Zola Documentation.

+

Adding custom CSS is as easy as adding your styles to sass/_custom.scss. This is made possible because SCSS files are backwards compatible with CSS. This means you can type normal CSS code into a SCSS file and it will be valid.

+

🔄 Workflows

+

🔨 Build only

+
steps:
+  - name: Checkout
+    uses: actions/checkout@v4
+  - name: Install Zola
+    uses: taiki-e/install-action@zola
+  - name: Build Zola
+    run: zola check --drafts
+    env:
+      BUILD_ONLY: true
+      GITHUB_TOKEN: ${{/* secrets.GITHUB_TOKEN */}}
+
+

📢 Deployment

+
steps:
+  - name: Checkout
+    uses: actions/checkout@v4
+  - name: Install Zola
+    uses: taiki-e/install-action@zola
+  - name: Build site
+    run: zola build
+    env:
+      GITHUB_TOKEN: ${{/* secrets.GITHUB_TOKEN */}}
+  - name: Upload site artifact
+    uses: actions/upload-pages-artifact@v3
+    with:
+      path: public
+  - name: Deploy to GitHub Pages
+    id: deployment
+    uses: actions/deploy-pages@v4
+
+

🚩 Reporting Issues

+

We use GitHub Issues as the official bug tracker for Mabuya. Please search existing issues. It’s possible someone has already reported the same problem. If your problem or idea is not addressed yet, open a new issue.

+

🤝 Contributing

+

We'd love your help! Please see CONTRIBUTING and our Code of Conduct before contributing.

+

💜 Acknowledgements

+

Mabuya is a fork of Tale, which itself is a port of the Jekyll theme Tale which is now archived.

+

The icons used throughout the site are kindly provided by UXWing. Read their license.

+

©️ License

+

Source code in this repository is available under the MIT License.

+
1 +

Mabuya hispaniolae's conservation status is Critically endangered, possibly extinct.

+
+ + +
+ +
+ + + + + + diff --git a/themes/mabuya/screenshot.png b/themes/mabuya/screenshot.png new file mode 100644 index 000000000..e5a27df87 Binary files /dev/null and b/themes/mabuya/screenshot.png differ diff --git a/themes/minimal-dark/index.html b/themes/minimal-dark/index.html new file mode 100644 index 000000000..84f42eef8 --- /dev/null +++ b/themes/minimal-dark/index.html @@ -0,0 +1,148 @@ + + + + + + + + + minimal-dark | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Deploy Zola with GitHub Pages

+

General

+

I am not the best webmaster, but should be somewhat responsive. +I intentionally using the bigger fonts to make, feel free to change it in main.scss

+

Light mode

+

Now light mode also supported.

+

Important

+

Please make sure to set up your base_url with trailing slash:

+
base_url = "https://kuznetsov17.github.io/minimal-dark/"
+
+

Comments

+

Theme supports Giscuss for comments. The configuration is done via config.toml. Here you can see the example section used for this page deployment:

+
[extra.giscus]
+data_repo="kuznetsov17/minimal-dark"
+data_repo_id="R_kgDOLIfXYA"
+data_category="General"
+data_category_id="DIC_kwDOLIfXYM4Ccn56"
+data_mapping="title"
+data_strict="0"
+data_reactions_enabled="0"
+data_emit_metadata="0"
+data_input_position="top"
+data_theme="//kuznetsov17.github.io/minimal-dark/css/gs_dark.css"
+data_lang="en"
+crossorigin="anonymous"
+nonce=""
+
+

Page onfigurations

+

Customize the page blocks by setting configuration in [extra] section:

+
copyright_string = "Сreated in %YEAR% for fun." # the string displayed in footer. %YEAR% is replaced by current year on build
+show_copyright = true / false # enables / disables footer with copyright
+show_comments = true / false # enables / disables comments
+show_shares = true / false # enables / disables section with social share buttons
+show_toc = true / false # enables / disable TOC
+show_date = true / false # displays publication date in page
+
+

Blog

+

I am using this theme for my notes, or probably blog. +The section template supports pagination, tags, sorts the pages by publication date. You may see the working example here

+

config.toml extras

+
author = "John Doe" # author. Will be puth in page metadata
+description = "Some description, if you somehow didn't set it in page / section settings"
+logo_src = "images/logo.svg" # logo src
+avatar_src = "images/avatar.png" # avatar src
+index_page="index" # name of the index page. Should be one of top_menu to make things work
+top_menu = ["index","features","notes"] # Menu items
+copyright_string = "Сreated by John Doe in 2024 – %YEAR% for fun." # footer content. %YEAR% will be replaced with current year
+nonce = "${SOME_HASH_VALUE}" # used for JavaScript src nonce
+
+

Shortcodes

+

Callouts

+
{% callout(type = 'warning') %}
+This is an example of **Warning** callout. [Some link](#)
+{% end %}
+{% callout(type = 'alert') %}
+This is an example of **Alert** callout. [Some link](#)
+{% end %}
+{% callout(type = 'info') %}
+This is an example of **Info** callout. [Some link](#)
+{% end %}
+
+

Timeline

+
{% timeline() %}
+[{
+    "title":"Lorem Ipsum Event",
+    "body":"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
+    "date":"Jul-2023"
+},
+{
+    "title":"Lorem Ipsum event 2",
+    "body":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.",
+    "date":"Jun-2022"
+}]
+{% end %}
+
+

Thanks to

+ +

Screenshot

+

Screenshot

+ + +
+ +
+ + + + + + diff --git a/themes/minimal-dark/screenshot.png b/themes/minimal-dark/screenshot.png new file mode 100644 index 000000000..c1bbdf192 Binary files /dev/null and b/themes/minimal-dark/screenshot.png differ diff --git a/themes/nasm-theme/index.html b/themes/nasm-theme/index.html new file mode 100644 index 000000000..84e4383b3 --- /dev/null +++ b/themes/nasm-theme/index.html @@ -0,0 +1,139 @@ + + + + + + + + + nasm-theme | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

nasm-theme

+

Web

+

nasm-theme web

+

Mobile

+

nasm-theme mobile

+

Contents

+
    +
  • nasm-theme +
      +
    • Web
    • +
    • Mobile
    • +
    • Contents
    • +
    • Fonts
    • +
    • Installation
    • +
    • Options +
        +
      • Disqus
      • +
      • Top-menu
      • +
      • Title
      • +
      +
    • +
    • Original
    • +
    +
  • +
+

Fonts

+

Font Awesome for icons
+Nunito Font

+

Installation

+

First download this theme to your themes directory:

+
$ git submodule add git@github.com:lucasnasm/nasm-theme.git themes/nasm-theme
+
+

and then enable it in your config.toml:

+
theme = "nasm-theme"
+
+

This theme requires your index section (content/_index.md) to be paginated to work:

+
paginate_by = 5
+
+

The posts should therefore be in directly under the content folder.

+

The theme requires tags and categories taxonomies to be enabled in your config.toml:

+
taxonomies = [
+    # You can enable/disable RSS
+    {name = "categories", rss = true},
+    {name = "tags", rss = true},
+]
+
+

If you want to paginate taxonomies pages, you will need to overwrite the templates +as it only works for non-paginated taxonomies by default.

+

Options

+

Disqus

+

set a field extra with key of disqus_username:

+
disqus_username = 'username'
+
+

Top-menu

+

Set a field in extra with a key of nasm-theme:
+Font Awesome default icons

+
nasm_menu = [
+    {url = "$BASE_URL", name = "Home", fawesome = "fas fa-home"},
+    {url = "$BASE_URL/categories", name = "Categories", fawesome = "fas fa-folder-open"},
+    {url = "$BASE_URL/tags", name = "Tags", fawesome = "fas fa-tag" },
+    {url = "$BASE_URL/about", name = "About", fawesome = "fas fa-user-alt" },
+
+]
+
+

If you put $BASE_URL in a url, it will automatically be replaced by the actual +site URL.

+

Title

+

The site title is shown on the homepage. As it might be different from the <title> +element that the title field in the config represents, you can set the nasm_theme_title +instead.

+

Original

+

This template is based on the Zola template https://github.com/getzola/after-dark
+Thanks

+ + +
+ +
+ + + + + + diff --git a/themes/nasm-theme/screenshot.png b/themes/nasm-theme/screenshot.png new file mode 100644 index 000000000..2f32073fa Binary files /dev/null and b/themes/nasm-theme/screenshot.png differ diff --git a/themes/neovim-theme/index.html b/themes/neovim-theme/index.html new file mode 100644 index 000000000..1c062a5f0 --- /dev/null +++ b/themes/neovim-theme/index.html @@ -0,0 +1,104 @@ + + + + + + + + + neovim | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Neovim like theme

+

Neovim theme is a neovim like theme for zola.

+

screenshot

+

exemple: https://super-botman.github.io

+

Instalation

+
cd themes
+git clone https://github.com/Super-Botman/neovim-theme.git
+
+

then enable it in your config

+
theme = "neovim-theme"
+
+

Config

+

You can setup the blog name with config file in extra

+
[extra]
+blog_name = "name"
+
+

Customisation

+

JS

+

You can add some custom javascript function with this parameter:

+
[extra]
+custom_script = "<path>.js" 
+
+

then you just add a file static/js/custom_script.js and define your custom functions like this:

+
// add special commands
+function custom_commands(command, args){
+   ...
+}
+
+// add special init routine
+function custom_init(){
+    ...
+}
+
+

CSS

+

And for css

+
[extra]
+custom_css = "<path>.css"
+
+ + +
+ +
+ + + + + + diff --git a/themes/neovim-theme/screenshot.png b/themes/neovim-theme/screenshot.png new file mode 100644 index 000000000..7496d3932 Binary files /dev/null and b/themes/neovim-theme/screenshot.png differ diff --git a/themes/no-style-please/index.html b/themes/no-style-please/index.html new file mode 100644 index 000000000..eacd6dec8 --- /dev/null +++ b/themes/no-style-please/index.html @@ -0,0 +1,151 @@ + + + + + + + + + no style, please! | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

no style, please!

+

A (nearly) no-CSS, fast, minimalist Zola theme. +Ported from from riggraz's no style, please! Jekyll theme, and you can find the demo here

+

screenshot

+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://gitlab.com/4bcx/no-style-please.git
+
+

and then enable it in your config.toml:

+
theme = "no-style-please"
+
+

Options

+

Default taxonomies

+

Special templates for tags, categories, and contexts taxonomies are provided. However, generic templates exist for custom taxonomies.

+

To use taxonomies, in a page metadata add

+
[taxonomies]
+tags = [ 'tag1', 'tag2' ]
+categories = [ 'category A', 'B class' ]
+genre = [ 'rock', 'alternative' ]   # custom taxonomy
+
+

Pages list in homepage

+

To enable listing of pages in homepage add the following in config.toml

+
[extra]
+list_pages = true
+
+

If you do not want the date of the post added next to the title in the list, add the following as well:

+
no_list_date = true
+
+ +

Also in the extra section in config.toml

+
[extra]
+
+header_nav = [
+    { name = "~home", url = "/" },
+    { name = "#tags", url = "/tags" },
+    { name = "+categories", url = "/categories" },
+    { name = "@contexts", url = "/contexts" },
+    { name = "example", url = "http://example.com", new_tab=true },
+]
+footer_nav = [
+    { name = "< previous", url = "#" },
+    { name = "webring", url = "#" },
+    { name = "next >", url = "#" },
+]
+
+

Add TOC to pages

+

In a page frontmatter, set extra.add_toc to true

+
[extra]
+add_toc = true
+
+

Extra data

+
    +
  • author can be set in both main config and in pages metadata
  • +
  • image variable can be used in pages to add an image to HTML <meta> tags
  • +
  • Same for logo in main config, except this one is also used as the site icon
  • +
+

Horizontal rule shortcode hr()

+

Adds the option to insert text in the thematic break

+
{{ hr(data_content="footnotes") }}
+
+

is rendered

+

thematic break screenshot

+

Invertable image iimg()

+

Images are not inverted in darkmode by default. To add an invertable image use the following

+
{{ iimg(src="logo.png", alt="alt text") }}
+
+

In light mode

+

image in light mode

+

In dark mode

+

image in dark mode

+

Disable Twitter card

+

Twitter metatags are generated by default, to disable them set extra.twitter_card to false in in your config.toml

+
[extra]
+twitter_card = true
+
+

TODO

+
    +
  • +Add RTL support
  • +
  • +Write proper test pages
  • +
+

License

+

The theme is available as open source under the terms of the MIT License.

+ + +
+ +
+ + + + + + diff --git a/themes/no-style-please/screenshot.png b/themes/no-style-please/screenshot.png new file mode 100644 index 000000000..7420fa5cc Binary files /dev/null and b/themes/no-style-please/screenshot.png differ diff --git a/themes/ntun/index.html b/themes/ntun/index.html new file mode 100644 index 000000000..32e328b9d --- /dev/null +++ b/themes/ntun/index.html @@ -0,0 +1,109 @@ + + + + + + + + + ntun-zola-theme | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Ntun

+

alt text

+

Live demo : https://netoun.github.io/ntun/

+

Contents

+
    +
  • Installation
  • +
  • Options
  • +
+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://github.com/netoun/ntun.git
+
+

and then enable it in your config.toml:

+
theme = "ntun"
+
+

This theme requires index section in about (content/about/_index.md)

+

The posts should therefore be in directly under the content about folder.

+

Options

+

Set a field in extra with a key of after_dark_menu:

+
[extra]
+author = "Jon Snow"
+author_image="me.jpg"
+city="Winterfell"
+years="281"
+
+job = "King of the north"
+description = "Dragons & Aunt ❤️"
+
+links = [
+    { url = "", title="", icon = "fab fa-github"},
+    { url = "", title="", icon = "fab fa-twitter"},
+    { url = "", title="", icon = "fab fa-linkedin"},
+    { url = "mailto:", title="", icon = "fas fa-envelope"}
+]
+
+# if you add languages, put your emoji flag on array
+languages_flags = [
+    "🇬🇧"
+]
+
+

If you put $BASE_URL in a url, it will automatically be replaced by the actual +site URL.

+ + +
+ +
+ + + + + + diff --git a/themes/ntun/screenshot.png b/themes/ntun/screenshot.png new file mode 100644 index 000000000..094ed81c3 Binary files /dev/null and b/themes/ntun/screenshot.png differ diff --git a/themes/oceanic-zen/index.html b/themes/oceanic-zen/index.html new file mode 100644 index 000000000..e89c32d09 --- /dev/null +++ b/themes/oceanic-zen/index.html @@ -0,0 +1,91 @@ + + + + + + + + + Oceanic Zen | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Oceanic Zen

+

Netlify Status

+

Oceanic Zen is a theme for Zola static site generator

+

Oceanic Zen is a minimalistic theme for personal blog.

+

Screenshot +Screenshot

+

Installation

+

Download theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/barlog-m/oceanic-zen.git
+
+

Or add as git submodule

+
$ git submodule add https://github.com/barlog-m/oceanic-zen.git themes/oceanic-zen
+
+

Enable it in your config.toml:

+
theme = "oceanic-zen"
+
+

Options

+

Theme supported some extra options

+
[extra]
+author = "blog author name"
+github = "github author name"
+twitter = "twitter author name"
+
+

Font Iosevka

+ + +
+ +
+ + + + + + diff --git a/themes/oceanic-zen/screenshot-index.png b/themes/oceanic-zen/screenshot-index.png new file mode 100644 index 000000000..7a14c3fe6 Binary files /dev/null and b/themes/oceanic-zen/screenshot-index.png differ diff --git a/themes/oceanic-zen/screenshot.png b/themes/oceanic-zen/screenshot.png new file mode 100644 index 000000000..430750ffa Binary files /dev/null and b/themes/oceanic-zen/screenshot.png differ diff --git a/themes/otherworld/index.html b/themes/otherworld/index.html new file mode 100644 index 000000000..3a4276eeb --- /dev/null +++ b/themes/otherworld/index.html @@ -0,0 +1,103 @@ + + + + + + + + + otherworld | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

+ +

+

+ otherworld - a zola theme +

+

you can see the demo here

+

how to use

+

prerequisities

+
    +
  1. a linux system. you can use windows for that, but this guide centers itself on linux based systems.
  2. +
  3. you need to have these programs installed: git and zola
  4. +
  5. some creativity, html and scss skills
  6. +
+

steps

+

1. clone the repo

+

(aka download the theme)

+

lets assume that your website's directory name in daftpunk. it will appear in commands a few times, and you should replace it with your website's name.

+
$ git clone git@git.blek.codes:blek/otherworld.git daftpunk
+$ cd daftpunk
+
+

2. open an another terminal

+

in the same directory, run

+
$ zola serve
+
+

3. edit files in the content directory...

+

...as per zola docs

+

how to disable loading

+

go to content/index.md, and in the +++ blocks, set extra.noload to true.

+

like this:

+
+++
+title = "Welcome"
+
+[extra]
+noload = true
++++
+
+ + +
+ +
+ + + + + + diff --git a/themes/otherworld/screenshot.png b/themes/otherworld/screenshot.png new file mode 100644 index 000000000..6654761de Binary files /dev/null and b/themes/otherworld/screenshot.png differ diff --git a/themes/papaya/index.html b/themes/papaya/index.html new file mode 100644 index 000000000..8894b90c6 --- /dev/null +++ b/themes/papaya/index.html @@ -0,0 +1,539 @@ + + + + + + + + + Papaya | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Papaya

+

A clean Zola theme for blogging and projects, forked from Anpu.

+

Preview

+

Demo site: https://justintennant.me/papaya/

+

index light/dark

+

+ Light Projects +        + Dark Projects +

+

+ Light Project +        + Dark Project +

+

Features

+
    +
  • Blog posts
  • +
  • Project pages
  • +
  • Automatic light/dark mode
  • +
  • Categories and tags
  • +
  • Optional multilingual support
  • +
  • Customizable sections and navigation menu links
  • +
  • Featured images for posts/pages
  • +
  • Smart image embedding shortcode ({{ img() }})
  • +
  • GitHub repository star/fork counts
  • +
  • Open Graph Protocol tags
  • +
  • Utterances support
  • +
  • Social/contact links
  • +
  • 100% Google Lighthouse score
  • +
+

Installation

+
    +
  1. +

    Clone this repository to your themes folder:

    +
    git clone https://github.com/justint/papaya.git themes/papaya
    +
    +
  2. +
  3. +

    Set your theme setting in config.toml to papaya:

    +
    theme = "papaya"
    +
    +
  4. +
  5. +

    Copy the following sections and keys (and their contents/values) from papaya's config.toml and paste them into your site's config.toml:

    +
      +
    • [languages] +
        +
      • [languages.en]
      • +
      • [languages.en.translations]
      • +
      +
    • +
    • [extra.cdn] +
        +
      • font_awesome
      • +
      +
    • +
    +
  6. +
  7. +

    In your content directory, add new blog and projects directories. Copy the _index.md file from Papaya's content/blog into your content/blog, and the _index.md and categories.json files from Papaya's content/projects into your content/projects.

    +

    Your content directory structure should look like this:

    +
    content
    +├── blog
    +│  └── _index.md
    +└── projects
    +   └── _index.md
    +   └── categories.json
    +
    +
  8. +
  9. +

    (optional) To enable GitHub repository stars/fork counts (disabled by default to avoid hitting API rate limits), set the $ZOLA_ENV environment variable to prod prior to your zola serve/zola build execution.

    +

    For csh/tsch:

    +
    setenv ZOLA_ENV prod
    +
    +

    For bash/ksh/zsh:

    +
    export ZOLA_ENV=prod
    +
    +
  10. +
+

Customization

+

Here are the customizable features of Papaya:

+
    +
  • Project categories
  • +
  • Light/dark mode
  • +
  • Multilingual support
  • +
  • Sections and navigation menu links
  • +
  • Post/project date formats
  • +
  • Post/project featured images
  • +
  • Open Graph Protocol locale/profile information
  • +
  • Utterances
  • +
  • Social/contact links
  • +
+

Project categories

+

In your content/projects/categories.json, you can specify the categories of projects. The formatting of the file is:

+
{
+   "title": "keyword"
+}
+
+
    +
  • "title": the title text displayed for each category grouping on your projects page.
  • +
  • "keyword": the taxonomy term you'll use in your project pages.
  • +
+

A project can have multiple categories, and will be displayed once in each category configured.

+

Projects without categories will be displayed in the "Other" category listing of your project page. If you don't want the "Other" category displayed, you can copy the templates/projects.html to your own templates directory and delete/comment out the "Other" category code.

+

Example categories.json:

+
{
+  "Software": "software",
+  "Films": "film"
+}
+
+

Example project page front matter:

+
title = "Example software project"
+date = 2021-08-11
+
+[taxonomies]
+categories = ["software"]
+
+

The example project page above would be grouped into & displayed within the "Software" category of your projects page.

+

Light/dark mode

+

The Papaya theme can be set to "light", "dark", or "auto" mode in the config.toml.

+

In "auto", the light and dark modes are implicitly chosen by the prefers-color-scheme CSS media feature. The theme will switch automatically based on the viewer's OS or user agent setting.

+

Multilingual support

+

Currently Zola has basic internationalization (i18n) support, you can read more in zola's Multilingual Sites doc.

+

To write a multilingual site, follow the steps below (English and Chinese in this example):

+
    +
  1. +

    Add a default_language configuration and [languages.zh] and [languages.en] sections to your config.toml:

    +
    default_language = "en"
    +
    +[languages]
    +
    +[languages.en]
    +
    +[languages.zh]
    +title = "中文标题"
    +description = "中文描述"
    +
    +

    Under the [languages.zh] section you can override default configurations like title, description, etc.

    +
  2. +
  3. +

    Add translations of all keywords in [languages.zh.translations] and languages.en.translations] sections (see Papaya's config.toml for a listing of all keywords):

    +
    [languages]
    +
    +[languages.en]
    +
    +[languages.en.translations]
    +projects = "Projects"
    +blog = "Blog"
    +about = "About"
    +recent_projects = "Recent Projects"
    +more_projects = "More Projects"
    +recent_blog_posts = "Recent Blog Posts"
    +more_blog_posts = "More blog posts"
    +...
    +
    +[languages.zh]
    +
    +[languages.zh.translations]
    +projects = "项目"
    +blog = "博文"
    +about = "关于"
    +recent_projects = "近期项目"
    +more_projects = "更多项目"
    +recent_blog_posts = "近期博文"
    +more_blog_posts = "更多博文"
    +...
    +
    +
  4. +
  5. +

    Add a _index.zh.md file into every section.

    +

    For example: add content/blog/_index.zh.md and content/projects/_index.zh.md.

    +
  6. +
  7. +

    Provide a {page-name}.zh.md (or index.zh.md into the page's directory, if it has one) for every page you'd like to translate.

    +

    For example: add content/blog/what-is-zola.zh.md and content/blog/blog-with-image/index.zh.md.

    +
  8. +
  9. +

    Add a content/categories.zh.json file. For example:

    +
    {
    +    "软件": "software",
    +    "电影": "film"
    +}
    +
    +
  10. +
+

Now you will have a website that supports both English and Chinese! Since default_language in config.toml is set to "en", by visiting {base_url} you will see the English version of this blog. You can visit the Chinese version by visiting {base_url}/zh.

+

A page (post or project) can be available in both languages or only in one language, and it's not necessary that a page is available in the default language.

+ +

The navigation menu is constructed from a list of menu_items in your config.toml. For example:

+
[extra]
+
+menu_items = [
+   { name = "projects", url = "$LANG_BASE_URL/projects", show_recent = true, recent_items = 3, recent_trans_key = "recent_projects", more_trans_key = "more_projects" },
+   { name = "blog", url = "$LANG_BASE_URL/blog", show_recent = true, recent_items = 3, recent_trans_key = "recent_blog_posts", more_trans_key = "more_blog_posts" },
+   { name = "tags", url = "$LANG_BASE_URL/tags" },
+   { name = "about", url = "$LANG_BASE_URL/about" },
+]
+
+

A menu_item can be one of two things:

+
    +
  • +

    a link to a section. Section links can be optionally configured to display its most recently authored items on your index page. See Configuring section menu items.

    +
  • +
  • +

    a link to a URL. See Configuring URL menu items

    +
  • +
+

Configuring section menu items

+

A section is created whenever a directory (or subdirectory) in the content section contains an _index.md file; see the Zola docs on sections.

+

Papaya has two sections by default: projects and blog. You can add additional sections or change section names. For example, you can add a section called Diary. In order to add this section, you need to:

+
    +
  1. +

    Create a directory called diary in content/.

    +
  2. +
  3. +

    Create an _index.md inside content/diary/, for example:

    +
    +++
    +title = "Diary"
    +render = true
    +# diary will use blog.html for its template
    +template = "blog.html"
    ++++
    +
    +
  4. +
+

Sections can be added to the navigation menu, and optionally configured to display its most recently authored items on your index page. To add your section to the navigation menu:

+
    +
  1. +

    In your config.toml under the [extra] section, add your section to the menu_items:

    +
    [extra]
    +menu_items = [
    +    ...
    +    { name = "diary", url = "$LANG_BASE_URL/diary" }
    +]
    +
    +
  2. +
  3. +

    In your config.toml under the [languages.<code>.translations] section, add your section name translation keys:

    +
    [languages]
    +
    +[languages.en]
    +
    +[languages.en.translations]
    +diary = "Diary"
    +
    +[languages.zh]
    +
    +[languages.zh.translations]
    +diary = "日记"
    +
    +

    This will add a simple hyperlink to your new Diary section in the navigation menu.

    +
  4. +
+

To also display recently authored items from your Diary section on your index page:

+
    +
  1. +

    Add the following attributes to your menu item:

    +
      +
    • show_recent: Adds the section's recent items listing to your index page.
    • +
    • recent_items: Number of recent items to display.
    • +
    • recent_trans_key: Translation key for the recent items listing title text.
    • +
    • more_trans_key: Translation key for the hyperlink text to the section.
    • +
    +

    For example:

    +
    [extra]
    +menu_items = [
    +    ...
    +    { name = "diary", url = "$LANG_BASE_URL/diary", show_recent = true, recent_items = 3, recent_trans_key = "recent_diary", more_trans_key = "more_diary" }
    +]
    +
    +
  2. +
  3. +

    In your config.toml under the [languages.<code>.translations] section, add your section name, recent_trans_key, and more_trans_key translation keys:

    +
    [languages]
    +
    +[languages.en]
    +
    +[languages.en.translations]
    +diary = "Diary"
    +recent_diary = "Recent Diaries"
    +more_diary = "More Diaries"
    +
    +[languages.zh]
    +
    +[languages.zh.translations]
    +diary = "日记"
    +recent_diary = "近期日记"
    +more_diary = "更多日记"
    +
    +

    This will add both a hyperlink to your new Diary section in the navigation menu, and a listing of the three most recent items from your Diary section on your index page.

    +
  4. +
+

Configuring URL menu items

+

If you want to add a simple link to the navigation menu, add an item with a name and url. For example:

+
[extra]
+sections = [
+    ...
+    { name = "tag", url = "$LANG_BASE_URL/tags" }
+]
+
+

A translation key for your link's name must be added into your config.toml:

+
[languages]
+
+[languages.en]
+
+[languages.en.translations]
+tag = "Tag"
+
+[languages.zh]
+
+[langauges.zh.translations]
+tag = "标签"
+
+

If you include $BASE_URL in the URL of a link it will be replaced with the base URL of your site, and $LANG_BASE_URL will be replaced with the language-specific base URL of your site.

+

Post/project date formats

+

You can have different date formats in different languages. You need to set the date_format value in every langauge's translation section.

+

Example:

+
[languages]
+
+[languages.en]
+
+[languages.en.translations]
+date_format = "%e %B %Y"
+
+[languages.zh]
+
+[languages.zh.translations]
+date_format = "%Y 年 %m 月 %d 日"
+
+

The formatting uses the standard date filter in Tera. The date format options you can use are listed in the chrono crate documentation.

+

Post/project featured images

+

Posts and projects can have featured images which display at the top of their page before the page contents.

+
[extra]
+featured_image = "image.jpg"
+featured_image_alt = "A lodge overlooks a forested mountain range."
+
+

Featured image

+

Featured images can also be extended to the full width of the viewport:

+
[extra]
+featured_image = "image.jpg"
+featured_image_alt = "A lodge overlooks a forested mountain range."
+featured_image_extended = true
+
+

Featured image, extended

+

Open Graph Protocol locale/profile information

+

In your config.toml you can add a [extra.ogp] section to specify your Open Graph Protocol locale and profile information.

+

Open Graph Protocol provides you control over how your website's content should be displayed on social media sites.

+

For the more information on Open Graph Protocol and valid property values, visit the official website.

+

Example:

+
[extra.ogp]
+locale = "en_US"
+first_name = "Papaya"
+last_name = "Tiliqua"
+gender = "female"
+username = "tiliquasp"
+
+

Utterances

+

Utterances is a comments widget built on GitHub issues. When enabled, Papaya can display GitHub issues as comments on your blog posts.

+

To enable:

+
    +
  1. +

    Follow instructions on the utterances website.

    +
  2. +
  3. +

    Once you're at the "Enable Utterances" step, enter the following keys into your config.toml:

    +
    [extra.utterances]
    +enabled = true
    +repo = "yourname/yourrepository" # put your repository's short path here
    +post_map = "pathname"
    +label = "utterances"
    +theme = "preferred-color-scheme"
    +
    +
    +
  4. +
+ +

In your config.toml you can add a [extra.social] section to specify your social network/contact accounts. Changing these will update what links appear on your website's footer.

+

Example:

+
[extra.social]
+email = "papaya@tiliqua.sp"
+github = "papaya"
+linkedin = "papayatiliqua"
+twitter = "papayathehisser"
+
+

If you want to include other custom social websites, you can add them to other:

+

Example:

+
[extra.social]
+other = [
+    { name = "BTC", font_awesome = "fa-brands fa-btc", url = "https://www.bitcoin.com/" }
+]
+
+

The font_awesome attribute specifies the Font Awesome classes; you can find them in Font Awesome. Be aware that different versions of Font Awesome may include different sets of icons; you can change your version of Font Awesome by updating the CDN path in the [extra.cdn] section:

+
[extra]
+
+[extra.cdn]
+font_awesome = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
+
+

Image embedding shortcode

+

Included with Papaya is a shortcode for embedding images into your posts:

+
img(path, alt, caption, class, extended_width_pct, quality)
+
+

You can use ./<image-path> to specify the relative path of image which is relative to current markdown file.

+

Arguments

+
    +
  • +

    path: The path to the image. It can be either:

    +
      +
    • a full path (eg: https://somesite.com/my-image.jpg),
    • +
    • relative to the content directory in the directory structure (eg: @/projects/project-1/my-image.jpg), or
    • +
    • relative to the current markdown file (eg: ./my-image.jpg).
    • +
    +
  • +
  • +

    alt: (optional) The alternate text for the image.

    +
  • +
  • +

    caption: (optional) A caption for the image. Text/HTML/Tera templates supported.

    +
  • +
  • +

    class: (optional) Any CSS classes to assign to the image. Multiple classes should be separated with a space (" ").

    +
  • +
  • +

    quality: (optional) JPEG or WebP quality of the image, in percent. Only used when encoding JPEGs or WebPs; default value is 90.

    +
  • +
  • +

    extended_width_pct: (optional) The percentage by which the image's width should be expanded past it's default figure width, up to maximum configured pixel width.

    +

    Range is 0.0-1.0, or -1 for document width.

    +

    Max pixel width can be defined in your config.toml with the extra.images.max_width property (2500px default).

    +

    See Extended width images section for more details and examples.

    +
  • +
+

The benefits of using this shortcode over regular Markdown/HTML image embedding are:

+
    +
  • Images are automatically resized for best performance, using Zola's image processing functions
  • +
  • Images & captions are ✨pre-styled✨ for you
  • +
  • Images can have their width extended past the document's width (see: Extended width images
  • +
  • Less HTML/CSS boilerplate to write
  • +
+

Extended width images

+

Images embedded into pages using the img shortcode can be configured to extend past their document width. This is especially nice for displaying wide/landscape images at higher resolutions.

+

By default, images embedded with the img shortcode will be inserted as a figure with default margins:

+
{{ img(path="image.jpg", 
+       alt="A very cute leopard gecko.", 
+       caption="A very cute leopard gecko. Default sizing.") }}
+
+

Default sized image

+

With the extended_width_pct argument, we can specify a percentage of how much the image should expand outside its default figure width, up to your maximum configured image width (config.extra.images.max_width, 2500px default).

+

Here's an example with extended_width_pct=0.1:

+
{{ img(path="image.jpg", 
+       alt="A very cute leopard gecko.", 
+       caption="A very cute leopard gecko. extended_width_pct=0.1",
+       extended_width_pct=0.1) }}
+
+

Image extended by 0.1

+

The image is now displayed with a 10% larger width, while maintaining its original aspect ratio.

+

Here's an even wider example:

+
{{ img(path="image.jpg", 
+       alt="A very cute leopard gecko.", 
+       caption="A very cute leopard gecko. extended_width_pct=0.2",
+       extended_width_pct=0.2) }}
+
+

Image extended by 0.2

+

The images will resize in resolution up to your maximum configured image width, and will display on the webpage up to the maximum width of the viewport.

+

You can also force the image width to match the document's width by setting extended_width_pct to -1:

+
{{ img(path="image.jpg", 
+       alt="A very cute leopard gecko.", 
+       caption="A very cute leopard gecko. extended_width_pct=-1",
+       extended_width_pct=-1) }}
+
+

Image fixed to document width

+

Why "Papaya"?

+

🦎

+ + +
+ +
+ + + + + + diff --git a/themes/papaya/screenshot.png b/themes/papaya/screenshot.png new file mode 100644 index 000000000..186850e6c Binary files /dev/null and b/themes/papaya/screenshot.png differ diff --git a/themes/papermod/index.html b/themes/papermod/index.html new file mode 100644 index 000000000..e6984d2b5 --- /dev/null +++ b/themes/papermod/index.html @@ -0,0 +1,128 @@ + + + + + + + + + PaperMod | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola PaperMod

+

+

A work in progress port of the hugo-PaperMod theme by @adityatelange to Zola

+

Due to config changes introduced with Zola 0.19, only Zola 0.19.1 and later are currently supported.

+

Demo @ https://cydave.github.io/zola-theme-papermod/

+

Features

+
    +
  • +Blog post archive
  • +
  • +Blog post RSS feeds
  • +
  • +Tags
  • +
  • +Tag-based RSS feeds
  • +
  • +Optional: Custom taxonomies
  • +
  • +Light / Dark theme switching (with configurable default preference)
  • +
  • +Syntax highlighting for code snippets (Zola's built-in syntax highlighting)
  • +
  • +Custom navigation
  • +
  • +3 Modes: +
      +
    • +Regular Mode
    • +
    • +Home-Info Mode
    • +
    • +Profile Mode
    • +
    +
  • +
  • +Code copy buttons
  • +
  • +Search page
  • +
  • +SEO Metadata
  • +
  • +Language switcher (multi-language support)
  • +
+

Installation

+
    +
  1. Download the Theme
  2. +
+
git submodule add https://github.com/cydave/zola-theme-papermod themes/papermod
+
+
    +
  1. Add theme = "papermod" to your zola config.toml
  2. +
  3. Copy over the example content to get started
  4. +
+
cp -r themes/papermod/content content
+
+

Options

+

Papermod customizations exist under a designated extra.papermod section. +Refer to config.toml for available options.

+

Contributing

+

If you would like to help out porting hugo-Papermod to Zola feel free to pick +up a feature and start working on it. All help, no matter how small the +contribution is highly appreciated.

+ + +
+ +
+ + + + + + diff --git a/themes/papermod/screenshot.png b/themes/papermod/screenshot.png new file mode 100644 index 000000000..8fd1bfb76 Binary files /dev/null and b/themes/papermod/screenshot.png differ diff --git a/themes/particle/index.html b/themes/particle/index.html new file mode 100644 index 000000000..7c0dde997 --- /dev/null +++ b/themes/particle/index.html @@ -0,0 +1,127 @@ + + + + + + + + + particle | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Port for Zola of the Particle Jekyll theme

+

+

This is a simple and minimalist template for Zola designed for developers that want to show of their portfolio.

+

The Theme features:

+
    +
  • Gulp
  • +
  • SASS
  • +
  • Sweet Scroll
  • +
  • Particle.js
  • +
  • BrowserSync
  • +
  • Font Awesome and Devicon icons
  • +
  • Google Analytics
  • +
  • Info Customization
  • +
+

Basic Setup

+
    +
  1. Install Zola
  2. +
  3. Clone the particle theme: git clone https://github.com/svavs/particle-zola.git
  4. +
  5. Edit config.toml to personalize your site.
  6. +
+

Site and User Settings

+

You have to fill some informations on the [extra] section of the config.toml to customize your site.

+
# Site settings
+description = "A blog about lorem ipsum dolor sit amet"
+
+# User settings
+username = "Lorem Ipsum"
+user_description = "Anon Developer at Lorem Ipsum Dolor"
+user_title = "Anon Developer"
+email = "my@email.com"
+twitter_username = "lorem_ipsum"
+github_username = "lorem_ipsum"
+gplus_username = "lorem_ipsum"
+
+

Color and Particle Customization

+
    +
  • Color Customization +
      +
    • Edit the sass variables (_vars.scss)
    • +
    +
  • +
  • Particle Customization +
      +
    • Edit the json data in particle function in app.js
    • +
    • Refer to Particle.js for help
    • +
    +
  • +
+

To customize the project lists and the about sections, you need to edit the templates/content.html template file. +In future versions will be provided a simpler way.

+

Questions

+

Having any issues file a GitHub Issue.

+

License

+

This theme is free and open source software, distributed under the The MIT License. So feel free to use this Jekyll theme anyway you want.

+

Credits

+

This theme was partially designed with the inspiration from these fine folks

+ + + +
+ +
+ + + + + + diff --git a/themes/particle/screenshot.png b/themes/particle/screenshot.png new file mode 100644 index 000000000..db60eef1e Binary files /dev/null and b/themes/particle/screenshot.png differ diff --git a/themes/pico/index.html b/themes/pico/index.html new file mode 100644 index 000000000..2c62932db --- /dev/null +++ b/themes/pico/index.html @@ -0,0 +1,179 @@ + + + + + + + + + pico | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Configuration

+

General

+

I am not the best webmaster, but should be somewhat responsive. +I intentionally using the bigger fonts to make, feel free to change it in main.css

+

Light mode

+

Now light mode also supported.

+

Important

+

Please make sure to set up your base_url with trailing slash:

+
base_url = "https://kuznetsov17.github.io/pico/"
+
+

Comments

+

Theme supports Giscuss for comments. The configuration is done via config.toml. Here you can see the example section used for this page deployment:

+
[extra.giscus]
+data_repo="kuznetsov17/pico"
+data_repo_id="R_kgDOLIfXYA"
+data_category="General"
+data_category_id="DIC_kwDOLIfXYM4Ccn56"
+data_mapping="title"
+data_strict="0"
+data_reactions_enabled="0"
+data_emit_metadata="0"
+data_input_position="top"
+data_theme="//kuznetsov17.github.io/pico/css/gs_dark.css"
+data_lang="en"
+crossorigin="anonymous"
+nonce=""
+
+

Page configurations

+

Customize the page blocks by setting configuration in [extra] section:

+
show_copyright = true / false # enables / disables footer with copyright
+show_comments = true / false # enables / disables comments
+show_shares = true / false # enables / disables section with social share buttons
+show_toc = true / false # enables / disable TOC
+show_date = true / false # displays publication date in page
+
+

Blog

+

I am using this theme for my notes, or probably blog. +The section template supports pagination, tags, sorts the pages by publication date. You may see the working example here

+

Search

+

The theme supports the search using elasticrunrjs. To enable the search, you will need the following configuration in config.toml:

+
build_search_index = true
+
+[search]
+index_format = "elasticlunr_json"
+
+

config.toml extras

+
author = "John Doe" # author. Will be puth in page metadata
+description = "Some description, if you somehow didn't set it in page / section settings"
+logo_src = "images/logo.svg" # logo src
+avatar_src = "images/avatar.png" # avatar src
+index_page="index" # name of the index page. Should be one of top_menu to make things work
+top_menu = ["index","features","notes"] # Menu items
+copyright_string = "Сreated by John Doe in 2024 – %YEAR% for fun." # footer content. %YEAR% will be replaced with current year
+nonce = "${SOME_HASH_VALUE}" # used for JavaScript src nonce
+
+

timeline

+
{% timeline() %}
+[{
+    "title":"Lorem Ipsum Event",
+    "body":"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
+    "date":"Jul-2023"
+},
+{
+    "title":"Lorem Ipsum event 2",
+    "body":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.",
+    "date":"Jun-2022"
+}]
+{% end %}
+
+

Callouts

+
{% callout(type = 'warning') %}
+This is an example of **Warning** callout. [Some link](#)
+{% end %}
+{% callout(type = 'alert') %}
+This is an example of **Alert** callout. [Some link](#)
+{% end %}
+{% callout(type = 'info') %}
+This is an example of **Info** callout. [Some link](#)
+{% end %}
+
+

Mermaid

+

Read more on how to use mermaid in their documentation

+
{% mermaid() %}
+gitGraph
+       commit
+       commit
+       branch develop
+       checkout develop
+       commit
+       commit
+       checkout main
+       merge develop
+       commit
+       commit
+{% end %}
+
+
{% mermaid() %}
+graph LR
+    A[Square Rect] -- Link text --> B((Circle))
+    A --> C(Round Rect)
+    B --> D{Rhombus}
+    C --> D
+{% end %}
+
+

Thanks to

+ +

Screenshot

+

Screenshot

+ + +
+ +
+ + + + + + diff --git a/themes/pico/screenshot.png b/themes/pico/screenshot.png new file mode 100644 index 000000000..b6b30ed7b Binary files /dev/null and b/themes/pico/screenshot.png differ diff --git a/themes/polymathic/index.html b/themes/polymathic/index.html new file mode 100644 index 000000000..8381d274e --- /dev/null +++ b/themes/polymathic/index.html @@ -0,0 +1,110 @@ + + + + + + + + + polymathic | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

polymathic

+

polymathic - Zola portfolio theme for those with many talents | Product Hunt

+

polymathic is a Zola portfolio (and not only) theme.

+

I made it for my own portfolio. The theme is called polymathic, inspired by individuals with a wide range of talents. The theme focuses on rich and consistent navigation experience, exposing the variety of topics to chose from, yet allowing the user to focus on a single thread of your story once they've made a choice.

+

Docs and theme demo are available here main--polymathic-demo.netlify.app

+

Be sure to chek the demo repo and follow zola docs on installing and using a theme

+

This theme uses Bulma scss framework, making the theme styles highly customizable and enabling mobile first theme design.

+

This theme uses Animate.css for animations.

+

This theme adds minimal Open Graph tags to every page head.

+

You can quickly deploy the theme to netlify, theme comes with a config file.

+

Features

+

See all features demonstrated in the docs.

+

Media support

+

The theme is friendly to wide range of screen sizes from mobile to fullhd. Theme comes with minimal styles for print media.

+

Dark mode

+

Theme includes preference based dark mode as separate stylesheet. No switch.

+

Accessibility

+

This theme automatically finds accessible colors when using customizations, with minimal config.

+

This theme supports no script environments.

+

This theme respects user preference for reduced motion.

+ +

This theme builds navigation for your site. The outcome is highly customizable via your config.toml and front-matter of your sections.

+

Templates

+

The theme comes with templates for index.html, page.html, section.html, taxonomy_list.html, taxonomy_single.html, 404.html. You can use them in your Zola project as is or by extending them, templates are divided in blocks and partials/*.html for convenience of extending the theme.

+

Brand and style

+

The theme is highly customizable via config.toml and sass variables. Your customization can start from just the primary color or extend all the way to bulma variables.

+

Shortcodes

+

The theme comes with several shortcodes for building forms, galleries, navigation cards and banners.

+

Install

+

Once you already have zola installed and ran zola init, then run from your project directory

+
$ git init
+$ git submodule add https://github.com/anvlkv/polymathic themes/polymathic
+
+

You will also need npm installed, then run

+
$ npm --prefix themes/polymathic install
+
+

For those using netlify deployments config is available here

+
$ cp themes/polymathic/netlify.toml netlify.toml
+
+

In your config.toml Set zola theme to polymathic

+
theme = "polymathic"
+
+

Contributing

+

Issues or contributions are welcome. Also, curious what you make with it.

+ + +
+ +
+ + + + + + diff --git a/themes/polymathic/screenshot.png b/themes/polymathic/screenshot.png new file mode 100644 index 000000000..2e0fbdf6e Binary files /dev/null and b/themes/polymathic/screenshot.png differ diff --git a/themes/resume/index.html b/themes/resume/index.html new file mode 100644 index 000000000..6e50aa83a --- /dev/null +++ b/themes/resume/index.html @@ -0,0 +1,158 @@ + + + + + + + + + resume | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola Resume

+

Chinese Version

+

Redesigned form hugo resume.

+

Features

+
    +
  • This is basically a single-page website with auto-scrolling based on left-hand nav.
  • +
  • Dedicated project/publications pages allow more detail.
  • +
  • Includes a client-side search at '/search'.
  • +
  • Includes an /admin endpoint that can allow authorized users to use a WYSIWYG editor and commit files back to markdown, but with a Wordpress/CMS like experience.
  • +
+

Quick Start

+
git clone git@github.com:alongwy/zola-resume.git
+cd zola-resume
+zola serve
+# open http://127.0.0.1:1111/
+
+

Installation

+

Just earlier we showed you how to run the theme directly. Now we start to install the theme in an existing site step by step.

+

Step 1: Create a new zola site

+
zola init mysite
+
+

Step 2: Install zola-resume

+

Download this theme to your themes directory:

+
cd mysite/themes
+git clone git@github.com:alongwy/zola-resume.git
+
+

Or install as a submodule:

+
cd mysite
+git init  # if your project is a git repository already, ignore this command
+git submodule add git@github.com:alongwy/zola-resume.git themes/zola-resume
+
+

Step 3: Configuration

+

Enable the theme in your config.toml in the site derectory:

+
theme = "zola-resume"
+
+

Or copy the config.toml.example from the theme directory to your project's root directory:

+
cp themes/zola-resume/config.toml.example config.toml
+
+

For CMS

+
cp themes/zola-resume/static/admin/config.yml static/admin/config.yml
+
+

and change those

+
# static/admin/config.yml
+
+backend:
+  name: github
+  repo: USERNAME/REPO
+  branch: BRANCH
+  cms_label_prefix: netlify-cms/
+  site_domain: DOMAIN.netlify.com
+
+

Step 4: Add new content

+

You can copy the content from the theme directory to your project:

+
cp -r themes/zola-resume/data .
+cp -r themes/zola-resume/content .
+
+

You can modify or add new posts in the content/blog, content/projects or other content directories as needed.

+

Step 5: Run the project

+

Just run zola serve in the root path of the project:

+
zola serve
+
+

This will start the Zola development web server accessible by default at http://127.0.0.1:1111. Saved changes will live reload in the browser.

+

Examples

+

screenshot

+

See along's site for a live example.

+

Setup & Use

+

This theme uses a combination of custom sections and some data files to drive content.

+

Summary

+

Edit the main contents/_index.md with a brief bio/summary

+

Data files

+

Data files are used for simple content presented on the homepage.

+ +

Projects/Opensource

+

The difference indicates your role as originator or colaborator.

+

Publications

+

Similar to projects, create them under publications. Include any papers, speaking engagements, articles, etc.

+

Blog / Posts

+

Similar to posts, create them under blog. Include any thoughts, musiings, etc. +This template does not support a posts folder

+

Template params

+

Almost All personal information outside the above details is captured by extra in config.toml, or can be edited in the "Settings" collection if using CMS.

+

CMS Editor with Netlify CMS

+

Does not require deployment to Netlify!

+

Netlify CMS is an open source project that enables CMS like experience for static site generation tools like Hugo. This theme includes a fully working integration and guide in static/admin

+

Credits

+

This project ports the Hugo Resume theme by Feng Yunlong to support zola.

+ + +
+ +
+ + + + + + diff --git a/themes/resume/screenshot.png b/themes/resume/screenshot.png new file mode 100644 index 000000000..130e74dad Binary files /dev/null and b/themes/resume/screenshot.png differ diff --git a/themes/sam/index.html b/themes/sam/index.html new file mode 100644 index 000000000..d77238756 --- /dev/null +++ b/themes/sam/index.html @@ -0,0 +1,159 @@ + + + + + + + + + sam | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Build Status +Demo

+

Sam

+
+

A Simple and Minimalist theme with a focus on typography and content.

+

Zola port of hugo-theme-sam.

+
+

Screenshot

+

Original

+

This is a port of the original hugo-theme-sam theme for Hugo (License).

+

See upstream for source code take from there.

+

Installation

+

The easiest way to install this theme is to either clone it ...

+
git clone https://github.com/janbaudisch/zola-sam.git themes/sam
+
+

... or to use it as a submodule.

+
git submodule add https://github.com/janbaudisch/zola-sam.git themes/sam
+
+

Either way, you will have to enable the theme in your config.toml.

+
theme = "sam"
+
+

Taxonomies

+

Sam supports the tags and authors taxonomies.

+

To use them, declare them in your config.toml:

+
taxonomies = [
+    { name = "tags", rss = true },
+    { name = "authors", rss = true }
+]
+
+

Set them in your page's frontmatter:

+
[taxonomies]
+tags = ["some", "tag"]
+authors = ["Alice", "Sam"]
+
+

See Zola's documentation for more details.

+

Options

+

See config.toml for an example configuration.

+ +

The menu on the index page is created as follows: If the sam_menu variable is set, it gets used.

+
[extra]
+sam_menu = [
+    { text = "posts", link = "/posts" },
+    { text = "about", link = "/about" },
+    { text = "github", link = "https://github.com" }
+]
+
+

If it is not set, all sections under content will get linked.

+

Bottom menu

+

This variable decides wether the menu - as mentioned above - will also be displayed at the bottom of pages.

+

Default: false

+
[extra]
+sam_bottom_menu = true
+
+

home

+

Sets the name for all links referring to the home page in the menus and the 404 page.

+

Default: home

+
[extra]
+home = "home"
+
+

Date format

+

Specifies how to display dates. The format is described here.

+

Default: %a %b %e, %Y

+
[extra]
+date_format = "%a %b %e, %Y"
+
+

Word count and reading time

+

You can enable or disable word count and reading time for posts across the whole site:

+

Default: true (both)

+
[extra]
+show_word_count = true
+show_reading_time = true
+
+

If enabled, you can opt-out per page via front-matter:

+

Default: false (both)

+
+++
+[extra]
+hide_word_count = true
+hide_reading_time = true
++++
+
+

Disable page header

+

If you want to disable the complete header of a page (for example a page which is explicitly not a post), you can do so via front-matter:

+

Default: false

+
+++
+[extra]
+no_header = true
++++
+
+ +

To place some text at the end of pages, set the following:

+
[extra.sam_footer]
+text = "Some footer text."
+
+ + +
+ +
+ + + + + + diff --git a/themes/sam/screenshot.png b/themes/sam/screenshot.png new file mode 100644 index 000000000..81e8c683f Binary files /dev/null and b/themes/sam/screenshot.png differ diff --git a/themes/seagull/index.html b/themes/seagull/index.html new file mode 100644 index 000000000..fce471f30 --- /dev/null +++ b/themes/seagull/index.html @@ -0,0 +1,91 @@ + + + + + + + + + Seagull | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Seagull

+

A Zola theme.

+

gull

+

Installation

+

Add the theme as a git submodule

+
git submodule add --name seagull https://git.42l.fr/HugoTrentesaux/seagull.git themes/seagull
+
+

Enable the theme in your config.toml

+
theme = "seagull"
+
+

Add a _variables.sass file in a sass folder

+
mkdir sass
+touch sass/_variables.sass
+
+

Add a _index.md file in your content folder.

+

Features

+

Features can be seen on the demo website: https://seagull.coinduf.eu/.

+

You can customize the theme with the /sass/_variables.sass file.

+

Support

+

I'll provide support on demand on Zola forum if you tag @HugoTrentesaux

+

Build website

+

Because of the hack used to allow theme customization, before building seagull website itself, you need to create an empty file

+
mkdir ../../sass
+touch ../../sass/_variables.sass
+
+ + +
+ +
+ + + + + + diff --git a/themes/seagull/screenshot.png b/themes/seagull/screenshot.png new file mode 100644 index 000000000..d81c503cb Binary files /dev/null and b/themes/seagull/screenshot.png differ diff --git a/themes/seje2/index.html b/themes/seje2/index.html new file mode 100644 index 000000000..ba01c26c8 --- /dev/null +++ b/themes/seje2/index.html @@ -0,0 +1,106 @@ + + + + + + + + + Seje2 | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Seje2

+

screenshot

+

Demo +中文 README

+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://github.com/eatradish/Seje2
+
+

and then enable it in your config.toml:

+
theme = "Seje2"
+
+

This theme requires your index section (content/_index.md) to be paginated to work:

+
paginate_by = 5
+
+

The posts should therefore be in directly under the content folder.

+

and requires your index section (about/_index.md) to be paginated to work:

+
title = "..."
+
+[extra]
+year = 2019
+month = 11
+day = 3
+
+

Options

+

Top-menu

+

Set a field in extra with a key of seje2_menu_links:

+
seje2_menu_links = [
+    {url = "$BASE_URL", name = "Home"},
+    {url = "$BASE_URL/categories", name = "Categories"},
+    {url = "$BASE_URL/tags", name = "Tags"},
+    {url = "https://google.com", name = "Google"},
+]
+
+

If you put $BASE_URL in a url, it will automatically be replaced by the actual +site URL.

+

License

+

Set a field in extra with a key of license:

+
license = "@ 宇宙眼睛人"
+
+ + +
+ +
+ + + + + + diff --git a/themes/seje2/screenshot.png b/themes/seje2/screenshot.png new file mode 100644 index 000000000..acf2aefcf Binary files /dev/null and b/themes/seje2/screenshot.png differ diff --git a/themes/serene/index.html b/themes/serene/index.html new file mode 100644 index 000000000..f6234b98f --- /dev/null +++ b/themes/serene/index.html @@ -0,0 +1,92 @@ + + + + + + + + + serene | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+ screenshot +
+
+

A blog theme for zola, simple and clean

+

Demo

+ +

Features

+
    +
  • A spiffy design, well crafted
  • +
  • Projects page
  • +
  • Dark mode
  • +
  • Image zooming
  • +
  • Out-of-date alert
  • +
  • Sticky table-of-contents
  • +
  • Callout (note, warning, alert, etc.)
  • +
  • Comments using Giscus
  • +
  • Mathematical notations using KaTeX or Typst
  • +
  • Diagrams and visualizations using Mermaid
  • +
+

Usage

+ + + +
+ +
+ + + + + + diff --git a/themes/serene/screenshot.png b/themes/serene/screenshot.png new file mode 100644 index 000000000..2edce87da Binary files /dev/null and b/themes/serene/screenshot.png differ diff --git a/themes/shadharon/index.html b/themes/shadharon/index.html new file mode 100644 index 000000000..7fd6e9f45 --- /dev/null +++ b/themes/shadharon/index.html @@ -0,0 +1,134 @@ + + + + + + + + + shadharon | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Shadharon

+

Simple blog theme powered by Zola. See a live preview here.

+
+

Name derived from the Bengali Word - সাধারণ which translates to "generic"

+
+
+ Dark theme +

blog-dark

+
+
+ Light theme +

light-dark

+
+

Features

+
    +
  • +Themes (light, dark). Default theme is dark with a switcher in the navbar
  • +
  • +Projects page
  • +
  • +Social Links
  • +
  • +Tags
  • +
+

Installation

+
    +
  1. +

    Initialize Git Repo if not initialized

    +
  2. +
  3. +

    Download the theme

    +
  4. +
+
git submodule add https://github.com/syedzayyan/shadharon themes/shadharon
+
+
    +
  1. +

    Add theme = "shadharon" to your config.toml

    +
  2. +
  3. +

    Copy the example content

    +
  4. +
+
cp -R themes/shadharon/content/. content
+
+

Customization

+
    +
  1. +

    For customization refer to config.toml files, which has comments.

    +
  2. +
  3. +

    For customizing the banner on the homepage the content/posts/_index.md needs modification. The desc variable under extra, specifically. You could delete this as well to remove banner. For an about page or any aditional page an .md file in the "content" directory will do.

    +
  4. +
+

You can add stylesheets to override the theme:

+
[extra]
+stylesheets = [
+    "override.css",
+]
+
+

These filenames are relative to the root of the site. In this example, the two CSS files would be in the static folder.

+

References

+

This theme takes inspiration from

+ + + +
+ +
+ + + + + + diff --git a/themes/shadharon/screenshot.png b/themes/shadharon/screenshot.png new file mode 100644 index 000000000..5784057e6 Binary files /dev/null and b/themes/shadharon/screenshot.png differ diff --git a/themes/simple-dev-blog/index.html b/themes/simple-dev-blog/index.html new file mode 100644 index 000000000..7ca27872f --- /dev/null +++ b/themes/simple-dev-blog/index.html @@ -0,0 +1,128 @@ + + + + + + + + + simple-dev-blog | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

preview image

+

simple-dev-blog-zola-starter

+

A simple dev-blog theme for Zola. It uses no JavaScript, prerenders links between navigation, blog posts and tags and adds common tags for SEO.

+

You can view it live here.

+

How to get started

+

To create a new Zola site, first download the CLI and install it on your system. This theme requires Zola version 0.14 or greater.

+

You can find installation instructions on the Zola website.

+
    +
  1. +

    After you've installed the Zola CLI, run the following command to create a new site:

    +
    zola init my_amazing_site
    +cd my_amazing_site
    +
    +
  2. +
  3. +

    After you've created the site, install the "Simple Dev Blog" theme like so:

    +
    git clone --depth=1 \
    +  https://github.com/bennetthardwick/simple-dev-blog-zola-starter \
    +  themes/simple-dev-blog
    +
    +
  4. +
  5. +

    Now in your config.toml file, choose the theme by setting theme = "simple-dev-blog".

    +
  6. +
  7. +

    This theme uses the tags taxonomy, in your config.toml file set taxonomies = [ { name = "tags" } ]

    +
  8. +
  9. +

    Copy across the default content from the theme by running cp themes/simple-dev-blog/content/* ./content -r

    +
  10. +
  11. +

    That's it! Now build your site by running the following command, and navigate to 127.0.0.1:111:

    +
    zola serve
    +
    +
  12. +
+

You should now have a speedy simple dev blog up and running, have fun!

+

Customisation

+

Look at the config.toml and theme.toml in this repo for an idea, here's a list of all the options:

+

Global

+

The following options should be under the [extra] in config.toml

+
    +
  • accent_light - a lighter shade of your site's accent color
  • +
  • accent - your site's accent color
  • +
  • blog_path - the path to your blog (defaults to blog)
  • +
  • default_og_image - the path default og:image for your page
  • +
  • footer_about - the content for your footer in markdown
  • +
  • icon - the path to the icon for your site in the content folder +
      +
    • E.g to add the file icon.png you should put it in content/icon.png
    • +
    +
  • +
  • nav - see theme.toml, the navigation links for your site
  • +
  • not_found_message - the content for your 404 page in markdown
  • +
  • profile_large - the path to a larger vertical version of your profile picture in the content folder
  • +
  • profile_small - the path to a small version of your profile picture in the content folder
  • +
+

Page

+

The following options should be under the [extra] section of each page

+
    +
  • thumbnail - the path to your og:image for that page
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/simple-dev-blog/screenshot.png b/themes/simple-dev-blog/screenshot.png new file mode 100644 index 000000000..c5ecdfab9 Binary files /dev/null and b/themes/simple-dev-blog/screenshot.png differ diff --git a/themes/slim/index.html b/themes/slim/index.html new file mode 100644 index 000000000..14fcd9a8a --- /dev/null +++ b/themes/slim/index.html @@ -0,0 +1,99 @@ + + + + + + + + + Slim | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Slim

+

Slim is a minimal, clean and beautiful theme for Zola.

+

This theme was ported to Zola, the original is available at zhe/hugo-theme-slim. It is excellent, thank you zhe!

+

Slim screenshot

+

Demo.

+

Installation

+
cd themes
+git clone https://github.com/jameshclrk/zola-slim slim
+
+

See the official docs for more information.

+

Configuration

+

Slim supports a tags taxonomy by default. This can be enabled by setting it in your config.toml:

+
taxonomies = [
+    {name = "tags", paginate_by = 5, rss = true}
+]
+
+

There are a couple of extra options supported:

+
[extra]
+# Show a summary of a post in a list
+slim_summary = false
+# Show the content of a post in a list
+slim_content = false
+# Links to show at the top of the menu
+slim_menu = [
+    {url = "$BASE_URL/tags", name = "Tags"}
+]
+# Links to show at the bottom of the menu
+slim_social = [
+    {url = "https://github.com/jameshclrk", name = "Github"}
+]
+
+

License

+

Open sourced under MIT license.

+ + +
+ +
+ + + + + + diff --git a/themes/slim/screenshot.png b/themes/slim/screenshot.png new file mode 100644 index 000000000..5c5c85220 Binary files /dev/null and b/themes/slim/screenshot.png differ diff --git a/themes/soapstone/index.html b/themes/soapstone/index.html new file mode 100644 index 000000000..268bbfea7 --- /dev/null +++ b/themes/soapstone/index.html @@ -0,0 +1,84 @@ + + + + + + + + + Soapstone | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Soapstone

+

A divless dark theme for zola. See it in action.

+

sample

+

See installation for installation directions.

+

Extra config

+

The following config is optional, but can add a few niceties.

+
[extra]
+list_header = "Hello World" # title of the main page
+favicon_href = "http://example.com" # link to favicon
+gravatar_img_src = "https://0.gravatar.com/avatar/abc123?s=60" # adds gravatar image in footer
+gravatar_href = "https://example.com" # link for gravatar image
+github_link = "https://github.com/JohnDoe" # adds a github link in footer
+about_link = "https://example.com" # adds an about link in footer
+signature_img_src = "/example.png" # adds an image to bottom of article
+signature_text = "Signing off!" # adds signature text to bottom of articles
+ga_code = "UA-1234" # adds google analytics code
+theme_color = "#000" # for meta browser theme only
+
+ + +
+ +
+ + + + + + diff --git a/themes/soapstone/screenshot.png b/themes/soapstone/screenshot.png new file mode 100644 index 000000000..936ab06c4 Binary files /dev/null and b/themes/soapstone/screenshot.png differ diff --git a/themes/solar-theme-zola/index.html b/themes/solar-theme-zola/index.html new file mode 100644 index 000000000..6243f2f23 --- /dev/null +++ b/themes/solar-theme-zola/index.html @@ -0,0 +1,94 @@ + + + + + + + + + solar-theme-zola | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Solar Theme for Zola

+

Port of Solar theme for Hugo to Zola.

+

screenshot

+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/hulufei/solar-theme-zola.git
+
+

and then enable it in your config.toml:

+
theme = "solar-theme-zola"
+
+

Add title and description:

+
title = "Your Blog Title"
+description = "Your blog description"
+
+

Options

+

Color schemes

+

Set color scheme to (Solarized) dark or (Solarized) light with highlight_theme option:

+
highlight_theme = "solarized-dark"
+
+ +

Set a field in extra with a key of site_menus:

+
site_menus = [
+  { url = "https://github.com/hulufei/solar-theme-zola", name = "Repository" },
+  { url = "rss.xml", name = "RSS" },
+]
+
+

Each link needs to have a url and a name.

+ + +
+ +
+ + + + + + diff --git a/themes/solar-theme-zola/screenshot.png b/themes/solar-theme-zola/screenshot.png new file mode 100644 index 000000000..05186b54f Binary files /dev/null and b/themes/solar-theme-zola/screenshot.png differ diff --git a/themes/tabi/index.html b/themes/tabi/index.html new file mode 100644 index 000000000..6d0786f8f --- /dev/null +++ b/themes/tabi/index.html @@ -0,0 +1,252 @@ + + + + + + + + + tabi | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

+ + PRs welcome + + Contributors + + Forks + + Last commit +
+ + Latest release + + Documentation + + License + + Clean commits +

+

tabi

+

A fast, lightweight, and modern Zola theme with multi-language support. It aims to be a personal page and home to blog posts.

+

See a live preview (and the theme's documentation) here.

+

Explore the Sites Using tabi section to see real-world applications.

+
+

tabi (旅, /tɐˈbi/): Journey.

+
+

tabi

+

tabi has a perfect score on Google's Lighthouse audit:

+

lighthouse

+

Features

+ +

Installation

+

To add tabi to you existing Zola site:

+
    +
  1. Initialize a Git repository in your project directory (if you haven't already):
  2. +
+
git init
+
+
    +
  1. Add the theme as a git submodule:
  2. +
+
git submodule add https://github.com/welpo/tabi.git themes/tabi
+
+

Or clone the theme into your themes directory:

+
git clone https://github.com/welpo/tabi.git themes/tabi
+
+

Required configuration

+
    +
  1. Enable the theme in your config.toml:
  2. +
+
theme = "tabi"
+
+
    +
  1. Set a title in your config.toml:
  2. +
+
title = "Your Site Title"
+
+
    +
  1. Configure code block highlighting in your config.toml:
  2. +
+
[markdown]
+highlight_code = true
+highlight_theme = "css"
+
+
    +
  1. Create a content/_index.md file with the following content:
  2. +
+
+++
+title = "Home"
+paginate_by = 5 # Set the number of posts per page
+template = "index.html"
++++
+
+

If you want to serve your blog posts from a different path, such as blog/, add a section_path in the [extra] section of content/_index.md (this file will need pagination):

+
[extra]
+section_path = "blog/_index.md"
+
+

Note: use the full path to the section's _index.md file. Simply using section_path = "blog/" will not work.

+
    +
  1. If you want an introduction section (see screenshot above), add these lines to content/_index.md:
  2. +
+
[extra]
+header = {title = "Hello! I'm tabi~", img = "img/main.webp", img_alt = "Your Name" }
+
+

The content outside the front matter will be rendered between the header title and the posts listing. In the screenshot above, it's the text that reads "tabi is a fast, lightweight, and modern Zola theme…".

+
    +
  1. If you want a multilingual site, you will need to set up each language. In config.toml, set the title and taxonomies for each language, like:
  2. +
+
[languages.es]
+title = "~/tabi"
+taxonomies = [{name = "tags", feed = true}]
+
+

You will need an _index.{language_code}.md per language for each section (e.g. /blog or /projects) that you want to enable in that language.

+

The same is true for individual posts, which should have the exact same name as the default language, with an extra .{code} before the extension (e.g. the Spanish version of security.md would be security.es.md).

+

This configuration allows the language switcher to take the user to the translation of the current URL. If a translation doesn't exist, the 404 page will be displayed, with an explanation in each language set in the config.

+

To learn more about multilingual support, see the Frequently Asked Questions.

+

Updating tabi

+

If you added the theme as a git submodule, run:

+
git submodule update --remote themes/tabi
+
+

If you cloned it:

+
cd themes/tabi
+git pull
+
+

Sites using tabi

+ + + + + + + +
WebsiteCreatorDescriptionSite Source
osc.gardenÓscar Fernández (welpo)Data science, psychology, and ZolaSource
sandip.liveSandip G (sandman)Startups, tech and the good lifeSource
seadve.github.ioDave Patrick Caberto (SeaDve)Personal blog and portfolio with custom CSSSource
mikufan.pageNadiaPersonal blogSource
tim-boettcher.onlineTim BöttcherInsights and ramblings of a deafblind programmerSource
www.richtman.auAriel RichtmanPersonal tech blogSource
+

Using tabi? Feel free to create a PR and add your site to this list.

+

Inspiration

+

This theme was inspired by:

+ +

Contributing

+

Please do! We appreciate bug reports, improvements to translations or documentation (however minor), feature requests…

+

Take a look at the Contributing Guidelines to learn more.

+

License

+

The code is available under the MIT license.

+ + +
+ +
+ + + + + + diff --git a/themes/tabi/screenshot.png b/themes/tabi/screenshot.png new file mode 100644 index 000000000..43e06e53c Binary files /dev/null and b/themes/tabi/screenshot.png differ diff --git a/themes/tale-zola/index.html b/themes/tale-zola/index.html new file mode 100644 index 000000000..f0e5f56ca --- /dev/null +++ b/themes/tale-zola/index.html @@ -0,0 +1,249 @@ + + + + + + + + + tale-zola | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Tale-Zola Theme

+

Tala-Zola is a minimal Zola theme helping you to +build a light and seo-ready blog, and you can customise any information of the +blog without having to modify the codes of the template. Tala-Zola is a port of +the Jekyll theme Tale.

+

Demo

+

Live Preview.

+

Requirements

+

Before using the theme, you need to install the Zola ≥ 0.13.0.

+

Quick Start

+
git clone git@github.com:aaranxu/tale-zola.git
+cd tale-zola
+zola serve
+# open http://127.0.0.1:1111/ in the browser
+
+

Installation

+

Just earlier we showed you how to run the theme directly. Now we start to +install the theme in an existing site step by step.

+

Step 1: Create a new zola site

+
zola init blog
+
+

Step 2: Install Tale-Zola

+

Download this theme to your themes directory:

+
cd blog/themes
+git clone git@github.com:aaranxu/tale-zola.git
+
+

Or install as a submodule:

+
cd blog
+git init  # if your project is a git repository already, ignore this command
+git submodule add git@github.com:aaranxu/tale-zola.git themes/tale-zola
+
+

Step 3: Configuration

+

Enable the theme in your config.toml in the site derectory:

+
theme = "tale-zola"
+
+

Or copy the config.toml.example from the theme directory to your project's +root directory:

+
cp themes/tale-zola/config.toml.example config.toml
+
+

Step 4: Add new content

+

Add an _index.md file to your content directory with some lines as bellows.

+
+++
+sort_by = "date"
+paginate_by = 5
++++
+
+

Add a blog article file with a filename first-post.md (or other filenames) and +input some content in it.

+
+++
+title = "First Post"
+date = 2021-05-01T18:18:18+00:00
+
+[taxonomies]
+tags = ["Post"]
+
+[extra]
+author = "Your Name"
++++
+
+This is my first post.
+
+

Or you can just copy the content from the theme directory to your project:

+
cp -r themes/tale-zola/content .
+
+

Step 5: Run the project

+

Just run zola serve in the root path of the project:

+
zola serve
+
+

Tale-Zola will start the Zola development web server accessible by default at +http://127.0.0.1:1111. Saved changes will live reload in the browser.

+

Customisation

+

You can customize your configurations, templates and content for yourself. Look +at the config.toml, theme.toml and templates files in this repo for an idea.

+

In most cases you only need to modify the content in the config.toml file to +custom your blog, including different expressions in your speaking language.

+

Necessary Configurations

+

Add some information for your blog.

+
title = "You Blog Title"
+description = "The description of your blog."
+
+

Set the tags for the site.

+
taxonomies = [
+  {name = "tags"},
+]
+
+

Add menus and footer information for your blog.

+
# Menu items
+[[extra.menu]]
+name = "Posts"
+url = "/"
+
+[[extra.menu]]
+name = "Tags"
+url = "tags"
+
+[[extra.menu]]
+name = "About"
+url = "about"
+
+[extra.footer]
+start_year = "2020"  # start year of the site
+end_year = "2021"    # end year of the site
+info = "The information on the footer."
+
+

Option Configurations

+

Add your name as the author name for the blog globally.

+
[extra]
+author = "Your Name"
+
+

Use Google Analytics. Add your own Google Analytics ID.

+
[extra]
+google_analytics = "UA—XXXXXXXX-X"
+
+

Whether to use Disqus globally and set to your disqus id name. +And you can enable the disqus on per post page with extra.disqus option

+
[extra]
+disqus = false
+disqus_id = ""
+
+

Code syntax highlighting. See also syntax highlighting.

+
[markdown]
+highlight_code = true
+highlight_theme = "base16-ocean-light"
+
+

Use KaTeX to support the math notation

+
[extra]
+katex = true
+
+
+

Note: You can also add the katex option on per mardown file of the page or section.

+
+

Set date format in the site

+
[extra]
+timeformat = "%B %e, %Y" # e.g. June 14, 2021, and this is the default format
+
+

SEO settings, like Open Graph + Twitter Cards

+
[extra.seo]
+# this image will be used as fallback if a page has no image of its own
+image = "tale.png"
+image_height = 50
+image_width = 50
+og_locale = "en_US"
+
+  [extra.seo.twitter]
+  site = "twitter_accout"
+  creator = "twitter_accout"
+
+  [extra.seo.facebook]
+  admins = "facebook_accout"
+  publisher = "facebook_accout"
+
+

Change the words in your speaking language.

+
[extra.expressions]
+home = "Home"              # The homepage's name
+pinned = "Pinned"          # On the header of the post list
+written_by = "Written by"  # Like: Written by Aaran Xu
+on = "on"                  # Like: on May 3, 2021
+top = "Top"                # Go to the top of the page in the post
+tags = "Tags"              # In the page of Tags
+
+# disqus comments block
+disqus_discussion = "Discussion and feedback"
+
+# The contents of the 404 page
+p404 = "404: Page not found"
+p404_info = "Oops! We can't seem to find the page you are looking for."
+p404_back_home_start = "Let's"
+p404_back_home_with_link = "head back home"
+p404_back_home_end = "."
+
+

Custom CSS styles

+

Just add your own styles to sass/_custom.scss file.

+

Reporting Issues

+

We use GitHub Issues as the official bug tracker for the Tale-Zola. Please +search existing issues. It’s +possible someone has already reported the same problem.

+

If your problem or idea is not addressed yet, open a new issue.

+

Contributing

+

We'd love your help! Please see CONTRIBUTING.md to learn +about the kinds of contributions we're looking for.

+

License

+

Tale-Zola is distributed under the terms of the +MIT license.

+ + +
+ +
+ + + + + + diff --git a/themes/tale-zola/screenshot.png b/themes/tale-zola/screenshot.png new file mode 100644 index 000000000..184606fa7 Binary files /dev/null and b/themes/tale-zola/screenshot.png differ diff --git a/themes/tilde/index.html b/themes/tilde/index.html new file mode 100644 index 000000000..00c353e94 --- /dev/null +++ b/themes/tilde/index.html @@ -0,0 +1,93 @@ + + + + + + + + + tilde | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

tilde

+

Lightweight and minimal blog theme for the Zola +static site generator.

+

Live demo is available here: +https://savoy.srht.site/blog-demo

+

+

+

Installation

+

Theme documentation

+

Clone this repository into your site's themes directory or add it as a +submodule:

+
# Clone into themes
+$ git clone https://git.sr.ht/~savoy/tilde themes/tilde
+# Add as a submodule
+$ git submodule add https://git.sr.ht/~savoy/tilde themes/tilde
+
+

Configuration

+

This theme offers the following config options:

+
[extra]
+
+homepage = "" # author homepage
+subtitle = "" # blog subtitle
+git_source = "" # blog source code
+author = "" # author name
+email = "" # author email
+license = "" # blog license
+
+ + +
+ +
+ + + + + + diff --git a/themes/tilde/screenshot.png b/themes/tilde/screenshot.png new file mode 100644 index 000000000..88dccc545 Binary files /dev/null and b/themes/tilde/screenshot.png differ diff --git a/themes/toucan/index.html b/themes/toucan/index.html new file mode 100644 index 000000000..fb0386a17 --- /dev/null +++ b/themes/toucan/index.html @@ -0,0 +1,88 @@ + + + + + + + + + Toucan | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Toucan

+

A light theme for Zola adapted from Pelican.

+

screenshot

+

Installation

+

You can add the theme as a submodule :

+
git submodule add --name toucan https://git.42l.fr/HugoTrentesaux/toucan.git themes/toucan
+
+

and enable the theme in your config.toml

+
theme = "toucan"
+
+

Usage

+

Categories will be added to the menu, and all articles from categories with

+
transparent = true
+
+

will be listed in the home page.

+

You can personalize the following options :

+
[extra]
+title = "Toucan theme"
+title_pic = "/favicon.ico"
+description = "Theme for Zola inspired from Pelican website theme"
+license = """Content under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a> Licence"""
+
+ + +
+ +
+ + + + + + diff --git a/themes/toucan/screenshot.png b/themes/toucan/screenshot.png new file mode 100644 index 000000000..87287b0fb Binary files /dev/null and b/themes/toucan/screenshot.png differ diff --git a/themes/tranquil/index.html b/themes/tranquil/index.html new file mode 100644 index 000000000..d008326d2 --- /dev/null +++ b/themes/tranquil/index.html @@ -0,0 +1,102 @@ + + + + + + + + + tranquil | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

A screenshot (dark theme) of the example page of the demo website +A screenshot (light theme) of the example page of the demo website +
+A blog theme for Zola. Simple, elegant and uses Tailwind. Based on Isunjns Serene theme.

+

Demo

+ +

Features

+
    +
  • A simple and elegant design.
  • +
  • Projects page: display a list of the projects you have worked on with links.
  • +
  • Theme toggle: switch between light and dark theme regardless of your browser preference.
  • +
  • Image zooming using Lightense: zoom in on images by clicking on them.
  • +
  • Out-of-date alert: show alerts when your post is outdated.
  • +
  • Callouts (note, warning, alert, etc.) that can be used right in Markdown.
  • +
  • Comments using Giscus.
  • +
  • Mathematical notations using KaTeX.
  • +
  • Diagrams and visualizations using Mermaid.
  • +
+

Shoutouts

+

This theme wouldn't have existed without Isunjns Serene theme. It's a great theme, so go check that one out as well.

+

When I doubted about layout, I always went to look at FasterThanLimes blog to see how he did it.

+

Of course, this website wouldn't render without Zola and it wouldn't show anything without Tailwind.

+

Tranquil vs Serene

+

Tranquil is a fork of Serene. The main reason to fork was not that I thought Serene was bad: I just wanted to try out Tailwind for a while and reimplementing a blog theme seemed like the perfect way to do so.

+

The main and pretty much only difference between Tranquil and Serene is that the styling is built from scratch with Tailwind. The icons have also been changed to align better with Tailwind.

+

Usage

+ +

Contributing

+
    +
  • Before you make any non-trivial changes, consider opening an issue so we can discuss the change.
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/tranquil/screenshot.png b/themes/tranquil/screenshot.png new file mode 100644 index 000000000..ba4e4d83b Binary files /dev/null and b/themes/tranquil/screenshot.png differ diff --git a/themes/zallery/index.html b/themes/zallery/index.html new file mode 100644 index 000000000..8063b14ba --- /dev/null +++ b/themes/zallery/index.html @@ -0,0 +1,213 @@ + + + + + + + + + zallery | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zallery theme for Zola

+

Gallery and portfolio theme for Zola.

+

Demo Site: gamingrobot.github.io/zallery-demo
+Personal Portfolio: gamingrobot.art

+

Screenshots

+ + +
Light modeDark mode
light modedark mode
+

Features

+
    +
  • Dark and Light mode
  • +
  • Auto creation of mobile friendly images
  • +
  • Auto creation of thumbnails
  • +
  • Auto conversion of images
  • +
  • Maximize button on images
  • +
  • medium-zoom support
  • +
  • ModelViewer and Sketchfab support
  • +
  • Video embed support
  • +
  • OpenGraph and Twitter embed support
  • +
  • Responsive and mobile friendly
  • +
+

Installation

+

Clone the theme into the themes folder:

+
git clone https://github.com/gamingrobot/zallery.git themes/zallery
+
+

Note: It is recomended that you copy the config.toml from the themes/zallery folder to the root folder of your site.

+

Then set your theme setting in config.toml to zallery:

+
theme = "zallery"
+
+

Customization

+

To customize the theme's colors you will need to copy the _variables.scss into your sites sass folder and create a zallery.scss file with:

+
@import 'variables';
+@import '../themes/zallery/sass/imports';
+
+

See the demo site for an example: github.com/gamingrobot/zallery-demo/tree/master/sass

+

Options

+ +

Customize the header navigation links

+
[extra]
+menu = [
+    {url = "atom.xml", name = "Feed"},
+    {url = "https://github.com/gamingrobot/zallery", name = "Github"},
+]
+
+

Browser Bar Theme Color

+

Customize color to set the browser's url bar on mobile

+
[extra]
+theme_color = "#313131"
+
+

Author Url

+

Url used for the name in the copyright

+
[extra]
+author_url = "https://example.com"
+
+

Cover Image

+

Cover image to use on the main gallery pages for opengraph and twitter embeds

+
[extra]
+cover_image = "img/cover.webp"
+
+ +

To hide the copyright set this to true

+
[extra]
+hide_copyright = false
+
+

To hide the "Powered by Zola & Zallery" set this to true

+
[extra]
+hide_poweredby = false
+
+ +

Settings for the gallery view's thumbnails

+
[extra]
+thumbnail_size = 400 # size in pixels, you may need to adjust the media queries in _gallery.scss
+thumbnail_format = "webp" # auto, jpg, png, webp
+thumbnail_quality = 100 # value in percentage, only for webp and jpg
+
+

img shortcode settings

+

Settings for the img shortcode, allowing for automatic conversion and creating mobile friendly images

+
[extra]
+covert_images = false # set to true to convert images to to the format in the image_format setting
+create_mobile_images = false # set to true to create mobile friendly versions of the image
+image_format = "webp" # auto, jpg, png, webp
+image_quality = 90 # value in percentage, only for webp and jpg
+
+

Frontmatter settings

+

These settings are for the frontmatter on each artwork

+
[extra]
+thumbnail = "image.jpg" # image to resize into a thumbnail and cover image
+modelviewer = true # enable modelviewer javascript for this artwork
+
+

Javascript libraries

+

ModelViewer

+

Set to true to enable modelviewer support. This can also be set in the artwork frontmatter or in config.toml

+
[extra]
+modelviewer = true
+
+

JSZoom

+

Set to true to enable javascript zoom support.

+
[extra]
+jszoom = true
+
+

GoatCounter

+

Set to the goatcounter tag to enable goatcounter support

+
[extra]
+goatcounter = ""
+
+

Shortcodes

+

img

+
{{ img(src="image.jpg", mobile_src="image-mobile.jpg", alt="alt text", text="text", fit="") }}
+
+
    +
  • src (required) - Image path
  • +
  • mobile_src (optional) - Mobile friendly version
  • +
  • alt (optional) - Alt text
  • +
  • text (optional) - Text to put under the image (if alt is not specified, text will be use for alt text)
  • +
  • fit (optioanl) - Defaults to fit-view, can be set to max-width to make the image fill the width of the page
  • +
+

video

+
{{ video(src="image.jpg", autoplay=false) }}
+
+
    +
  • src (required) - Video path
  • +
  • autoplay (optional) - Set to true to enable autoplay
  • +
+

youtube / vimeo

+
{{ youtube(id="", autoplay=false) }}
+{{ vimeo(id="", autoplay=false) }}
+
+
    +
  • id (required) - Id of the video
  • +
  • autoplay (optional) - Set to true to enable autoplay
  • +
+

model

+

Note: Requires modelviewer to be enabled in config.toml

+
{{ model(src="image.jpg", skybox="", poster="") }}
+
+
    +
  • src (required) - Model path
  • +
  • skybox (optional) - Skybox HDR
  • +
  • poster (optional) - Image to show when loading
  • +
  • alt (optional) - Alt text
  • +
+

sketchfab

+
{{ sketchfab(id="") }}
+
+
    +
  • id (required) - Id of the model
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/zallery/screenshot.png b/themes/zallery/screenshot.png new file mode 100644 index 000000000..4740b32bf Binary files /dev/null and b/themes/zallery/screenshot.png differ diff --git a/themes/zerm/index.html b/themes/zerm/index.html new file mode 100644 index 000000000..9e1d7b3cb --- /dev/null +++ b/themes/zerm/index.html @@ -0,0 +1,113 @@ + + + + + + + + + zerm | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

zerm

+

a minimalist and dark theme for Zola.

+

Screenshot

+

Live Preview!

+

Largely a port of Radek Kozieł's Terminal +Theme for Hugo. 4/5ths of my way +through porting this theme, I discovered Paweł Romanowski own independent fork +for Zola, Terminimal, +which helped me get the PostCSS to Sass styling conversion done more +quickly. My sincerest thanks to both of you!

+

differences

+

This theme is largely true to the original by Radek, but there are some mild +differences. They are almost all stylistic in nature and are intended to +emphasize minimalism even more. Some of them are as follows:

+
    +
  • tags are now included in a post's meta data.
  • +
  • no post image previews.
  • +
  • categories are included in the taxonomy.
  • +
  • bullet points have slightly more margin and different symbols for nesting.
  • +
  • no social media or comment support.
  • +
+

Some of these might be added later and PR's are always +welcomed.

+

configuration

+

Please follow the Zola documentation for how to use a +theme.

+

In config.toml, you will find all values for customization that are supported +thus far have documentation explaining how they are used. If there is any confusion or something is not working as intended, please open an issue!

+

math

+

You can use KaTeX for mathematical typesetting. +Assets are only available if you opt-in on a per-page level through +a single line (math=true) on the extra section of the page frontmatter.

+
# index.md
++++
+title="this page title"
+...
+
+[extra]
+math=true
++++
+
+Content
+
+

Pages wich doesn't opt-in are not affected in any way, so you doesn't have +to worry about any performance hit.

+

license

+

MIT. See LICENSE.md for more details.

+ + +
+ +
+ + + + + + diff --git a/themes/zerm/screenshot.png b/themes/zerm/screenshot.png new file mode 100644 index 000000000..18513991a Binary files /dev/null and b/themes/zerm/screenshot.png differ diff --git a/themes/zhuia/index.html b/themes/zhuia/index.html new file mode 100644 index 000000000..e09d8cb0e --- /dev/null +++ b/themes/zhuia/index.html @@ -0,0 +1,219 @@ + + + + + + + + + Zhuia | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zhuia

+

logo-zhuia

+

An elegant but still playful theme for Zola powered by Spectre.css.

+

It is especially optimized for mobile navigation (optionally without JavaScript, if you don't like fancy stuff).

+

DEMO: https://zhuia.netlify.app/

+

Contents

+
    +
  • Installation
  • +
  • Features
  • +
  • Options +
      +
    • Title
    • +
    • SEO
    • +
    • Menu
    • +
    • Social
    • +
    • Footer
    • +
    +
  • +
  • Name
  • +
  • Genesis
  • +
  • Donate
  • +
  • License
  • +
+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/gicrisf/zhuia.git
+
+

and then enable it in your config.toml:

+
theme = "zhuia"
+
+

Posts should be placed directly in the content folder.

+

To sort the post index by date, enable sort in your index section content/_index.md:

+
sort_by = "date"
+
+

Features

+
    +
  • +Lightweight and minimal
  • +
  • +Spectre CSS classes to manage content. Look at the docs
  • +
  • +Responsive for mobile support (with full-page mobile menu)
  • +
  • +SCSS based CSS source files for easy customization
  • +
  • +HTML based sidebar widget
  • +
  • +Author card sidebar widget with customizable avatar
  • +
  • +Multi-author support
  • +
  • +Optional twitter sidebar widget
  • +
  • +Feed RSS/Atom
  • +
  • +Open Graph and Twitter Cards support
  • +
  • +Social buttons with icons
  • +
  • +Deploy via Netlify (config already included)
  • +
  • +Tags AND categories
  • +
  • +Granular image optimization for a really faster loading on mobile
  • +
  • +Pagination
  • +
  • +Easily extendable menu
  • +
  • +Inter-page pagination
  • +
  • +Optional NoJs
  • +
  • +Hamburger animation
  • +
  • +Comments
  • +
  • +Related posts (not sure about this)
  • +
  • +Search bar
  • +
  • +Math rendering
  • +
  • +Other shortcodes
  • +
  • +Multilanguage support
  • +
  • +Dark mode
  • +
  • +Table of Contents
  • +
  • +Image + text title option
  • +
+

Options

+

Title

+

Set a title and description in the config to appear in the site header and on the RSS feed:

+
title = "Der Prozess"
+description = "a novel written by Franz Kafka in 1914"
+
+

SEO

+

Most SEO tags are populated by the page metadata, but you can set the author and for the og:image tag provide the path to an image:

+
[extra]
+
+author = "Timothy Morton"
+og_image = "Hyperobjects.png"
+
+ +

You can choose between two modes:

+
    +
  • With a small script for an elegant overlay menu
  • +
  • Without any scripts at all (it just your show menu underneath)
  • +
+

mobile menus

+

Social

+

Set a field in extra with a key of footer_links:

+
[extra]
+
+# Freely comment out or delete every field
+social_links = [
+    {url = "https://t.me/yourname", name = "telegram"},
+    {url = "https://twitter.com/gicrisf", name = "twitter"},
+    {url = "https://github.com/gicrisf", name = "github"},
+    # {url = "", name = "facebook"},
+    # {url = "", name = "instagram"},
+    # {url = "", name = "bookstack"},
+    # {url = "", name = "dokuwiki"},
+]
+
+

social buttons

+

The theme automatically picks up the right icons. +We can expand the support to other social, for sure: make a PR or open an enhancement issue to ask a new implementation.

+ +

You can add your own copyright or whatever to the footer with a through a simple option on the config file:

+
[extra]
+
+footer_tagline = "What if everything is an illusion and nothing exists? In that case, I definitely overpaid for my carpet."
+
+

Name

+

The name arise from two parts:

+
    +
  • The generator, Zola, gives the "Z";
  • +
  • An extinct species of New Zealand wattlebird, the huia, provide the second part.
  • +
+

The theme is built on Spectre CSS framework, so I found reasonable evoking a spectral species.

+

Genesis

+

This theme is based on a Pelican theme I originally made for my blog, which was in turn based on the +Grav theme Quark.

+ +

Did you liked this theme? Make a donation and support new features!

+

ko-fi

+

License

+

Open sourced under the MIT license.

+ + +
+ +
+ + + + + + diff --git a/themes/zhuia/screenshot.png b/themes/zhuia/screenshot.png new file mode 100644 index 000000000..a39f0a3da Binary files /dev/null and b/themes/zhuia/screenshot.png differ diff --git a/themes/zola-386/index.html b/themes/zola-386/index.html new file mode 100644 index 000000000..665a1946f --- /dev/null +++ b/themes/zola-386/index.html @@ -0,0 +1,120 @@ + + + + + + + + + zola.386 | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

ZOLA.386

+

ZOLA.386 screenshot

+

Live demo

+

ZOLA.386 is a port of the BOOTSTRA.386 theme and was based on:

+ +

ZOLA.386 is a theme that refers to the 90s, but with cutting edge features to be fast and responsive.

+

Installation

+

The easiest way to install ZOLA.386 is to clone this repository and build your site upon it:

+
$ git clone https://github.com/lopes/zola.386
+
+

Of course you can install it just as another theme for your site, but ZOLA.386 must be added as a module:

+
$ cd themes
+$ git submodule add https://github.com/lopes/zola.386 
+
+

Configuration

+

Configuration is mainly done in config.toml and here I'll describe the main topics.

+

Global

+

config.toml starts with the global variables. All of these items are important, but it is fundamental to create two taxonomies at least:

+
taxonomies = [
+  {name="categories", rss=true},
+  {name="tags", rss=true},
+]
+
+

Remember that all descriptions (config.description and page.description) are shown on the index page, one at the header and the others through the body.

+

Extras

+

ZOLA.386 comes with a lot of extra variables which eases the creation and maintenance of the site, so it's important to review all of them after installing the theme.

+

The zola386_menu composes the navbar and is created by setting up a path, which will be appended to the base_url and the name will appear on the navbar.

+
zola386_menu = [
+  {path="/", name="Home"},
+  {path="categories", name="Categories"},
+  {path="tags", name="Tags"},
+  {path="about", name="About"},
+]
+
+

Social

+

ZOLA.386 is also prepared to deal with Google Analytics, Disqus, and Twitter --Open Graph Protocol is welcome. This theme is prepared to use the output of Favicon Generator, to do so, you'll just need to download the output of that site and extract in static/images.

+

As said, Disqus is supported, but besides setting the username in config.toml, you also must to put a comments = true extra option on the pages where Disqus will be enabled --this gives you the freedom to enable or disable comments on certain posts. You can use the extra option image on each page, to represent that post.

+

Animations

+

All JavaScript animations can be set at static/js/zola386.js. Basically you can disable all animations, use one or two scans, and change the scan speed. Personally, I prefer only one scan with a speed factor of 5.

+

Language

+

Under the label_ variables, you can set names to better localize your site. Note that you can change the language of a single page, by using page.extra.lang, which causes <html lang=""> to change only on that page. A theme to provide information for its owner and SEO-friendly.

+ +

Search was implemented according to the official documentation. It uses JavaScript to search on an indexed version of the site based on search_index.LANG.js, elasticlunr.min.js, and search.js --the first two are generated after each build. If you're running your site in other default language other than English, you must change the search_index.LANG.js line in index.html, setting up LANG accordingly.

+

Other files

+

The content\_index.md file must be properly configured to provide better experience. Check out this file for more information.

+

The 404 page is almost hardcoded, so you must edit it directly.

+

License

+

This theme is released under the MIT license. For more information read the License.

+

Netlify Status

+ + +
+ +
+ + + + + + diff --git a/themes/zola-386/screenshot.png b/themes/zola-386/screenshot.png new file mode 100644 index 000000000..ba6ba699b Binary files /dev/null and b/themes/zola-386/screenshot.png differ diff --git a/themes/zola-easydocs-theme/index.html b/themes/zola-easydocs-theme/index.html new file mode 100644 index 000000000..84d0e0ec4 --- /dev/null +++ b/themes/zola-easydocs-theme/index.html @@ -0,0 +1,90 @@ + + + + + + + + + EasyDocs | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

An easy way to create a document library for your project

+

Demo: https://easydocs.codeandmedia.com/

+

This theme for Zola (static site engine) helps you build and publish your project docs easily and fast. Zola is just one binary that outputs html-pages and additional static assets after building your docs written in Markdown. Thus, you can take the theme, your md-files, Zola and gain flexible and simple website for documentation.

+

Step-by-step

+

As you may have heard Zola is quite flexible :) So, the scenario below is one of hundreds possible ways to make things done, feel free to find your best. Also, Zola provides their own mechanism to install and use themes, see the docs.

+
    +
  1. Fork the repo and replace demo-content inside content folder with yours. But take a look to _index.md files. It contains title and when you want to have anchor right of your headers add insert_anchor_links = "right" to each index. theme.toml, screenshot and readme may be deleted too.
  2. +
  3. Inside config.toml change URL and title on your own. In extra section you can specify path to your GitHub API for version below the logo on nav, favicon and logo itself. Or just remove the lines if you don't need it. Also, you can configure or turn on some additional settings related to Zola. Specification is here.
  4. +
  5. In sass/_variables.scss you may change font, color or background if you want.
  6. +
  7. Almost done. Now, you should decide how you want to build and where will be hosted your website. You can build it locally and upload to somewhere. Or build in GitHub Actions and host on GitHub Pages / Netlify / CloudFlare Pages / AnyS3CloudStorage. Howto for GitHub Pages. My example of GitHub workflow with 2-steps build (the first checks for links and spelling errors, the second uploads to Azure). Dockerfile to make Docker image.
  8. +
+

Provided configurations options

+

These options can be configured in the extra section of the config.toml. +If any are not present it has the same behaviour as the default which is shown in the starter config.toml.

+
    +
  • easydocs_logo_always_clickable controls if the logo is always clickable. By default the logo is only clickable if you are not on the home page. If this is enabled it will make the logo clickable when you are on the home page as well. Thus on the home page it will basically just refresh the page as it will take you to the same page.
  • +
  • easydocs_uglyurls provides support for offline sites that do not use a webserver. If set to true links in the nav are generated with the full path indcluding index.html. This functionality was insired by Abridge theme. Note that for this to work it also requries the base URL to be set to the local folder where the site will be stored eg. base_url = file:///home/user/mysite/public/. Therefore this is not portable and only works with a specific local folder, but does not require a webserver to navigate the site.
  • +
  • easydocs_heading_threshold controls minimum number of headings needed on a page before the headings show in the navigation on the left. Defaults to 5. Can be used for example to always show headings on each page by setting it to 1.
  • +
+

Enjoy your docs!

+ + + +
+ +
+ + + + + + diff --git a/themes/zola-easydocs-theme/screenshot.png b/themes/zola-easydocs-theme/screenshot.png new file mode 100644 index 000000000..fd7496adb Binary files /dev/null and b/themes/zola-easydocs-theme/screenshot.png differ diff --git a/themes/zola-grayscale/index.html b/themes/zola-grayscale/index.html new file mode 100644 index 000000000..c465c9840 --- /dev/null +++ b/themes/zola-grayscale/index.html @@ -0,0 +1,298 @@ + + + + + + + + + zola-grayscale | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola Grayscale

+

screenshot

+

A port of the Start Bootstrap Grayscale theme, for Zola.

+

Updated to use the latest Bootstrap 5.3.3.

+ +
    +
  • Demo
  • +
  • How to Customize +
      +
    • Configuration
    • +
    • Navigation
    • +
    • Contacts
    • +
    • Masthead +
        +
      • Background Image
      • +
      +
    • +
    • Content
    • +
    • About
    • +
    • Projects
    • +
    • Signup
    • +
    • Contact
    • +
    • Footer
    • +
    +
  • +
  • Macros +
      +
    • Debug
    • +
    • Title
    • +
    • Google Analytics
    • +
    +
  • +
  • Misc
  • +
+ +

Demo

+

Live Demo

+

How to Customize

+

The majority of customisation is done through template inheritance. +Every section and subsection of the page has a template {%/* block */%} that you +can override with your own content.

+

Start by copying themes/zola-grayscale/contact.toml and +themes/zola-grayscale/navigation.toml to your site root folder.

+

Then create your own site templates/index.html with the following contents:

+
{%/* extends "zola-grayscale/templates/index.html" */%}
+
+

If you don't want a particular section in your page override it with an empty +block, for example this will remove the about section of the page:

+
{%/* block about */%}{%/* endblock about */%}
+
+

Configuration

+

The config.toml file has some basic configuration used by the page including:

+
    +
  • title
  • +
  • author
  • +
  • description
  • +
  • google_analytics_tag (optional)
  • +
  • sb_forms_api_token
  • +
+ +

The page navigation is customised through the navigation.toml file. +Edit this file to change the names and paths to link to. +You can add additional item's and they will be automatically added to the +navigation bar.

+

The home link in the left of the navigation bar uses config.title by default +or can be customised with the nav_home_title block.

+
{%/* block nav_home_title */%}Home{%/* endblock nav_home_title */%}
+
+

Contacts

+

The contacts section of the page is managed via in the contacts.toml which has +two types of items:

+
    +
  • contact for the contact cards.
  • +
  • social for the social network links.
  • +
+

Modifying, adding, or removing items from these lists will automatically update +that section of the page. +Both contact item types use Font Awesome icons +for their icon value.

+

Masthead

+

The entire masthead section can be overridden with your own markup like so:

+
{%/* block masthead */%}
+...
+{%/* endblock masthead */%}
+
+

The following sub-blocks are provided for further customisation:

+
    +
  • masthead_title: +defaults to config.title
  • +
  • masthead_description: +defaults to config.description
  • +
  • masthead_button
  • +
  • masthead_button_url
  • +
  • masthead_button_tag
  • +
  • masthead_button_label
  • +
+

Background Image

+

The background image of the masthead can be changed by creating the directory +static/assets/img copying your own image to +static/assets/img/bg-masthead.jpg in your own site.

+

Content

+

A content block wraps the About](#about), [Projects sections of +the page to allow you to completely replace the content of the page with your +own markup.

+
{%/* block content */%}
+...
+{%/* endblock content */%}
+
+

About

+

The entire about section can be overridden with your own markup like so:

+
{%/* block about */%}
+...
+{%/* endblock about */%}
+
+

The following sub-blocks are provided for further customisation:

+
    +
  • about_title
  • +
  • about_description
  • +
  • about_image
  • +
+

Projects

+

The entire projects section can be overridden with your own markup like so:

+
{%/* block projects */%}
+...
+{%/* endblock projects */%}
+
+

The section has these sub-blocks:

+
    +
  • +

    projects_id: +set the html id attribute for the projects section.

    +
  • +
  • +

    featured_project with these sub-blocks for customisation:

    +
      +
    • featured_project_thumbnail: +Allows overriding the markup of the project thumbnail.
    • +
    • featured_project_content: +Allows overriding the markup of the project content.
    • +
    • featured_project_title
    • +
    • featured_project_description
    • +
    +
  • +
  • +

    project_1 with these sub-blocks for customisation:

    +
      +
    • project_1_thumbnail: +Allows overriding the markup of the project thumbnail.
    • +
    • project_1_content: +Allows overriding the markup of the project content.
    • +
    • project_1_title
    • +
    • project_1_description
    • +
    +
  • +
  • +

    project_2 with these sub-blocks for customisation:

    +
      +
    • project_2_thumbnail: +Allows overriding the markup of the project thumbnail.
    • +
    • project_2_content: +Allows overriding the markup of the project content.
    • +
    • project_2_title
    • +
    • project_2_description
    • +
    +
  • +
  • +

    extra_projects to add extra content as you wish.

    +
  • +
+

Signup

+

The entire signup section can be overridden with your own markup like so:

+
{%/* block signup */%}
+...
+{%/* endblock signup */%}
+
+

The following sub-blocks are provided for further customisation:

+
    +
  • signup_id: +set the html id attribute for the signup section.
  • +
  • signup_icon: +the Font Awesome icon to use.
  • +
  • signup_title
  • +
  • signup_form
  • +
+

Contact

+

The entire contact section can be overridden with your own markup like so:

+
{%/* block contact */%}
+...
+{%/* endblock contact */%}
+
+

The following sub-blocks are provided for further customisation:

+
    +
  • contact_id: +set the html id attribute for the contact section.
  • +
  • contact_contact
  • +
  • contact_social
  • +
+ +

The entire footer section can be overridden with your own markup like so:

+
{%/* block footer */%}
+...
+{%/* endblock footer */%}
+
+

The following sub-blocks are provided for further customisation:

+
    +
  • footer_copyright
  • +
  • footer_debug: +customise the debug macro call.
  • +
  • extra_footer: +to add extra content as you wish.
  • +
+

Macros

+

Debug

+

The debug macro can be used by setting config.extra.debug to true. +This will then add a debug button to the footer of the page to allow you to +inspect, by default, the __tera_context in a pop-out sidebar.

+

If you want to debug other context information you can customise it like so. +For example, to debug the config context:

+
{%/* block footer_debug */%}{{/* debug::debug(context=config, name="config") */}}{%/* endblock footer_debug */%}
+
+

Title

+

The title macro can be used to set the title for any additional pages you +might create.

+

Google Analytics

+

The google_analytics macro can be used to insert code for Google Analytics. +Set config.extra.google_analytics_tag to your tag id.

+

Misc

+

The extra_head block can be used to add extra markup to the end of the +<head> of the page. +The extra_scripts block can be used to add extra scripts to the end of the +page.

+

static/css/custom.css can be created and used to add any custom CSS.

+ + +
+ +
+ + + + + + diff --git a/themes/zola-grayscale/screenshot.png b/themes/zola-grayscale/screenshot.png new file mode 100644 index 000000000..7e0d23bdd Binary files /dev/null and b/themes/zola-grayscale/screenshot.png differ diff --git a/themes/zola-hacker/index.html b/themes/zola-hacker/index.html new file mode 100644 index 000000000..08b745bb8 --- /dev/null +++ b/themes/zola-hacker/index.html @@ -0,0 +1,174 @@ + + + + + + + + + zola-hacker | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Hacker theme for Zola

+

Zola Hacker is a minimalistic theme for Zola, inspired by the Hacker theme for Jekyll. It is designed for developers who want to write blogs.

+

Demo

+

Live Preview.

+

Requirements

+

Before using the theme, you need to install the Zola ≥ 0.19.1.

+

Quick Start

+
git clone git@github.com:en9inerd/zola-hacker.git
+cd zola-hacker
+zola serve
+# open http://127.0.0.1:1111/ in the browser
+
+

Installation

+

Just earlier we showed you how to run the theme directly. Now we start to +install the theme in an existing site step by step.

+

Step 1: Create a new zola site

+
zola init mysite
+
+

Step 2: Install Zola Hacker Theme

+

Download this theme to your themes directory:

+
cd mysite/themes
+git clone git@github.com:en9inerd/zola-hacker.git
+
+

Or install as a submodule:

+
cd mysite
+git init  # if your project is a git repository already, ignore this command
+git submodule add git@github.com:en9inerd/zola-hacker.git themes/hacker
+
+

Step 3: Configuration

+

Enable the theme in your config.toml in the site directory:

+
theme = "hacker"
+
+

Or copy the config.toml from the theme directory to your project's +root directory:

+
cp themes/hacker/config.toml config.toml
+
+

Step 4: Add new content

+

You can copy the content from the theme directory to your project:

+
cp -r themes/hacker/content .
+
+

You can modify or add new posts in the content/posts, content/pages or other +content directories as needed.

+

Step 5: Run the project

+

Just run zola serve in the root path of the project:

+
zola serve
+
+

Command will start the Zola development web server accessible by default at +http://127.0.0.1:1111. Saved changes will live reload in the browser.

+

Customisation

+

You can customize your configurations, templates and content for yourself. Look +at the config.toml, theme.toml, content files and templates files in this +repo for an idea.

+

Global Configuration

+

There are some configuration options that you can customize in config.toml.

+

Configuration options before extra options

+

Set the tags taxonomy in the config.toml:

+
taxonomies = [
+    { name = "tags" },
+]
+
+

Configuration options under the extra

+

The following options should be under the [extra] in config.toml

+
    +
  • language_code - set HTML file language (default to en-US)
  • +
  • title_separator - the separator to your site title, like | and - (defaults to |)
  • +
  • logo - path to the logo image
  • +
  • google_analytics - Google Analytics tracking ID
  • +
  • timeformat - the timeformat for the blog article published date
  • +
  • timezone - the timezone for the blog article published date
  • +
  • edit_page - whether to show the edit page in the github repo for your posts
  • +
  • menu - set the menu items for your site
  • +
  • contact_form_script_id - the script id for the contact form based on Google Script
  • +
  • [extra.github] - set the GitHub metadata for your site
  • +
  • [extra.giscus] - set the Giscus settings for your site to enable the comments
  • +
  • [extra.opengraph] - set the Open Graph metadata for your site
  • +
  • [extra.pgp_key] - set pgp key in the footer for certain pages
  • +
  • social_links - set the social media links in the footer +...
  • +
+

Templates

+

All pages are extend to the base.html, and you can customize them as need.

+

Shortcodes

+

The theme provides some shortcodes to help you write your content:

+

contact_form +The contact_form shortcode is based on Google Apps Mail to send emails without a server. +It depends on contact_form_script_id in the config.toml.

+
{{ contact_form() }}
+
+

cv +The cv shortcode is used to display the CV in the page. Data for CV is stored in yaml format in the data/cv directory.

+
{{ cv() }}
+
+

github_avatar +The github_avatar shortcode is used to display the GitHub avatar image. It depends on extra.github.username in the config.toml. Also, you can pass size as an argument.

+
{{ github_avatar(size=100) }}
+
+

projects +The projects shortcode is used to display repositories from GitHub. It depends on extra.github.username in the config.toml and extra.repo_names in page front matter to filter the repositories.

+
{{ projects() }}
+
+

Reporting Issues

+

We use GitHub Issues as the official bug tracker for the Zola Hacker Theme. Please +search existing issues. It’s +possible someone has already reported the same problem.

+

If your problem or idea is not addressed yet, open a new issue.

+

License

+

Zola Hacker Theme is distributed under the terms of the +MIT license.

+ + +
+ +
+ + + + + + diff --git a/themes/zola-hacker/screenshot.png b/themes/zola-hacker/screenshot.png new file mode 100644 index 000000000..5e22210c1 Binary files /dev/null and b/themes/zola-hacker/screenshot.png differ diff --git a/themes/zola-henry/index.html b/themes/zola-henry/index.html new file mode 100644 index 000000000..e8b5f4545 --- /dev/null +++ b/themes/zola-henry/index.html @@ -0,0 +1,102 @@ + + + + + + + + + henry | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

henry

+

Henry is a single-column Zola theme based on the original Jekyll styles.

+

Demo -> https://sirodoht.github.io/zola-henry/

+

screenshot for home page

+

screenshot for posts

+

screenshot for any other page

+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/sirodoht/zola-henry.git henry
+
+

and then enable it in your config.toml:

+
theme = "henry"
+
+

Options

+ +

Set a field in extra with a key of henry_links:

+
[extra]
+henry_links = [
+    {url = "about", name = "About"},
+    {url = "https://github.com/benbalter", name = "GitHub"},
+]
+
+

Each link needs to have a url and a name.

+ +

By default Henry ships with GitHub icon link in the right side of the footer. You can change its link href in your config.toml.

+
[extra]
+henry_github = "https://github.com/sirodoht/zola-henry"
+
+ +

Twitter is too mainstream and a bit lame, but 100% of our users have requested, so we offer it.

+
[extra]
+henry_twitter = "https://twitter.com/benbalter"
+
+

License

+

MIT

+ + +
+ +
+ + + + + + diff --git a/themes/zola-henry/screenshot.png b/themes/zola-henry/screenshot.png new file mode 100644 index 000000000..0c9c1921f Binary files /dev/null and b/themes/zola-henry/screenshot.png differ diff --git a/themes/zola-minimal/index.html b/themes/zola-minimal/index.html new file mode 100644 index 000000000..4d35bb695 --- /dev/null +++ b/themes/zola-minimal/index.html @@ -0,0 +1,103 @@ + + + + + + + + + Minimal | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+
+

📚 Minimal

+ + + + + +
+
+

Minimal is a Zola theme with the goal of helping you build a light, fast, and SEO ready landing page or website.

+

It is based on the Jekyll theme with the same name.

+

Check out the demo.

+
+

theme screenshot

+

🚀 Quick Start

+

Before using the theme, you need to install Zola ≥ v0.18.0.

+
# 1. Clone the repo
+git clone git@github.com:semanticdata/zola-minimal.git
+
+# 2. Change directory into clone
+cd zola-minimal
+
+# 3. Serve the site locally
+zola serve
+
+# 4. Open http://127.0.0.1:1111/ in the browser
+
+

For more detailed instructions, visit the Documentation page about installing and using themes.

+

🎨 Customization

+

You can change the configuration, templates and content yourself. Refer to the config.toml, and templates for ideas. In most cases you only need to modify the contents of config.toml to customize the appearance of your blog. Make sure to visit the Zola Documentation.

+

Adding custom CSS is as easy as adding your styles to sass/_custom.scss. This is made possible because SCSS files are backwards compatible with CSS. This means you can type normal CSS code into a SCSS file and it will be valid.

+

🚩 Reporting Issues

+

We use GitHub Issues as the official bug tracker for Minimal. Please search existing issues. It’s possible someone has already reported the same problem. If your problem or idea is not addressed yet, open a new issue.

+

💜 Acknowledgements

+

Zola Minimal is a fork of the Jekyll theme Minimal.

+

© License

+

Source code in this repository is available under the MIT License.

+ + +
+ +
+ + + + + + diff --git a/themes/zola-minimal/screenshot.png b/themes/zola-minimal/screenshot.png new file mode 100644 index 000000000..45ec812c4 Binary files /dev/null and b/themes/zola-minimal/screenshot.png differ diff --git a/themes/zola-paper/index.html b/themes/zola-paper/index.html new file mode 100644 index 000000000..377a074ac --- /dev/null +++ b/themes/zola-paper/index.html @@ -0,0 +1,102 @@ + + + + + + + + + zola-paper | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola-Paper

+

A clean theme inspired from hugo-paper.

+

Zola port of Hugo-Paper (with a few tweaks).

+

Demo: https://schoenenberg.github.com/zola-paper

+

Screenshot +Dark Mode Screenshot

+

Installation

+

The easiest way to install this theme is to either clone it ...

+
git clone https://github.com/schoenenberg/zola-paper.git themes/zola-paper
+
+

... or to use it as a submodule.

+
git submodule add https://github.com/schoenenberg/zola-paper.git themes/zola-paper
+
+

Either way, you will have to enable the theme in your config.toml.

+
theme = "zola-paper"
+
+

Open Graph Integration

+

This theme has an integration of Open Graph meta tags. These are set based on context and available information. See the following example:

+
+++
+title = "Lorem ipsum!"
+
+[extra]
+author = "Max Mustermann"
+author_url = "https://www.facebook.com/example.profile.3"
+banner_path = "default-banner"
+
+[taxonomies]
+tags = ["rust", "zola", "blog"]
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu feugiat sapien. Aenean ligula nunc, laoreet id sem in, interdum bibendum felis. Donec vel dui neque.
+<!-- more -->
+Ut luctus dolor ut tortor hendrerit, sed hendrerit augue scelerisque. Suspendisse quis sodales dui, at tempus ante. Nulla at tempor metus. Aliquam vitae rutrum diam. Curabitur iaculis massa dui, quis varius nulla finibus a. Praesent eu blandit justo. Suspendisse pharetra, arcu in rhoncus rutrum, magna magna viverra erat, ...
+
+
+

Required attributes of the extra section is author. All other attributes are optional. The path for the banner_path attribute has to be relative to the content directory.

+ + +
+ +
+ + + + + + diff --git a/themes/zola-paper/screenshot.png b/themes/zola-paper/screenshot.png new file mode 100644 index 000000000..91973a424 Binary files /dev/null and b/themes/zola-paper/screenshot.png differ diff --git a/themes/zola-pickles/index.html b/themes/zola-pickles/index.html new file mode 100644 index 000000000..c389800a7 --- /dev/null +++ b/themes/zola-pickles/index.html @@ -0,0 +1,147 @@ + + + + + + + + + pickles | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

+ 🥒
+ zola-pickes +

+
+ Pickles is a clean, responsive blog theme for Zola based on the Hugo theme with the same name. +
+
+ +
+

pickles screenshot

+

Installation

+

First download this theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/lukehsiao/zola-pickles.git
+
+

and then enable it in your config.toml:

+
theme = "zola-pickles"
+
+

The theme requires putting the posts in the root of the content folder and to enable pagination, for example in content/_index.md.

+
+++
+paginate_by = 5
+sort_by = "date"
+insert_anchor_links = "right"
++++
+
+

Reference guides

+

Configuration Options

+
[extra]
+# A line to display underneath the main title
+subtitle = "Example subtitle"
+
+# Text to display in the footer of the page
+copyright = "Copyright authors year"
+
+# Your Google Analytics ID
+analytics = ""
+
+# See below
+katex_enable = false
+
+# See below
+instantpage_enable = false
+
+

A full example configuration is included in config.toml.

+

Note how pickles also expects title and description to also be set in the Zola configuration.

+

KaTeX math formula support

+

This theme contains math formula support using KaTeX, which can be enabled by setting katex_enable = true in the extra section of config.toml.

+

After enabling this extension, the katex short code can be used in documents:

+
    +
  • {% katex(block=true) %}\KaTeX{% end %} to typeset a block of math formulas, +similar to $$...$$ in LaTeX
  • +
+

Figure Shortcode

+

The figure shortcode is convenient for captioning figures.

+
{% figure(link="https://www.example.com/", src="https://www.example.com/img.jpeg", alt="sample alt text") %}
+Your caption here.
+{% end %}
+
+

Table Shortcode

+

The table shortcode is convenient for making mobile-friendly tables (centered with overflow scrollbar).

+
{% table() %}
+| Item         | Price | # In stock |
+| :----------- | ----: | ---------: |
+| Juicy Apples |  1.99 |        739 |
+| Bananas      |  1.89 |          6 |
+{% end %}
+
+

Fontawesome

+

This theme includes fontawesome, so that fontawesome icons can be directly used.

+

Instant.page

+

The theme contains instant.page prefetching. This can be enabled by setting instantpage_enable = true in the extra section of config.toml.

+

Showing article summaries

+

By default, the theme will use the first 280 characters of your post as a summary, if a proper page summary using <!-- more --> is not provided. +For more sensible summaries, we recommend using the manual more indicator.

+ + +
+ +
+ + + + + + diff --git a/themes/zola-pickles/screenshot.png b/themes/zola-pickles/screenshot.png new file mode 100644 index 000000000..a5613da1b Binary files /dev/null and b/themes/zola-pickles/screenshot.png differ diff --git a/themes/zola-theme-course/index.html b/themes/zola-theme-course/index.html new file mode 100644 index 000000000..2987452b2 --- /dev/null +++ b/themes/zola-theme-course/index.html @@ -0,0 +1,120 @@ + + + + + + + + + Course | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zola Theme : Course

+

This theme allows you to publish only courses/tutorials structured in +parts and subparts, using Zola.

+

Homepage of the demo

+

Page of a course

+

It automatically links pages of the course with the next and previous ones +for easy navigation. There is also a navigation bar at the top of each page +to easily navigate the whole tutorial, and for the reader to never be lost.

+

Each page can have an illustration.

+

It lets you customize some parts of the site, like the color palette.

+

It also features a light/dark mode switcher.

+

It also has some SEO features.

+

It was made for french courses, so a few parts of the interface may be in french. +You can easily adapt it to your language by editing the files in themes/zola-theme-course/templates/.

+

Usage

+

Create your Zola site, and import this theme:

+
zola init NAME
+cd NAME/themes
+git clone https://github.com/elegaanz/zola-theme-course.git
+cd ..
+
+

Then update your config.toml with this line:

+
theme = "zola-theme-course"
+
+

You can also add these lines to customize how the theme behaves:

+
[extra]
+site_name = "My course"
+icon = "image.png"
+icon_desc = "Icon of the course"
+description = "A great course!"
+default_illus = "illus.png"
+primary_color = "#FFFFFF"
+accent_color = "#FFFFFF"
+source_url = "https://github.com/me/my-course"
+
+

File structure

+

For your course to be displayed correctly, it needs to follow a specific structure.

+
    +
  • content/_index.md is the text displayed on the homepage
  • +
  • each part should have its own folder, with an _index.md
  • +
  • each subpart should have its own markdown file (which can be an index.md in a subfolder)
  • +
  • all _index.md files should have sort_by = "weight" in their frontmatter, and you can then +order parts and subparts using the weight option.
  • +
+

With this theme, pages can also have extra options:

+
[extra]
+# Don't display the page title, useful for the homepage
+no_title = true
+# The name of the image to use as a banner
+illus = "illus.jpg"
+# Adds JSON-LD metadata on this page, useful for the homepage
+jsonld = true
+
+

The standard title and description fields are also taken into account.

+ + +
+ +
+ + + + + + diff --git a/themes/zola-theme-course/screenshot.png b/themes/zola-theme-course/screenshot.png new file mode 100644 index 000000000..74734f9cd Binary files /dev/null and b/themes/zola-theme-course/screenshot.png differ diff --git a/themes/zola-theme-hikari/index.html b/themes/zola-theme-hikari/index.html new file mode 100644 index 000000000..70117bfce --- /dev/null +++ b/themes/zola-theme-hikari/index.html @@ -0,0 +1,93 @@ + + + + + + + + + Hikari | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

hikari

+
+

this is a port of the hikari theme for Zola

+
+

Hikari is a simple theme perfect for dev-savvy bloggers.

+

screenshot

+

View demo

+

Installation

+

First download the theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/waynee95/zola-theme-hikari
+
+

and then enable it in your config.toml:

+
theme = "hikari"
+
+

Configuration

+
[extra]
+author = "John Doge"
+author_bio = "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ex, pariatur!"
+twitter = "waynee955"
+github = "waynee95"
+instagram = false
+enable_mathjax = false
+
+

License

+

MIT

+

Thanks to Mathieu Mayer-Mazzoli for creating this awesome theme!

+ + +
+ +
+ + + + + + diff --git a/themes/zola-theme-hikari/screenshot.png b/themes/zola-theme-hikari/screenshot.png new file mode 100644 index 000000000..359baf414 Binary files /dev/null and b/themes/zola-theme-hikari/screenshot.png differ diff --git a/themes/zola-theme-terminimal/index.html b/themes/zola-theme-terminimal/index.html new file mode 100644 index 000000000..3adc63bd6 --- /dev/null +++ b/themes/zola-theme-terminimal/index.html @@ -0,0 +1,389 @@ + + + + + + + + + terminimal | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Terminimal

+

Build Status +No JavaScript

+

Screenshot

+

See the live demo (of the default configuration) here: +https://pawroman.github.io/zola-theme-terminimal/

+

Tested with Zola v0.17.2. Please note that earlier versions might not work because of breaking changes across Zola versions.

+

Fork disclaimer

+

This theme is a fork (not a port) of "Terminal" Hugo theme +by Radosław Kozieł (aka. panr): +https://github.com/panr/hugo-theme-terminal

+

Many thanks for that outstanding original theme, Radek!

+

For more information about this fork and the differences to the original theme, please see: +Changes compared to the original theme below.

+

Versioning

+

This theme used to be non-versioned, e.g. you'd pull the master branch, and occasionally new features or fixes would +be released.

+

Starting from version v1.0.0, the project adopted Semantic Versioning.

+

Please check the GitHub releases to see a change log +and work out if there's any breaking changes.

+

How to start

+

Option A: clone the theme directly into your Zola site folder:

+
$ git clone https://github.com/pawroman/zola-theme-terminimal.git themes/terminimal
+
+

Option B: include it as a git submodule (it's better if you plan to use CI builders):

+
$ git submodule add https://github.com/pawroman/zola-theme-terminimal.git themes/terminimal
+
+

Then in your config.toml set:

+
theme = "terminimal"
+
+# Sass compilation is required
+compile_sass = true
+
+

Also see the Zola documentation on using themes: +https://www.getzola.org/documentation/themes/installing-and-using-themes/

+

Shortcodes

+

The theme adds two custom shortcodes related to image handling.

+

image

+

Used to show images.

+

Required arguments:

+
    +
  • src
  • +
+

Optional arguments:

+
    +
  • alt
  • +
  • position (center [default] | left | right)
  • +
  • style
  • +
+

Example:

+
{{ image(src="/img/hello.png", alt="Hello Friend",
+         position="left", style="border-radius: 8px;") }}
+
+

figure

+

Same as image, but with a few extra optional arguments:

+
    +
  • caption (supports markdown)
  • +
  • caption_position (center [default] | left | right)
  • +
  • caption_style
  • +
+

Example:

+
{{ figure(src="http://rustacean.net/assets/rustacean-flat-gesture.png",
+          style="width: 25%;",
+          position="right",
+          caption_position="left",
+          caption="**Ferris**, the (unofficial) Rust mascot",
+          caption_style="font-style: italic;") }}
+
+

OpenGraph

+

To add an image to a post, set the og_image extra option to the desired image +in the same directory of the markdown file:

+
[extra]
+og_image = "colocated_image.png"
+
+

Additionally, for the section pages and for posts to have a fallback image, add +default_og_image to the [extra] section:

+
[extra]
+default_og_image = "static/ocean.jpg"
+
+

Configuration

+

Only show the post's description

+

On each post you can specify the following:

+
description = "test description"
+
+[extra]
+show_only_description = true
+
+

This will render test description under this +particular post on the homepage instead of a summary.

+

Colors

+

Both the accent colors and background colors are +configurable.

+

By default, both accent and background are set +to blue.

+

To configure menu, add this in [extra] section +of your config.toml:

+
[extra]
+
+# One of: blue, green, orange, pink, red.
+# Defaults to blue.
+# Append -light for light themes, e.g. blue-light
+# Or append -auto, e.g. blue-auto
+accent_color = "green"
+
+# One of: blue, dark, green, orange, pink, red, light, auto
+# Enabling dark background will also modify primary font color to be darker.
+# Defaults to accent color (or, if not accent color specified, to blue).
+background_color = "dark"
+
+ +

You can set the "logo" text and what it links to, +by modifying config.toml like so:

+
[extra]
+
+# The logo text - defaults to "Terminimal theme"
+logo_text = "My blog"
+
+# The logo link - defaults to base_url.
+logo_home_link = "/take/me/away!"
+
+ +

You can set the footer's copyright author name like this:

+
[extra]
+
+# Author name: when specified, modifies the default
+# copyright text. Apart from author, it will
+# contain current year and a link to the theme.
+author = "My Name"
+
+

If you don't like the default copyright text, +you can set it to completely custom HTML:

+
[extra]
+
+# Copyright text in HTML format. If specified,
+# entirely replaces default copyright and author.
+copyright_html = "My custom&nbsp;<b>copyright</b>"
+
+ +

The menu is optional, static (all items are always shown, +no matter what the screen size) and fully user-configurable.

+

To configure menu, add this in [extra] section +of your config.toml:

+
[extra]
+
+# menu is enabled by adding menu_items (optional)
+menu_items = [
+    # each of these is optional, name and url are required
+    # $BASE_URL is going to be substituted by base_url from configuration
+    {name = "blog", url = "$BASE_URL"},
+    
+    # tags should only be enabled if you have "tags" taxonomy
+    # see documentation below for more details
+    {name = "tags", url = "$BASE_URL/tags"},
+    {name = "archive", url = "$BASE_URL/archive"},
+    {name = "about me", url = "$BASE_URL/about"},
+    
+    # set newtab to true to make the link open in new tab
+    {name = "github", url = "url-to-your-github", newtab = true},
+]
+
+

Tags

+

The theme optionally supports tags. To enable them, create +a "tags" taxonomy in your config.toml:

+
taxonomies = [
+    {name = "tags"},
+]
+
+

Enabling tags will create a new /tags page, and +cause them to show up in archive section. Note +that you still need to create a menu link to the tags +page manually.

+

Pagination

+

Pagination is fully supported for post list (main site) +and intra-post (you can navigate to earlier and later posts).

+

To make sure pagination works properly, you must first configure +it in content/_index.md:

+
+++
+# number of pages to paginate by
+paginate_by = 2
+
+# sorting order for pagination
+sort_by = "date"
++++
+
+

Then, tweak the theme's pagination config in config.toml:

+
[extra]
+
+# Whether to show links to earlier and later posts
+# on each post page (defaults to true).
+enable_post_view_navigation = true
+
+# The text shown at the bottom of a post,
+# before earlier/later post links.
+# Defaults to "Thanks for reading! Read other posts?"
+post_view_navigation_prompt = "Read more"
+
+

Language code

+

Internationalization / translation is not supported +but you can set the HTML language code for your +site:

+
default_language = "en"
+
+

Hack font subset

+

By default, the theme uses a mixed subset of the Hack font. +Normal weight font uses full character set +(for Unicode icons and special symbols), but all others +(bold, italic etc) use a limited subset.

+

This results in much smaller transfer sizes, but the subset +might not contain all the Unicode characters you need.

+

You can enable full unicode support in config.toml:

+
[extra]
+
+# Use full Hack character set, not just a subset.
+# Switch this to true if you need full unicode support.
+# Defaults to false.
+use_full_hack_font = true
+
+

Also see Hack's docs.

+

Favicon

+

The theme supports adding a global favicon (applies to +all pages) to the site:

+
# Optional: Global favicon URL and mimetype.
+#           Mimetype defaults to "image/x-icon".
+#           The URL should point at a file located
+#           in your site's "static" directory.
+favicon = "/favicon.png"
+favicon_mimetype = "image/png"
+
+

Page titles

+

The theme allows you to configure how the page titles (the <title> elements) are rendered.

+

Use "combined" to render titles as "Page title | Main title".

+
# Optional: Set how <title> elements are rendered.
+# Values:
+# - "main_only" -- only the main title (`config.title`) is rendered.
+# - "page_only" -- only the page title (if defined) is rendered,
+#                  falling back to `config.title` if not defined or empty.
+# - "combined" -- combine like so: "page_title | main_title",
+#                 or if page_title is not defined or empty, fall back to `main_title`
+#
+# Note that the main (index) page only has the main title.
+page_titles = "combined"
+
+

All the configuration options are also described in +config.toml.

+

Extending

+

Each of the templates defines named blocks, so +it should be quite easy to customize the most common things.

+

For example, if you want to add extra <meta> tags to the +base template, index.html, create file like this in templates/index.html:

+
{%/* extends "terminimal/templates/index.html" */%}
+
+{%/* block extra_head */%}
+    <meta name="description" content="My awesome website"/>
+    <meta name="keywords" content="Hacking,Programming,Ranting"/>
+{%/* endblock */%}
+
+

How to contribute

+

If you spot any bugs or wish to contribute new features, please create a new +Pull Request.

+

Changes compared to the original theme

+

This theme has been forked from https://github.com/panr/hugo-theme-terminal

+
    +
  • +

    Slight changes in the layout and styling.

    +
      +
    • Content has been centered (instead of left-aligned).
    • +
    • The header stripes have been spaced out.
    • +
    • Tweaks to pagination, especially on mobile (small screens).
    • +
    • The post title underline is dashed instead of doubly-dotted.
    • +
    • All links are underlined, as per +Brutalist Web Design Guidelines.
    • +
    • Tweaks to header font sizes.
    • +
    • Minor footer tweaks.
    • +
    +
  • +
  • +

    Absolutely no JavaScript.

    +
      +
    • No JavaScript needed to pre-process anything. +Zola with its Sass pre-processor is the only dependency.
    • +
    • There's no menu trigger.
    • +
    • Things load crazy fast, as it's all static content.
    • +
    • Prism.js syntax highlighting is not supported (you can use +Zola's).
    • +
    +
  • +
  • +

    All references to social media (e.g. Twitter) have been removed.

    +
  • +
  • +

    All references to external URLs (e.g. Google CDN) have been removed. +This theme's static assets are meant to be served from where it's hosted.

    +
  • +
  • +

    Hack is the default font.

    +
  • +
  • +

    The default color theme is blue (original uses orange).

    +
  • +
+

New features

+
    +
  • You can pick the accent color as well as background color. +There's a new dark background. See Configuration +below for details.
  • +
  • Active "section" links will change color indicating the +active section. This is all static, done at template level.
  • +
+

Features retained from the original

+
    +
  • 5 color themes, depending on your preference: +blue (default), green, orange, pink, red.
  • +
  • The shortcodes image and figure (See Shortcodes.
  • +
  • Fully responsive.
  • +
+

License

+

Copyright © 2019 Paweł Romanowski (pawroman)

+

Original theme: Copyright © 2019 Radosław Kozieł (@panr)

+

The theme is released under the MIT License. +Check the license file +for more information.

+

The license for Hack fonts used is included in +LICENSE-Hack.md.

+ + +
+ +
+ + + + + + diff --git a/themes/zola-theme-terminimal/screenshot.png b/themes/zola-theme-terminimal/screenshot.png new file mode 100644 index 000000000..e0f8b5670 Binary files /dev/null and b/themes/zola-theme-terminimal/screenshot.png differ diff --git a/themes/zolarwind/index.html b/themes/zolarwind/index.html new file mode 100644 index 000000000..532afc83a --- /dev/null +++ b/themes/zolarwind/index.html @@ -0,0 +1,465 @@ + + + + + + + + + Zolarwind | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

A screenshot of how the theme looks like

+

The Zolarwind Theme for Zola

+

Welcome to Zolarwind, the simple Zola blog theme with Tailwind CSS and KaTex support. +This theme is for Zola users aiming to have a nice blog design powered by Tailwind CSS. +It seamlessly integrates with Mermaid, enabling the creation of various diagrams +directly within your blog posts using a Markdown-inspired syntax. +Additionally, the theme smoothly integrates math formulas using KaTex. +Most importantly, while the theme is designed to be easily localizable, +you can choose your preferred language setting for a consistent blog experience.

+
+

Features:

+
    +
  • +

    Tailwind CSS: Utilize the utility-first CSS framework for rapid UI development.

    +
  • +
  • +

    Mermaid Integration: Create diverse diagrams using simple text.

    +
  • +
  • +

    KaTex Integration: Integrate and display math formulas seamlessly in your blog posts.

    +
  • +
  • +

    Localization Support: All theme-specific strings are available in multiple languages; choose the one that's right for you. +If your language isn't supported yet, just create the resource file with your translations.

    +
  • +
+
+

Table of Contents:

+
    +
  • Demo Website
  • +
  • Prerequisites
  • +
  • Installation
  • +
  • Configuration
  • +
  • Front Matter
  • +
  • Localization
  • +
  • Integrating in theme folder
  • +
  • Development
  • +
  • Remarks
  • +
  • Contributing
  • +
  • License
  • +
+
+

Demo Website

+

You can see the theme in action on my personal website. +The site uses the German language.

+
+

Prerequisites

+

In order to use the theme, you need some software pre-installed:

+
    +
  • +

    Git, Required for version control.

    +
  • +
  • +

    Node, an open-source, cross-platform JavaScript runtime environment.

    +
  • +
  • +

    Zola, a fast static site generator.

    +
  • +
  • +

    an editor or integrated development environment of your choice - I use JetBrains IDEA, +an IDE that makes development a more productive and enjoyable experience.

    +
  • +
+
+

Installation

+
    +
  1. +

    Clone this theme repository with e.g. git@github.com:thomasweitzel/zolarwind.git. +Or download it from https://github.com/thomasweitzel/zolarwind.

    +
  2. +
  3. +

    Make adjustments to the config.toml file as needed. +In order to run the theme as a standalone site, you need to adjust the base_url to your domain. +If you want to try it out on your local machine, you can leave it as is. +Just run zola serve from the theme's root directory.

    +
  4. +
+
+

Configuration

+

Your config.toml file is crucial in customizing the Zola site. +Here's a breakdown of the configuration settings tailored for this theme:

+

Basic Configuration:

+
    +
  • +

    base_url: Specifies the URL the site will be built for. +In this case, the site will be built for https://example.org. +Adjust this to your own domain.

    +
  • +
  • +

    compile_sass: Determines whether to automatically compile all Sass files present in the sass directory. +Here, it's set to false, meaning Sass files won't be automatically compiled for this theme.

    +
  • +
  • +

    default_language: Sets the default language for the site. +The provided config uses English (en) as the default language. +As of now, German (de) is available in the i18n directory.

    +
  • +
  • +

    theme: The theme used for the site. +The provided line is commented out, indicating that the themes files are taken from the template directory. +If you move the theme to the themes/zolarwind directory, use zolarwind for this entry.

    +
  • +
  • +

    build_search_index: If set to true, a search index will be built from the pages and section content for the default_language. +In this configuration and for this theme, it's disabled (false).

    +
  • +
  • +

    generate_feed: Determines if an Atom feed (file atom.xml) is automatically generated. +It's set to true, meaning a feed will be generated.

    +
  • +
  • +

    taxonomies: An array of taxonomies (classification systems) used for the site. +Here, a taxonomy for tags is defined, with a pagination limit of 6 and an enabled feed.

    +
  • +
+

Markdown Configuration:

+
    +
  • +

    highlight_code: Indicates whether code snippets in Markdown files should be highlighted. Here, it's set to true.

    +
  • +
  • +

    highlight_theme: Specifies the theme to be used for code highlighting. The chosen theme in this configuration is 1337.

    +
  • +
  • +

    extra_syntaxes_and_themes: directory for additional syntax highlighting configuration files for languages not directly supported by Zola.

    +
  • +
+

Extra Configuration:

+

The [extra] section is where you can place any custom variables you want to be accessible in your templates.

+
    +
  • +

    title: Required. +The title of the site. +Here, it's set to "Zolarwind".

    +
  • +
  • +

    path_language_resources: Required. +The path to the directory containing language resource files. +In this config, it's set to i18n/. +If you move the theme to the themes/zolarwind directory, use themes/zolarwind/i18n/ for this entry.

    +
  • +
  • +

    generator: Optional. +Specifies the generator used for creating the static website. +This site is generated using Zola v0.19.0.

    +
  • +
  • +

    favicon_svg: Optional. +Provides a path to the site's favicon in SVG format. +The provided path points to /img/yin-yang.svg.

    +
  • +
  • +

    copyright: Optional. +A template for the copyright notice. +It includes a placeholder {year} which is dynamically replaced with the current year of your zola build run.

    +
  • +
  • +

    site_description: Optional. +A brief description is displayed on the site's banner.

    +
  • +
  • +

    quote: Optional. +A structure defining a quote and its author. +This quote is from Yoda.

    +
  • +
  • +

    menu_pages: Optional. +An array of main navigation menu items. +Each item has a title and a url.

    +
  • +
  • +

    footer_pages: Optional. +An array of pages that will appear in the site's footer. +Each item has a title and a url.

    +
  • +
  • +

    social_links: Optional. +An array of social media links. +Each link has a name, a boolean indicating if it's enabled, a URL, and an SVG icon.

    +
  • +
+
+

Front matter

+

For blog posts (Markdown files in folder content/blog), this theme uses a directory structure where each post has its own folder. +This way, I have all resources for a post in one place. +It can include images, videos, and other files.

+

Each post is associated with an image that is displayed on the blog's main page and on the posts detail page. +If you do not provide an image under extra.image, a default image is used instead.

+
    +
  • +

    date: the date of the blog posts, e.g. 2020-06-11.

    +
  • +
  • +

    title: the title of the blog posts, e.g. The Game of Fifteen.

    +
  • +
  • +

    description: the description of the blog posts. It is used as a summary on the blog's main page.

    +
  • +
  • +

    authors: an optional array of all the posts authors, e.g. ["Thomas Weitzel"]. +You can leave it empty, but then the first author will show up as Unknown in the feed (atom.xml).

    +
  • +
  • +

    taxonomies: only the optional tags taxonomy is used by this theme. +I tend to list programming languages used in the post, e.g. ["rust", "javascript"]. +You can omit it, but then the post will not show up under tags.

    +
  • +
  • +

    extra.math: either false (default) or true. +If set to true, the post will be rendered with KaTex support for displaying math formulas. +If the entry is omitted or set to false, the post will not have KaTex support.

    +
  • +
  • +

    extra.diagram: either false (default) or true. +Controls loading of the necessary JavaScript to render the Mermaid diagram. +If set to true, the post will be rendered with Mermaid support for displaying diagrams +by using the diagram() shortcode.

    +
  • +
  • +

    extra.image: an optional image for the post. +If omitted, a default image is used instead. +The image is displayed on the blog's main page and on the posts detail page.

    +
  • +
+
+

Localization

+

Consider this text on a page where a blog post is published as an example: Published on July 04, 2023; 1,234 words. +If your blog is in the German language, you want to have Veröffentlicht am 04. Juli 2023; 1.234 Wörter instead. +Not only the text should be translated, but also the date and number formats are different. +And you want a text like 1 word or 1 Wort, because the singular form should be used where applicable. +This theme takes care of that.

+

To localize your blog with this theme:

+
    +
  1. +

    Pick your desired language by setting the default_language in config.toml. +As of now, English (en) and German (de) have language resources available in the i18n directory. +If your language is not supported yet, just create a new resource file with your translations. +Use the file en.toml as a template for your own translations. +Use the correct language code for the file name, e.g. eo.toml for Esperanto. +Only languages that read from left-to-right (ltr) are supported by this theme.

    +
  2. +
  3. +

    The theme will automatically display all theme-specific string resources in the chosen language.

    +
  4. +
  5. +

    The content that you provide should match this language. +But that is your responsibility. +The theme will not translate your content.

    +
  6. +
+

If you need to define your own date format, look here for supported specifiers.

+
+

Integrating in theme folder

+

This project is structured as a stand-alone Zola site. +This section is for those who might want to integrate the theme into an existing Zola website. +You can do so by moving the relevant theme files to the themes/zolarwind directory. +All other files stay in the root directory. +If you have your own files there, you need to merge them with the ones from this theme. +You also need to adjust the config.toml and package.json files in the root accordingly.

+

I will only show you the relevant directories that need to be moved. +This is the directory structure of the stand-alone site, where the theme is in the root directory:

+
/
+├── css
+├── i18n
+├── static
+│   ├── css
+│   ├── img
+│   └── js
+├── syntaxes
+├── templates
+└── theme.toml
+
+

Create a new directory themes/zolarwind and move the following files and directories there:

+
/
+├── static
+│   └── css
+└── themes
+    └── zolarwind
+        ├── css
+        ├── i18n
+        ├── static
+        │   ├── img
+        │   └── js
+        ├── syntaxes
+        ├── templates
+        └── theme.toml
+
+

The static/css directory is a special case. +It contains the generated Tailwind CSS file with the name generated.css. +It will stay in its original location. +This file is generated from the file css/main.css, which is the input for the CSS generation. +The generation process can be triggered with a script in the package.json file. +You only need to adjust and run the script in package.json if you make changes to the theme's template files or use new Tailwind CSS classes directly in your content files. +Since the source file css/main.css has moved to the directory themes/zolarwind/css/main.css, we need to adjust the script in package.json accordingly.

+

This is how the relevant part of it looks like for the stand-alone site:

+
"scripts": {
+  "css:build": "npx tailwindcss -i ./css/main.css -o ./static/css/generated.css --minify",
+  "css:watch": "npx tailwindcss -i ./css/main.css -o ./static/css/generated.css --watch",
+  "server": "zola serve"
+}
+
+

Now change it so that the input file css/main.css will be the file themes/zolarwind/css/main.css:

+
"scripts": {
+  "css:build": "npx tailwindcss -i ./themes/zolarwind/css/main.css -o ./static/css/generated.css --minify",
+  "css:watch": "npx tailwindcss -i ./themes/zolarwind/css/main.css -o ./static/css/generated.css --watch",
+  "server": "zola serve"
+}
+
+

Since you now use Zolarwind as a theme, you need to declare it in the config.toml file. +The theme's files have moved to the directory themes/zolarwind, so you need to adjust the only reference to the theme's files in the config.toml file accordingly by changing the path_language_resources entry:

+
# The site theme to use
+theme = "zolarwind"
+
+# ...
+
+# Path to the language resource files
+path_language_resources = "themes/zolarwind/i18n/"
+
+
+

Development

+

If you want to adjust the CSS of the theme to your needs, you will need to edit the files in the templates and css directories. +While you do this, you should make sure that the CSS file static/css/generated.css is up-to-date. +This file is generated from the file css/main.css, and all the files that are configured as a pattern in tailwind.config.js:

+
    +
  • +

    css/main.css

    +
  • +
  • +

    themes/**/*.html

    +
  • +
  • +

    templates/**/*.html

    +
  • +
  • +

    content/**/*.md

    +
  • +
+

So whenever one of these files changes, you need to run the script css:build from the package.json file. +To accomplish this, you need to have Node.js and all dependencies from package.json installed (with npm install). +Then you can run the script with npm run css:watch. +It monitors all files mentioned above and triggers the CSS generation whenever a relevant file changes. +This ensures, that the file static/css/generated.css is always up-to-date.

+

I recommend to have two terminals open. +In one terminal, run zola serve to start the Zola server. +In the other terminal, run npm run css:watch to start the CSS generation whenever a relevant file changes.

+

That way, your local web browser will automatically reload the page with the updated CSS whenever you change a file.

+
+

Remarks

+

Typography for markdown

+

I'm not using @tailwindcss/typography for styling of markdown files. +I don't like how it looks. +Instead, I use @apply in the css/main.css file. +The @apply directive in Tailwind CSS enables you to compose utility classes into custom CSS classes. +This makes it possible to apply multiple utility styles within a single class, making it efficient to style markdown content.

+

This approach has pros and cons. +But it gives me fine-grained control over how the end result looks like. +While it is time-consuming, I prefer this solution over the @tailwindcss/typography plugin.

+

Yes, I'm reinventing the wheel here, because for common typographic patterns, I'm just recreating what's already provided by the typography plugin.

+

Serve KaTex files locally

+

All KaTex files are included in the static directory for this theme. +Using KaTeX (or any other library) by serving it from a Content Delivery Network (CDN) has implications concerning the General Data Protection Regulation (GDPR) and the use of cookies:

+
    +
  • +

    Third-Party Requests & Data Privacy: When you load resources from a CDN, it triggers third-party requests to the CDN's servers. +These servers might log your IP address, user agent, and other request-related metadata. +Under GDPR, IP addresses can be considered personal data. +By serving KaTeX from your domain, you reduce third-party data transfers, limiting the amount of personal data you expose to external entities.

    +
  • +
  • +

    Cookies: Many CDNs set cookies for various reasons, including analytics or performance optimizations. +These cookies can track users across different websites that use the same CDN, potentially infringing on their privacy rights. +By hosting KaTeX on your domain, you have full control over the cookies set and can ensure compliance with GDPR.

    +
  • +
  • +

    Consent: If you're using a CDN that sets cookies or collects data, you might need to get explicit user consent before loading resources from that CDN. +This can complicate user experience and lead to a reduced site performance for users who opt-out. +By self-hosting, you circumvent this issue.

    +
  • +
  • +

    Transparency & Control: By self-hosting, you know exactly which version of KaTeX you're using and can ensure there are no modifications or unexpected behaviors. +With CDNs, there's a minor risk of the library being compromised, which could affect all sites using that resource.

    +
  • +
  • +

    Data Transfer Outside the EU: If the CDN servers are located outside the European Union, you might be transferring data out of the EU, +which adds another layer of GDPR compliance requirements. +By self-hosting, you ensure that user data doesn't leave the region unless you specifically choose a hosting solution outside the EU.

    +
  • +
+
+

Contributing

+

Contributions are always welcome! +If you see areas of improvement or want to add features, please submit a PR.

+

I'm especially interested in more translations. +See folder i18n for what's available and what is not. +Just use the file en.toml as a template for your own translations.

+
+

License

+

This theme is under the MIT License. +For details, please refer to the LICENSE file.

+ + +
+ +
+ + + + + + diff --git a/themes/zolarwind/screenshot.png b/themes/zolarwind/screenshot.png new file mode 100644 index 000000000..0f3ac4203 Binary files /dev/null and b/themes/zolarwind/screenshot.png differ diff --git a/themes/zolastrap/index.html b/themes/zolastrap/index.html new file mode 100644 index 000000000..6181e75ea --- /dev/null +++ b/themes/zolastrap/index.html @@ -0,0 +1,205 @@ + + + + + + + + + zolastrap | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

zolastrap

+

A bootstrap theme for zola

+

Live Demo

+

config.toml [extra] variables

+ +
    +
  • type: string
  • +
  • default: ""
  • +
+

Path of a banner image, use empty string for no banner

+

date_format

+
    +
  • type: string
  • +
  • default: "%d/%m/%Y"
  • +
+

date format expression

+

theme

+
    +
  • type: string
  • +
  • default: "default"
  • +
+

one of the Bootswatch themes

+

bg

+
    +
  • type: string
  • +
  • default: "dark"
  • +
+

one of the available backgrounds in +Bootstrap5 +for navbar and footer

+

inverted

+
    +
  • type: boolean
  • +
  • default: false
  • +
+

Invert font for navbar and footer in case default choice is bad

+

themes

+
    +
  • type: string
  • +
  • default: "Choose a Theme"
  • +
+

Navbar label for themes dropdown.

+

This dropdown will allow user to change +Bootswatch theme.

+

Use empty string in case you do not want the user choose a theme.

+

schemes

+
    +
  • type: string
  • +
  • default: "Choose a Color Scheme"
  • +
+

Navbar label for schemes dropdown.

+

This dropdown will allow user to change footer and navbar +background +color.

+

Use empty string in case you do not want the user choose a theme.

+ +
    +
  • type: string
  • +
  • default: "Search"
  • +
+

Placeholder for navbar search input.

+

Remember that to enable and disable search you should set variable +build_search_index.

+

tag

+
    +
  • type: string
  • +
  • default: "Posts by Topic"
  • +
+

Taxonomy tag single label. Useful for translations.

+

tags

+
    +
  • type: string
  • +
  • default: "Posts by Topics"
  • +
+

Taxonomy tag list label. Useful for translations. +You can have a nice tag list at the bottom of a page using extra.tags = true +in the _index.md

+ +
    +
  • type: array
  • +
  • default: []
  • +
+

Navbar links. Use an empty array to ignore this.

+

Items (object):

+
    +
  • title (String): label of the navbar link
  • +
  • url (String): href of associate link
  • +
+

email

+
    +
  • type: string
  • +
  • default: ""
  • +
+

Footer email. Use an empty string to ignore this.

+

icons

+
    +
  • type: array
  • +
  • default: []
  • +
+

Footer social icons. Use an empty array to ignore this.

+

Items (object):

+
    +
  • title (string): Optional title string for icon
  • +
  • icon (string): One of
  • +
  • url (string): href of the icon
  • +
+

utterances

+
    +
  • type: string
  • +
  • default: ""
  • +
+

utterances repo url.

+

Use an empty string to ignore utterances widget.

+

utterances_label

+
    +
  • type: string
  • +
  • default: "Comments"
  • +
+

utterances widget label.

+

utterances_theme

+
    +
  • type: string
  • +
  • default: "github-light"
  • +
+

utterances widget theme.

+

utterances_issue_term

+
    +
  • type: string
  • +
  • default: "pathname"
  • +
+

utterances widget pathname.

+

Contributing

+

Any help is greatly appreciated!

+ + + +
+ +
+ + + + + + diff --git a/themes/zolastrap/screenshot.png b/themes/zolastrap/screenshot.png new file mode 100644 index 000000000..00319c963 Binary files /dev/null and b/themes/zolastrap/screenshot.png differ diff --git a/themes/zplit/index.html b/themes/zplit/index.html new file mode 100644 index 000000000..657a1fd60 --- /dev/null +++ b/themes/zplit/index.html @@ -0,0 +1,176 @@ + + + + + + + + + Zplit | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zplit

+

Zplit is a single-page, centrally-divided layout designed for a professional online presence. It features a large image or video on the left, accompanied by content on the right. Zplit is a port of Split by One Page Love for Zola.

+

Zola Zplit Theme screenshot

+

DEMO: https://zplit.netlify.app/

+

Installation

+

Download the theme to your themes directory:

+
$ cd themes
+$ git clone https://github.com/gicrisf/zplit.git
+
+

Then, enable the theme editing your config.toml:

+
theme = "zplit"
+
+

Getting started

+

The most important file of the theme is located in the root directory and is named =config.toml=. Edit this file to customize your preferences. Look for sections like [extra] to set variables like author, or [extra.content] to modify intro_tagline.

+

If something is unclear or not obvious, you might have missed the "configuration" section of the Zola official documentation. Even if you're new to static site generators, don't worry and take some time to go through the documentation, as it covers fundamental concepts.

+

Here after, we will discuss two specific sections in more detail, because those are unique for the Zplit theme:

+
    +
  • Background image
  • +
  • Lists (of links)
  • +
+

Background image

+

Edit the [extra.visual] section to set your background image of choice.

+
[extra.visual]
+
+background = "<your-image-file-path-goes-here>"
+
+

You can find this example already written as the default:

+
[extra.visual]
+
+background = "images/background.jpg"
+position = "center center"
+
+

As you can see, you can edit the relative position of the image, which is centered by default.

+

Lists

+

You can set up to 3 lists of links in the [extra.lists] section of the config.toml file:

+
    +
  • connect
  • +
  • social
  • +
  • network
  • +
+

Manipulating them is very easy: just add/remove elements in the TOML list, as showed in this example (also already present in the default file):

+
social = [
+    {url = "https://t.me/zwitterio", text = "Telegram"},
+    {url = "https://twitter.com/gicrisf", text = "Twitter"},
+    {url = "https://github.com/gicrisf", text = "Github"},
+]
+
+

Do you want another item? Just throw it up to the pile. You have no limits. +Remember to set the url field with the link itself you want to direct your user at and a text to show in the page for the corrisponding URL.

+

Posts

+

To add new posts, simply place markdown files in the content directory. In order to sort the post index by date, you need to enable the sort_by option in the content/_index.md file within the index section.

+
sort_by = "date"
+
+

This theme was not specifically designed for blogging, but rather as a landing page for professionals. However, if you wish to blog using this theme, you certainly can. To do so, simply add a new section in the content directory and include it in the main menu through the config file. This will make it readily accessible to the user.

+

The theme does not offer support for taxonomies or other advanced features. It is focused on providing simple pages. If you wish to enhance the blogging functionality, you are welcome to customize the code or submit a specific request as an issue.

+

Custom CSS

+

To make custom changes to the original stylesheets, you can create a custom.css file in the static directory. In this file, you can add any modifications or additions you desire.

+

Custom colors

+

If you need to make adjustments to the colors or grid dimensions, it may be easier to modify the frontmatter of the _01-content.scss file directly. In this file, you will find variables conveniently located at the top:

+
//-------------------------------------------------------------------------------
+// Variables
+//-------------------------------------------------------------------------------
+
+// Colors
+$color-background : #061C30;
+$color-text       : #848d96;
+$color-link       : #848d96;
+$color-link-hover : #CA486d;
+$color-maverick   : #47bec7;
+$color-tagline    : #CCCCCC;
+
+// Breakpoints
+$bp-smallish      : 1200px;
+$bp-tablet        : 800px;
+$bp-mobile        : 500px;
+
+

Features

+
    +
  • +Lightweight and minimal
  • +
  • +Responsive (mobile support)
  • +
  • +Social links
  • +
  • +Deploy via Netlify (config already included)
  • +
  • +Easily extendable menus
  • +
  • +De-googled (local assets are faster and more secure)
  • +
  • +Netlify support
  • +
  • +Custom CSS
  • +
  • +Custom colors
  • +
  • +404 page
  • +
  • +Basic blogging features
  • +
  • +Open Graph and Twitter Cards support
  • +
  • +Multilanguage support
  • +
+

Support me!

+

Do you love Zplit? Did you find it enjoyable and useful? If so, consider showing your support by making a donation. Your contribution will help fund the development of new features and improvements for this theme.

+

ko-fi

+

License

+

The original template is released under the Creative Commons Attribution 3.0 License. Please keep the original attribution link when using for your own project. If you'd like to use the template without the attribution, you can check out the license option via the template author's website.

+ + +
+ +
+ + + + + + diff --git a/themes/zplit/screenshot.png b/themes/zplit/screenshot.png new file mode 100644 index 000000000..27cef891d Binary files /dev/null and b/themes/zplit/screenshot.png differ diff --git a/themes/zulma/index.html b/themes/zulma/index.html new file mode 100644 index 000000000..505ec2129 --- /dev/null +++ b/themes/zulma/index.html @@ -0,0 +1,223 @@ + + + + + + + + + Zulma | Zola + + + + + +
+ + +
+ +
+ +
+ +
+ + +
+ +
+

Zulma

+

A Bulma theme for Zola. See a live preview here

+

Zulma Screenshot

+

Contents

+
    +
  • Zulma +
      +
    • Contents
    • +
    • Installation
    • +
    • Javascript +
        +
      • Sources
      • +
      • Building
      • +
      +
    • +
    • Options +
        +
      • Pagination
      • +
      • Taxonomies
      • +
      • Menu Links
      • +
      • Brand
      • +
      • Search
      • +
      • Title
      • +
      • Theming
      • +
      +
    • +
    • Original
    • +
    • Known Bugs
    • +
    +
  • +
+

Installation

+

First download this theme to your themes directory:

+
cd themes
+git clone https://github.com/Worble/Zulma
+
+

and then enable it in your config.toml:

+
theme = "Zulma"
+
+

That's it! No more configuration should be required, however it might look a little basic. Head to the Options section to see what you can set for more customizability.

+

Javascript

+

Sources

+

All the source javascript files live in javascript/src. Following is a list of the javascript files, their purpose, and their sources. All files are prefixed with zulma_ to avoid any name clashes.

+
    +
  • zulma_search.js - Used when a user types into the search box on the navbar (if enabled). Taken from Zola's site.
  • +
  • zulma_navbar.js - Used for the mobile navbar toggle. Taken from the bulma template at Bulmaswatch
  • +
  • zulma_switchcss.js - Used for swapping themes (if enabled).
  • +
+

Building

+

The JavaScript files are transpiled by babel, minified by webpack, sourcemaps are generated and then everything placed in static/js. The repo already contains the transpiled and minified files along with their corrosponding sourcemaps so you don't need to do anything to use these. If you would prefer to build it yourself, feel free to inspect the js files and then run the build process (please ensure that you have node, npm and optionally yarn installed):

+
cd javascript
+yarn
+yarn webpack
+
+

Github warnings

+

You may get warnings about vulnerabilities from the JavaScript dependencies. These shouldn't be an issue since we only have dev-dependencies and none of the them reach the end-user, but if you don't want to run the buld process yourself, and to stop Github pestering you about security warnings, feel free to delete the top level javascript folder when committing.

+

Options

+

Pagination

+

Zulma makes no assumptions about your project. You can freely paginate your content folder or your taxonomies and it will adapt accordingly. For example, editing or creating section (content/_index.md) and setting pagination:

+
paginate_by = 5
+
+

This is handled internally, no input is needed from the user.

+

Taxonomies

+

Zulma has 3 taxonomies already set internally: tags, cateogories and authors. Setting of any these three in your config.toml like so:

+
taxonomies = [
+    {name = "categories"},
+    {name = "tags", paginate_by = 5, rss = true},
+    {name = "authors", rss = true},
+]
+
+

and setting any of them in a content file:

+
[taxonomies]
+categories = ["Hello world"]
+tags = ["rust", "ssg", "other", "test"]
+authors = ["Joe Bloggs"]
+
+

will cause that metadata to appear on the post, either on the header for the name, or at the bottom for tags and categories, and enable those pages.

+

Making your own taxonomies is also designed to be as easy as possible. First, add it to your cargo.toml

+
taxonomies = [
+    {name = "links"},
+]
+
+

and make the corrosponding folder in your templates, in this case: templates\links, and the necessary files: templates\links\list.html and templates\links\single.html

+

And then for each, just inherit the taxonomy master page for that page. Before rendering the content block, you may optionally set a variable called title for the hero to display on that page, otherwise it will use the default for that taxonomy.

+

In single.html:

+
{%/* extends "Zulma/templates/taxonomy_single.html" */%}
+
+

In list.html:

+
{%/* extends "Zulma/templates/taxonomy_list.html" */%}
+
+{%/* block content */%}
+{%/* set title = "These are all the Links"*/%}
+{{ super() }}
+{%/* endblock content */%}
+
+ +

In extra, setting zulma_menu with a list of items will cause them to render to the top menu bar. It has two paramers, url and name. These must be set. If you put $BASE_URL in a url, it will automatically be replaced by the actual site URL. This is the easiest way to allow users to navigate to your taxonomies:

+
[extra]
+zulma_menu = [
+    {url = "$BASE_URL/categories", name = "Categories"},
+    {url = "$BASE_URL/tags", name = "Tags"},
+    {url = "$BASE_URL/authors", name = "Authors"}
+]
+
+

On mobile, a dropdown burger is rendered using javascript. If the page detects javascript is disabled on the clients machine, it will gracefully degrade to always showing the menu (which isn't pretty, but keeps the site functional).

+

Brand

+

In extra, setting zulma_brand will cause a brand image to display in the upper left of the top menu bar. This link will always lead back to the homepage. It has two parameters, image(optional) and text(required). image will set the brand to an image at the location specified, and text will provide the alt text for this image. If you put $BASE_URL in a url, it will automatically be replaced by the actual site URL. If image is not set, the brand will simply be the text specified.

+
[extra]
+zulma_brand = {image = "$BASE_URL/images/bulma.png", text = "Home"}
+
+ +

Zulma provides search built in. So long as build_search_index is set to true in config.toml then a search input will appear on the top navigation bar. This requires javascript to be enabled to function; if the page detects javascript is disabled on the clients machine, it will hide itself.

+

The search is shamefully stolen from Zola's site. Thanks, Vincent!

+

Title

+

In extra, setting zulma_title will set a hero banner on the index page to appear with that title inside.

+
[extra]
+zulma_title = "Blog"
+
+

If you want to get fancy with it, you can set an image behind using sass like so:

+
.index .hero-body {
+  background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Plum_trees_Kitano_Tenmangu.jpg/1200px-Plum_trees_Kitano_Tenmangu.jpg);
+  background-position: center;
+  background-size: cover;
+  background-repeat: no-repeat;
+  background-color: rgba(0, 0, 0, 0.6);
+  background-blend-mode: overlay;
+}
+
+

This will set the image behind the hero, and darken it so the main text can still be easily read.

+

Theming

+

In extra, setting zulma_theme to a valid value will change the current colour scheme to that one. All themes were taken from Bulmaswatch. Valid theme values are:

+
    +
  • default
  • +
  • darkly
  • +
  • flatly
  • +
  • pulse
  • +
  • simplex
  • +
  • lux
  • +
  • slate
  • +
  • solar
  • +
  • superhero
  • +
+

All valid themes can also be found under the extra.zulma_themes variable in the theme.toml. Choosing no theme will set default as the theme. Setting an invalid theme value will cause the site to render improperly.

+
[extra]
+zulma_theme = "darkly"
+
+

Additionally, in extra, you can also set the zulma_allow_theme_selection boolean. Setting this to true will allow a menu in the footer to allow users to select their own theme. This option will store their theme choice in their localstorage and apply it on every page, assuming zulma_allow_theme_selection is still true. This requires javascript to be enabled to function; if the page detects javascript is disabled on the clients machine, it will hide itself.

+

Each theme contains the entirety of Bulma, and will weigh in at ~180kb. If you're running on a server severely limited on space, then I'd recommend you delete each theme you're not using, either from the source or from /public. Obviously, doing this will cause zulma_allow_theme_selection to work improperly, so make sure you either override extra.zulma_themes in config.toml to only show themes you have left or to not enable this option at all.

+
[extra]
+zulma_allow_theme_selection = true
+
+

Original

+

This template is based on the blog template over at Free Bulma Templates. All themes were taken from Bulmaswatch. The code behind from originally adapted from the after-dark zola template.

+

Known Bugs

+
    +
  • If user theme swapping is enabled and the user selects a theme different to the default, a slight delay will be introduced in page rendering as the css gets swapped out and in by the javascript. This is particularly pronounced when using the dark theme, since it will flash white before going back to black. This is better than the alternative flashes of unstyled content or old theme, but still annoying. I don't know any way around this, but with browser caching it should be fast enough to not cause serious issues.
  • +
+ + +
+ +
+ + + + + + diff --git a/themes/zulma/screenshot.png b/themes/zulma/screenshot.png new file mode 100644 index 000000000..5373667a9 Binary files /dev/null and b/themes/zulma/screenshot.png differ