diff options
Diffstat (limited to 'site/templates')
| -rw-r--r-- | site/templates/all.liquid | 6 | ||||
| -rw-r--r-- | site/templates/index.liquid | 32 | ||||
| -rw-r--r-- | site/templates/project.liquid | 22 |
3 files changed, 28 insertions, 32 deletions
diff --git a/site/templates/all.liquid b/site/templates/all.liquid new file mode 100644 index 0000000..edb31d2 --- /dev/null +++ b/site/templates/all.liquid @@ -0,0 +1,6 @@ +<div class="entry all"> + <div class="project"> + <img src="http://twohustlers.com/bigimages/ss15_1.jpg"> + <span>DIESEL SS15</span> + </div> +</div> diff --git a/site/templates/index.liquid b/site/templates/index.liquid index ba0b78d..618f163 100644 --- a/site/templates/index.liquid +++ b/site/templates/index.liquid @@ -1,35 +1,3 @@ -<!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> - - <!doctype html> <!-- diff --git a/site/templates/project.liquid b/site/templates/project.liquid new file mode 100644 index 0000000..5e6bc84 --- /dev/null +++ b/site/templates/project.liquid @@ -0,0 +1,22 @@ +<div class="entry"> + <span> + <span class="postname">{{post.title}}</span> + + <div class="gallery" id="okgallery"> + {% if post.video %} + <div class="cell video" style="background-image:url({{ post.video.thumb }}" data-video="https://player.vimeo.com/video/{{ post.video.token }}" data-caption="{{ post.video.title }}"></div> + {% endif %} + {% for image in post.images %} + <div class="cell" data-caption="{{ image.caption }}"><img src="{{ image.uri }}"></div> + {% endfor %} + </div> + <div class="caption"></div> + <div class="content"> + {{ post.description }} + </div> + <div class="credit"> + <a href="#"><img src="assets/images/fb2.png"></a> + <a href="#"><img src="assets/images/tw2.png"></a> + </div> + </span> +</div>
\ No newline at end of file |
