Add include that will return 4 random example apps

This commit is contained in:
Brandon Keepers
2017-11-12 12:20:17 -06:00
parent f5e4fb2531
commit 9cfad673c6

View File

@@ -0,0 +1,7 @@
{% assign apps = site.apps | sample:4 %}
<ul>
{% for app in apps %}
<li><a href="{{ app.url }}">{{ app.title }}</a> - {{ app.description }}</li>
{% endfor %}
</ul>