aboutsummaryrefslogtreecommitdiff
path: root/templates/project.html
blob: 4bcc386d5a6dc1ba3810606f7e2d86fa8c8b3d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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>