Skip to content

Files

Latest commit

sophiethekingjc-clarkSiaraMist
Dec 18, 2024
9ad58a9 · Dec 18, 2024

History

History
This branch is 1757 commits behind github/docs:main.

variables

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 7, 2021
Jun 4, 2024
Dec 3, 2024
Dec 14, 2022
May 29, 2024
Jun 5, 2024
Dec 18, 2024
Feb 28, 2024
Dec 12, 2022
Feb 14, 2024
Mar 20, 2024
Nov 13, 2024
Oct 29, 2024
May 8, 2024
Jun 3, 2024
Aug 30, 2024
Dec 16, 2024
Jan 23, 2024
Dec 18, 2024
Dec 12, 2024
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 %}