diff --git a/_includes/event.html b/_includes/event.html new file mode 100644 index 0000000..30812af --- /dev/null +++ b/_includes/event.html @@ -0,0 +1,9 @@ +
+ {% if item.slug %}{% endif %} + {% if item.title %}

{{item.title}}

{% endif %} + {% if item.slug %}
{% endif %} + {% if item.date %}{{item.date | date:"%b %d %Y"}}{% endif %} +
+ {{item.content}} +
+
\ No newline at end of file diff --git a/_includes/idea.html b/_includes/idea.html new file mode 100644 index 0000000..5a8f430 --- /dev/null +++ b/_includes/idea.html @@ -0,0 +1,13 @@ +
+
+ + +
+ {% if item.slug %}{% endif %} + {% if item.title %}

{{item.title}}

{% endif %} + {% if item.slug %}
{% endif %} + {% if item.date %}{{item.date | date:"%b %d %Y"}}{% endif %} +
+ {{item.content}} +
+
\ No newline at end of file diff --git a/index.html b/index.html index a9d6a2c..96f3ec2 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,11 @@

IDEAS

- Coming soon... +
+ {% for item in site.categories['ideas'] limit:30 %} + {% include idea.html %} + {% endfor %} +
@@ -66,7 +70,11 @@

Discussion

EVENTS

- Coming soon... +
+ {% for item in site.categories['events'] limit:30 %} + {% include event.html %} + {% endfor %} +