summaryrefslogtreecommitdiff
path: root/site/templates/index.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'site/templates/index.liquid')
-rw-r--r--site/templates/index.liquid30
1 files changed, 30 insertions, 0 deletions
diff --git a/site/templates/index.liquid b/site/templates/index.liquid
new file mode 100644
index 0000000..7c12a86
--- /dev/null
+++ b/site/templates/index.liquid
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel="stylesheet" href="css/main.css">
+ </head>
+ <body>
+ <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>