crunch-node/views/render-layout.jade
Andrew Davidson dc8639c5ef Fixed #19 with the addition of some new modules to parse the image EXIF
data.

Made a lot of progress on #1 with additional work on the rendering
templates.
2016-01-24 22:05:38 -05:00

28 lines
1.4 KiB
Text

doctype html
html
head
title #{title}
meta(charset="utf-8")
meta(http-equiv="X-UA-Compatible", content="IE=edge")
meta(name="viewport", content="width=device-width, initial-scale=1")
link(href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/simplex/bootstrap.min.css", rel="stylesheet", integrity="sha256-rgHoMgF45/9e2kvxfvR0KarwQNw5CRqgxbrthGpeUuc= sha512-CGGV53FSdrXrjyGCNk04p+xuna3CbE33n773A0EEmqtcN8W3NaFsR0vSQcbll5dpSS90d3i2Zh3jFX/j46hzJA==", crossorigin="anonymous")
link(rel='stylesheet', href='/static/stylesheets/style.css')
script(type="text/javascript", src="/static/scripts/crunch.js")
block head-addition
body(role="document")
div(class="container-fluid", role="main", style="padding-bottom: 20px;")
div.row
div(class="col-sm-3 sidebar")
div.row.visible-xs-block.col-xs-6.col-xs-offset-3
img(src="/static/images/logo.png").img-responsive
img(src="/static/images/logo.png").img-responsive.center-block.hidden-xs
div.hidden-xs
include ./render-sidebar.jade
div(class="col-sm-7 col-sm-offset-1 col-xs-12 main")
block content
div(style="text-align:center;").visible-xs-block.col-xs-12
include ./render-sidebar.jade
include ./render-footer.jade