summaryrefslogtreecommitdiff
path: root/_layouts
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 /_layouts
parent2cf753e4a8d0bb620ba09e5ac35bc1d3f16ad348 (diff)
Update project index and allow project descriptions
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/project.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/_layouts/project.html b/_layouts/project.html
new file mode 100644
index 0000000..e85b209
--- /dev/null
+++ b/_layouts/project.html
@@ -0,0 +1,22 @@
+---
+layout: default
+---
+
+<article>
+ <header>
+ <h1>{{ page.title }}</h1>
+ </header>
+ <main>
+ {{ content }}
+ </main>
+ <footer>
+ <hr>
+ <ul>
+ <li><strong>Language(s)</strong>: {{ page.langs }}</li>
+ <li><strong>License</strong>: {{ page.license }}</li>
+ <li>
+ <strong>Source repository</strong>: <a href="{{ page.repo}}">{{ page.repo }}</a>
+ </li>
+ </ul>
+ </footer>
+</article>