Skip to content

Files

variables

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 7, 2021
Jun 4, 2024
Feb 20, 2025
Dec 14, 2022
May 29, 2024
Jan 7, 2025
Feb 25, 2025
Feb 28, 2024
Dec 12, 2022
Feb 14, 2024
Jan 28, 2025
Nov 13, 2024
Oct 29, 2024
Jan 7, 2025
Jun 3, 2024
Aug 30, 2024
Dec 16, 2024
Jan 23, 2024
Mar 10, 2025
Jan 21, 2025
Oct 18, 2024
Jan 23, 2024
Oct 15, 2021
Oct 21, 2024
Apr 4, 2024
Oct 18, 2023

Variables

Variables are short strings of reusable text.

The YAML files in this directory each contain multiple variables.

The path, filename, and keys within each YAML file determine what its path will be in the data object.

For example, given a file data/variables/foo/bar.yml:

# multiple short strings in one file
meaning_of_life: 42

# and they can be nested if needed
nested:
  values:
    too: Yes!

Its values would be accessible as:

{% data foo.bar.meaning_of_life %}

{% data foo.bar.nested.values.too %}