summaryrefslogtreecommitdiff
path: root/examples/templates/index.liquid
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-04-08 19:56:21 -0400
committerJules Laplace <jules@okfoc.us>2015-04-08 19:56:21 -0400
commitfe1ea91f73059c146369ccb2404fcaf6d03d2f4d (patch)
tree9b8c5e37821e147048e5d1ddbe5435af47716949 /examples/templates/index.liquid
parent0c6d7edc0042464c8f05d38e6933186719dd259e (diff)
parent32f87fcb58466e0e311349f96751c18e2a2cd7ea (diff)
k
Diffstat (limited to 'examples/templates/index.liquid')
-rw-r--r--examples/templates/index.liquid28
1 files changed, 22 insertions, 6 deletions
diff --git a/examples/templates/index.liquid b/examples/templates/index.liquid
index 21d8764..7c12a86 100644
--- a/examples/templates/index.liquid
+++ b/examples/templates/index.liquid
@@ -4,11 +4,27 @@
<link rel="stylesheet" href="css/main.css">
</head>
<body>
- {{meta.project}}
- <ul>
- {% for project in projects %}
- <li>{{project.id}}</li>
- {% endfor %}
- </ul>
+ <div class="container">
+ <header>
+ <h1>Cheryl's Deli and Bakery</h1>
+ </header>
+ <section class="main">
+ <nav>
+ <ul>
+ {% for page in pages %}
+ <li><a href="{{page.id}}">{{page.id | capitalize}}</a></li>
+ {% endfor %}
+ </ul>
+ <nav>
+ <div class="breads">
+ <h2>Great breads:</h2>
+ <ul>
+ {% for bread in breads %}
+ <li><a href="{{bread.id}}">{{bread.id | capitalize}}</a></li>
+ {% endfor %}
+ </ul>
+ </div>
+ </section>
+ </div>
</body>
</html>