diff options
Diffstat (limited to 'themes/test/templates/partials/flash.liquid')
| -rw-r--r-- | themes/test/templates/partials/flash.liquid | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/themes/test/templates/partials/flash.liquid b/themes/test/templates/partials/flash.liquid new file mode 100644 index 0000000..e51a86b --- /dev/null +++ b/themes/test/templates/partials/flash.liquid @@ -0,0 +1,20 @@ +{% if success.length > 0 %} +<div class="success"> + <div class="message">Changes saved.</div> + <!-- + {% for info in success %} + <div class="message">{{info.action}}</div> + {% endfor %} + --> +</div> +{% endif %} + +{% if errors.length > 0 %} +<div class="errors"> + {% for error in errors %} + <div class="error"> + <div class="message">{{error.message}}</div> + </div> + {% endfor %} +</div> +{% endif %}
\ No newline at end of file |
