summaryrefslogtreecommitdiff
path: root/_pages/projects.md
diff options
context:
space:
mode:
Diffstat (limited to '_pages/projects.md')
-rw-r--r--_pages/projects.md57
1 files changed, 57 insertions, 0 deletions
diff --git a/_pages/projects.md b/_pages/projects.md
new file mode 100644
index 0000000..9308732
--- /dev/null
+++ b/_pages/projects.md
@@ -0,0 +1,57 @@
+---
+layout: page
+title: projects
+permalink: /projects/
+description: A growing collection of your cool projects.
+nav: true
+display_categories: [work, fun]
+horizontal: false
+---
+<div class="projects">
+ {% if site.enable_project_categories and page.display_categories %}
+ <!-- Display categorized projects -->
+ {% for category in page.display_categories %}
+ <h2 class="category">{{category}}</h2>
+ {% assign categorized_projects = site.projects | where: "category", category %}
+ {% assign sorted_projects = categorized_projects | sort: "importance" %}
+ <!-- Generate cards for each project -->
+ {% if page.horizontal %}
+ <div class="container">
+ <div class="row row-cols-2">
+ {% for project in sorted_projects %}
+ {% include projects_horizontal.html %}
+ {% endfor %}
+ </div>
+ </div>
+ {% else %}
+ <div class="grid">
+ {% for project in sorted_projects %}
+ {% include projects.html %}
+ {% endfor %}
+ </div>
+ {% endif %}
+ {% endfor %}
+
+ {% else %}
+ <!-- Display projects without categories -->
+ {% assign sorted_projects = site.projects | sort: "importance" %}
+ <!-- Generate cards for each project -->
+ {% if page.horizontal %}
+ <div class="container">
+ <div class="row row-cols-2">
+ {% for project in sorted_projects %}
+ {% include projects_horizontal.html %}
+ {% endfor %}
+ </div>
+ </div>
+ {% else %}
+ <div class="grid">
+ {% for project in sorted_projects %}
+ {% include projects.html %}
+ {% endfor %}
+ </div>
+ {% endif %}
+
+ {% endif %}
+
+</div>