+
+ Recent Activity
+ Sorted by date
+
+
+ {% set entries = [] %}
+ {% for section_id in ['articles', 'blog'] %}
+ {% for item in site.get('/' ~ section_id).children %}
+ {% if entries.append(item) %}{% endif %}
{% endfor %}
- {% endif %}
- {% endif %}
- {% endfor %}
- {% for item in entries|sort(attribute='date', reverse=true) %}
-
-
- {{ item.kicker }}
-
-
-
- {{ item.summary }}
- Read entry →
-
- {% endfor %}
-
-
-
-
+ {% endfor %}
+ {% for project in site.query('/projects') %}
+ {% if project._model == 'project' %}
+ {% set devlog = site.get(project.path ~ '/devlog') %}
+ {% if devlog %}
+ {% for entry in devlog.children %}
+ {% if entries.append(entry) %}{% endif %}
+ {% endfor %}
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+ {% for item in entries|sort(attribute='date', reverse=true) %}
+
+
+ {{ item.kicker }}
+
+
+
+ {{ item.summary }}
+ Read entry →
+
+ {% endfor %}
+
+
+
+
+ Featured Projects
+ Curated work
+
+
+ {% for project in site.query('/projects').filter(F._model == 'project').filter(F.featured == true).order_by('featured_order', '-date').limit(3) %}
+
+
+ {{ project.status }}
+
+
+
+ {{ project.summary }}
+ View project →
+
+ {% else %}
+
Selected projects will appear here.
+ {% endfor %}
+
+ View all projects →
+