feat(projects): add a basic listing page
This commit is contained in:
parent
9684a8061e
commit
da8c18d167
14
source/_pages/projects.html.twig
Normal file
14
source/_pages/projects.html.twig
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: Projects
|
||||
use:
|
||||
- projects
|
||||
draft: true
|
||||
---
|
||||
|
||||
<ul>
|
||||
{% for project in data.projects %}
|
||||
<li>
|
||||
<a href="{{ project.url }}">{{ project.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
Loading…
Reference in a new issue