aboutsummaryrefslogtreecommitdiff
path: root/templates/project.html
diff options
context:
space:
mode:
authorJoris2019-05-01 15:52:32 +0200
committerJoris2019-05-01 17:11:02 +0200
commit23f04635cc26e1b0553088f28553f518488a9fc8 (patch)
tree97037643bab24564046ce4aba90481e3b92a15d3 /templates/project.html
parent0fe906ae7453aa684e998bbcc7a78b62d84f0206 (diff)
Setup personal page with Hakyll
Diffstat (limited to 'templates/project.html')
-rw-r--r--templates/project.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/templates/project.html b/templates/project.html
new file mode 100644
index 0000000..4bcc386
--- /dev/null
+++ b/templates/project.html
@@ -0,0 +1,37 @@
+<li class="Section__Container">
+
+ <h1 class="Section__Title">$name$</h1>
+
+ <div>
+ <a class="IconLink__Link" href="https://gitlab.com/$gitlab$">
+ <span class="IconLink__Icon">
+ $partial("templates/icons/gitlab.svg")$
+ </span>
+ $gitlab$
+ </a>
+ </div>
+
+ <div>
+ $if(live)$
+ <a class="IconLink__Link" href="$live$">
+ <span class="IconLink__Icon">
+ $partial("templates/icons/external-link.svg")$
+ </span>
+ $live$
+ </a>
+ $endif$
+ </div>
+
+ <div class="Project__Body Body__Container">
+ $body$
+ </div>
+
+ $if(skills)$
+ <ul class="Skills__List">
+ $for(skills)$
+ <li class="Skills__Item">$item$</li>
+ $endfor$
+ </ul>
+ $endif$
+
+</li>