summaryrefslogtreecommitdiff
path: root/examples/templates/index.liquid
blob: 21d8764c3442f4d4785ffbe957622cd8ecd88e53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="css/main.css">
  </head>
  <body>
    {{meta.project}}
    <ul>
      {% for project in projects %}
        <li>{{project.id}}</li>
      {% endfor %}
    </ul>
  </body>
</html>