aboutsummaryrefslogtreecommitdiff
path: root/templates/project.html
diff options
context:
space:
mode:
authorJoris2020-10-31 15:24:26 +0100
committerJoris2020-10-31 15:24:26 +0100
commit1e167679f6827c7119d616633b21fffef269cd75 (patch)
tree9c846c03913366936a093976a329e7a774002283 /templates/project.html
parentc9c0a6e8651da823b41e4186a736f2dbb48919db (diff)
Use only HTML and CSS
Diffstat (limited to 'templates/project.html')
-rw-r--r--templates/project.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/templates/project.html b/templates/project.html
deleted file mode 100644
index 4bcc386..0000000
--- a/templates/project.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<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>