summaryrefslogtreecommitdiff
path: root/site/templates
diff options
context:
space:
mode:
authorJulie Lala <jules@okfoc.us>2015-04-09 05:11:56 -0400
committerJulie Lala <jules@okfoc.us>2015-04-09 05:11:56 -0400
commit2cb9ea4e87c5f81d7ed1d6377717ffc132e3f2fb (patch)
tree36aa5eed2ac4b4f9eb55c97286ba2a83f0e95fb1 /site/templates
parentfa6e344d6446f7d799afe4cc15505e3763b8872b (diff)
gruntfilé
Diffstat (limited to 'site/templates')
-rw-r--r--site/templates/bread.liquid14
-rw-r--r--site/templates/index.liquid30
-rw-r--r--site/templates/page.liquid14
3 files changed, 58 insertions, 0 deletions
diff --git a/site/templates/bread.liquid b/site/templates/bread.liquid
new file mode 100644
index 0000000..da36cce
--- /dev/null
+++ b/site/templates/bread.liquid
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel="stylesheet" href="../css/main.css">
+ </head>
+ <body>
+ <div class="container">
+ <h1>{{bread.type | capitalize}}</h1>
+ <p>
+ {{bread.description}}
+ </p>
+ </div>
+ </body>
+</html>
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>
diff --git a/site/templates/page.liquid b/site/templates/page.liquid
new file mode 100644
index 0000000..e90f7ce
--- /dev/null
+++ b/site/templates/page.liquid
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel="stylesheet" href="../css/main.css">
+ </head>
+ <body>
+ <div class="container">
+ <h1>{{page.title | capitalize}}</h1>
+ <p>
+ {{page.body}}
+ </p>
+ </div>
+ </body>
+</html>