* remove middleware that sets notification flags * move all notification handling into includes/header-notification.html * update tests * add release candidate header notification * add release candidate banner text * new script to add or remove a release candidate banner * Update script/release-banner.js Co-authored-by: Matt Pollard <mattpollard@users.noreply.github.com> * clarify error message * empty commit to rerun CI Co-authored-by: Matt Pollard <mattpollard@users.noreply.github.com>
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 %}