diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-03-28 16:17:39 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-03-28 16:17:39 -0400 |
| commit | 53a4752825910cbfd5db7de8a71c2d9a2d4da90f (patch) | |
| tree | e4403bc6ceed48b41957c459366e2578c1407e9c /templates/index.liquid | |
| parent | 7a07fb2403f33f63079557c9cc9f38fe9409c30a (diff) | |
| parent | b2b7f8b9a519b941263ee0a5dc175e0ad576fae1 (diff) | |
Merge branch 'master' of github.com:okfocus/portfolio
Diffstat (limited to 'templates/index.liquid')
| -rw-r--r-- | templates/index.liquid | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/templates/index.liquid b/templates/index.liquid index e69de29..d48e2ea 100644 --- a/templates/index.liquid +++ b/templates/index.liquid @@ -0,0 +1,96 @@ +<!DOCTYPE html> +<html> + +<head> + <title>OKFocus</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> + <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" /> + <meta name="apple-mobile-web-app-status-bar-style" content="black"> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> + <meta name="keywords" content="OKFocus, " /> + <meta name="description" content="OKFocus" /> + <meta property="og:title" content="OKFocus" /> + <meta property="og:type" content="website" /> + <meta property="og:image" content="/icon.jpg" /> + <meta property="og:url" content="http://" /> + <meta property="og:site_name" content="OKFocus" /> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> + <link rel="image_src" href="/icon.jpg" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="apple-touch-icon" href="/icon.jpg" /> + <link rel="apple-touch-icon-precomposed" href="/icon.jpg" /> + <link href='https://fonts.googleapis.com/css?family=Roboto:400,300italic,300,400italic,700|Roboto+Mono:700' rel='stylesheet' type='text/css'> + <link href='assets/ok.css' rel='stylesheet' type='text/css'> +</head> + +<body> + <nav> + <span> + <div><img src="http://i1.wp.com/www.sora.digital/wp-content/uploads/glyphicons-517-menu-hamburger.png?fit=300%2C300" width="8"> INDEX</div> + <div>OKFocus LLC. 2016</div> + <div>SLIDE.1 - PG.1</div> + </span> + </nav> + {% for project in projects %} + <div class="item"> + <div class="top"> + <div class="cell {% if project.containImage == 'true' %}contain{% endif %}" style="background-image:url({{ project.image.uri }})"></div> + <iframe class="cell" src="http://okfoc.us"> + </iframe> + <div class="cell"></div> + </div> + <div class="bottom {% if project.press %}press{% else %}nopress{% endif %}"> + <div class="headings five"> + <span>YEAR</span> + <span>CLIENT</span> + <span>TITLE</span> + <span>NATURE OF WORK</span> + <span>BRIEF</span> + <span> </span> + </div> + <div class="five texts"> + <span>{{ project.year }}</span> + <span>{{ project.client }}</span> + <span>{{ project.title }}</span> + <span> + <ul> + {% assign categories = project.NatureOfWork | split "\n" %} + {% for category in categories %} + <li> + {{ category }} + </li> + {% endfor %} + </ul> + </span> + <span class="description"> + {{ project.brief }} + </span> + <span> + <ul> + {% for link in project.links %} + <li> + <a href="{{ link.url }}">{{ link.name }}</a> + </li> + {% endfor %} + </ul> + </span> + </div> + </div> + </div> + {% endfor %} + </div> +</body> +<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> +{% if meta.production %} +<script src="/assets/js/app.min.js"></script> +{% else %} +<script src="/assets/js/flickity.pkfg.js"></script> +<script src="/assets/js/app.js"></script> +{% endif %} + +</html>
\ No newline at end of file |
