diff --git a/content/demos.liquid b/content/demos.liquid index c6fc061b..35a763a1 100644 --- a/content/demos.liquid +++ b/content/demos.liquid @@ -3,9 +3,12 @@ title: "Demos" layout: "demos-layout" ---
- {% for demo in collections['demo-item'] %} + {% assign demos_sorted = collections['demo-item'] | sort %} + {% for demo in demos_sorted %}

{{ demo.data.title }}

{% capture imgURL %}content/_static/images/demos/{{ demo.data.title }}.png{% endcapture %} @@ -15,3 +18,54 @@ layout: "demos-layout"
{% endfor %}
+ +