natter/default_environment/templates/html/plain_list_item.dust

7 lines
248 B
Plaintext
Raw Normal View History

2023-10-28 00:12:56 +00:00
{@select key=list_type}
{@eq value="unordered"}<li></li>{/eq}
{@eq value="ordered"}<li></li>{/eq}
{@eq value="descriptive"}<dt></dt><dd></dd>{/eq}
{@none}{!TODO: make this panic!}ERROR: Unrecognized list type {.list_type}.{/none}
{/select}