summaryrefslogtreecommitdiffstats
path: root/projects.html
diff options
context:
space:
mode:
Diffstat (limited to 'projects.html')
-rw-r--r--projects.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/projects.html b/projects.html
index 6800dcd..b24bc90 100644
--- a/projects.html
+++ b/projects.html
@@ -14,8 +14,10 @@ title: Projects
{% for item in site.projects limit:n offset:offset %}
<td class="project-item">
{% assign parts = item.url | split: '/' %}
- <img src="{{ parts[2] }}/{{ item.thumbnail }}" alt="{{ item.title }}">
- <h5><a href="{{ parts[2] }}" class="link-decor-none">{{ item.title }}</a></h5>
+ <a href="{{ parts[2] }}" class="link-decor-none">
+ <img src="{{ parts[2] }}/{{ item.thumbnail }}" alt="{{ item.title }}">
+ <h5>{{ item.title }}</h5>
+ </a>
</td>
{% endfor %}
</tr>