summaryrefslogtreecommitdiff
path: root/layouts/projects/list.html
blob: e59efa247807f0dc3406c48e5eb5fbebc61ee6d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
<section class="projects">
  <div class="projectList">
  {{ range .Pages }}
  <div class="projectCard">
    <div class="projectDetails">
      <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
      <p>{{ .Description }}</p>
    </div>
  </div>
  {{ end }}
  </div>
</section>
{{ end }}