summaryrefslogtreecommitdiff
path: root/_pages
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2018-07-14 13:52:31 +0200
committerPatrick Spek <p.spek@tyil.nl>2018-07-14 13:52:31 +0200
commit7be28cbd4b7c094cf05accb5b85c0746e88181ad (patch)
tree1f6233069463c627b404b99bcf1d294da4169e18 /_pages
parent2cf753e4a8d0bb620ba09e5ac35bc1d3f16ad348 (diff)
Update project index and allow project descriptions
Diffstat (limited to '_pages')
-rw-r--r--_pages/projects.md16
1 files changed, 13 insertions, 3 deletions
diff --git a/_pages/projects.md b/_pages/projects.md
index 08293c3..021cc36 100644
--- a/_pages/projects.md
+++ b/_pages/projects.md
@@ -9,6 +9,7 @@ description: >
---
# Projects
+
Here is a list of all projects I worked on that I deem good or important enough
to publish here. This list won't always be complete, but you can check my
profiles on [Github][github] or [GitLab][gitlab] if you're interested to see
@@ -21,22 +22,31 @@ support][support]. You can also come discuss the projects and possible issues
you have found with them on IRC or contact me through email. Details for both
can be found [on the homepage][home].
+Some projects have extended descriptions available. You can reach these by
+clicking their respective links. You can read some background information on
+why I decided to start out with the project, and how to make use of it yourself
+as well.
+
<table class="table">
<thead>
<tr>
<th>Project</th>
<th>Language(s)</th>
<th>License</th>
- <th>Repository</th>
</tr>
</thead>
<tbody>
{% for project in site.projects %}
<tr>
- <td>{{ project.title }}</td>
+ <td>
+ {% if project.content != "" %}
+ <a href="{{ project.url }}">{{ project.title }}</a>
+ {% else %}
+ {{ project.title }}
+ {% endif %}
+ </td>
<td>{{ project.langs }}</td>
<td>{{ project.license }}</td>
- <td><a href="{{ project.repo }}">{{ project.repo }}</a></td>
</tr>
{% endfor %}
</tbody>