I would like to use a Volt::Model as a reactive dictionary in a view.
Ideally, I would like something like this:
<dl>
{{ dictionary.each do |key, val| }}
<dt>Term: {{ key }}</dt>
<dd>Definition: {{ val }}</dd>
{{ end }}
</dl>
Is this possible in Volt without using an ArrayModel?