diff --git a/src/_layouts/spotlight.html b/src/_layouts/spotlight.html new file mode 100644 index 0000000..3a77342 --- /dev/null +++ b/src/_layouts/spotlight.html @@ -0,0 +1,36 @@ + + +{% include head.html %} + + + {% include header.html %} + +
+ +

{{ page.title }}

+

{{ page.description }}

+ +
+ +
+ {% if page.tiles-source == 'posts' %} + {% assign items = site.posts %} + {% elsif page.tiles-source == 'pages' %} + {% assign items = site.pages %} + {% endif %} + + {% for item in items limit:page.tiles-count %} +
+
{% if item.image %}{% endif %}
+
+

{{ item.title }}

+

{{ item.description }}

+
+
+ {% endfor %} +
+ + {% include footer.html %} + + + diff --git a/src/blog.md b/src/blog.md new file mode 100644 index 0000000..435fcb3 --- /dev/null +++ b/src/blog.md @@ -0,0 +1,8 @@ +--- +layout: spotlight +title: Blog +tiles-source: posts +tiles-limit: 50 +--- + +### Clients \ No newline at end of file