summaryrefslogtreecommitdiff
path: root/_pages/projects.md
diff options
context:
space:
mode:
Diffstat (limited to '_pages/projects.md')
-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>