diff options
Diffstat (limited to 'templates/project.html')
-rw-r--r-- | templates/project.html | 37 |
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> |