summaryrefslogtreecommitdiff
path: root/_site_build
diff options
context:
space:
mode:
Diffstat (limited to '_site_build')
-rw-r--r--_site_build/_includes/footer.html5
-rw-r--r--_site_build/_includes/head.html5
-rw-r--r--_site_build/_includes/header.html8
-rw-r--r--_site_build/_includes/sidebar.html29
-rw-r--r--_site_build/_layouts/default.html31
-rw-r--r--_site_build/_layouts/post.html22
-rw-r--r--_site_build/about.html5
-rw-r--r--_site_build/css/style.css333
-rw-r--r--_site_build/index.html25
-rw-r--r--_site_build/js/modernizr-2.0.6.min.js4
10 files changed, 467 insertions, 0 deletions
diff --git a/_site_build/_includes/footer.html b/_site_build/_includes/footer.html
new file mode 100644
index 0000000..70bd3c5
--- /dev/null
+++ b/_site_build/_includes/footer.html
@@ -0,0 +1,5 @@
+<footer>
+ <p>
+ <small>Copyright &copy; 2011 by {{ site.author }}. All Rights Reserved.</small>
+ </p>
+</footer>
diff --git a/_site_build/_includes/head.html b/_site_build/_includes/head.html
new file mode 100644
index 0000000..54d16d0
--- /dev/null
+++ b/_site_build/_includes/head.html
@@ -0,0 +1,5 @@
+<meta charset="utf-8">
+<title>{{ page.title }} - {{ site.title }}</title>
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="stylesheet" href="/css/style.css?v=1">
+<script src="/js/modernizr-2.0.6.min.js"></script>
diff --git a/_site_build/_includes/header.html b/_site_build/_includes/header.html
new file mode 100644
index 0000000..7a3c22e
--- /dev/null
+++ b/_site_build/_includes/header.html
@@ -0,0 +1,8 @@
+<header>
+ <hgroup>
+ <h1><a href="/" rel="home" target="_self" title="{{ site.title }}">{{ site.title }}</a></h1>
+ {% if site.subtitle %}
+ <h2>{{ site.subtitle }}</h2>
+ {% endif %}
+ </hgroup>
+</header>
diff --git a/_site_build/_includes/sidebar.html b/_site_build/_includes/sidebar.html
new file mode 100644
index 0000000..a8fa207
--- /dev/null
+++ b/_site_build/_includes/sidebar.html
@@ -0,0 +1,29 @@
+<aside>
+ <nav id="site-navigation">
+ <h2>Links</h2>
+ <ul>
+ <li><a href="/" rel="home" target="_self" title="{{ site.title }}">Home</a></li>
+ <li><a href="/about.html" rel="author" target="_self" title="About {{ site.author }}">About</a></li>
+ </ul>
+ </nav>
+ <aside id="social">
+ <h2>Contact</h2>
+ <ul>
+ {% if site.email %}
+ <li>
+ <a href="mailto:{{ site.email }}" rel="author" target="_blank" title="Email {{site.author }}"><span>Email</span>{{ site.email }}</a>
+ </li>
+ {% endif %}
+ {% if site.twitter %}
+ <li>
+ <a href="http://twitter.com/#!/{{ site.twitter }}" rel="external nofollow" target="_blank" title="Follow {{ site.author }} on Twitter"><span>Twitter</span>@{{ site.twitter }}</a>
+ </li>
+ {% endif %}
+ {% if site.github %}
+ <li>
+ <a href="https://github.com/{{ site.github }}" rel="external nofollow" target="_blank" title="Follow {{ site.author }} on GitHub"><span>Github</span>{{ site.github }}</a>
+ </li>
+ {% endif %}
+ </ul>
+ </aside>
+</aside>
diff --git a/_site_build/_layouts/default.html b/_site_build/_layouts/default.html
new file mode 100644
index 0000000..b27e119
--- /dev/null
+++ b/_site_build/_layouts/default.html
@@ -0,0 +1,31 @@
+<!doctype html>
+<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
+<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
+<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
+<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
+<head>
+ {% include head.html %}
+</head>
+<body>
+ <div class="container">
+ <div id="header" class="row">
+ <div class="twelve columns">
+ {% include header.html %}
+ </div>
+ </div>
+ <div id="content" class="row">
+ <div class="eight columns">
+ {{ content }}
+ </div>
+ <div class="four columns">
+ {% include sidebar.html %}
+ </div>
+ </div>
+ <div id="footer" class="row">
+ <div class="twelve columns">
+ {% include footer.html %}
+ </div>
+ </div>
+ </div>
+</body>
+</html>
diff --git a/_site_build/_layouts/post.html b/_site_build/_layouts/post.html
new file mode 100644
index 0000000..3d460eb
--- /dev/null
+++ b/_site_build/_layouts/post.html
@@ -0,0 +1,22 @@
+---
+layout: default
+---
+<article>
+ <header>
+ <h1>{{ page.title }}</h1>
+ <time datetime="{{ page.date | date: '%Y-%m-%d' }}" pubdate>{{ page.date | date: '%A, %d %B, %Y' }}</time>
+ </header>
+ {{ content }}
+ <footer>
+ <nav>
+ <ul>
+ {% if page.previous.url %}
+ <li class="prev-article"><a href="{{ page.previous.url }}" target="_self" rel="prev" title="{{ page.previous.title }}">&laquo; {{ page.previous.title }}</a></li>
+ {% endif %}
+ {% if page.next.url %}
+ <li class="next-article"><a href="{{ page.next.url }}" target="_self" rel="next" title="{{ page.next.title }}">{{ page.next.title }} &raquo;</a></li>
+ {% endif %}
+ </ul>
+ </nav>
+ </footer>
+</article>
diff --git a/_site_build/about.html b/_site_build/about.html
new file mode 100644
index 0000000..3d49872
--- /dev/null
+++ b/_site_build/about.html
@@ -0,0 +1,5 @@
+---
+layout: default
+title: About
+---
+<h2>about</h2>
diff --git a/_site_build/css/style.css b/_site_build/css/style.css
new file mode 100644
index 0000000..71f09f6
--- /dev/null
+++ b/_site_build/css/style.css
@@ -0,0 +1,333 @@
+/* HTML5 ✰ Boilerplate
+ * ==|== normalize ==========================================================
+ */
+
+article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
+audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
+audio:not([controls]) { display: none; }
+[hidden] { display: none; }
+
+html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
+body { margin: 0; font-size: 13px; line-height: 1.231; }
+body, button, input, select, textarea { font-family: sans-serif; color: #222; }
+
+::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
+::selection { background: #fe57a1; color: #fff; text-shadow: none; }
+
+a { color: #00e; }
+a:visited { color: #551a8b; }
+a:hover { color: #06e; }
+a:focus { outline: thin dotted; }
+a:hover, a:active { outline: 0; }
+
+abbr[title] { border-bottom: 1px dotted; }
+b, strong { font-weight: bold; }
+blockquote { margin: 1em 40px; }
+dfn { font-style: italic; }
+hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
+ins { background: #ff9; color: #000; text-decoration: none; }
+mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
+pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
+pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
+q { quotes: none; }
+q:before, q:after { content: ""; content: none; }
+small { font-size: 85%; }
+sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
+sup { top: -0.5em; }
+sub { bottom: -0.25em; }
+ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
+dd { margin: 0 0 0 40px; }
+nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
+img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
+svg:not(:root) { overflow: hidden; }
+figure { margin: 0; }
+
+form { margin: 0; }
+fieldset { border: 0; margin: 0; padding: 0; }
+label { cursor: pointer; }
+legend { border: 0; *margin-left: -7px; padding: 0; }
+button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
+button, input { line-height: normal; *overflow: visible; }
+table button, table input { *overflow: auto; }
+button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
+input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
+input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
+input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
+button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
+textarea { overflow: auto; vertical-align: top; resize: vertical; }
+input:valid, textarea:valid { }
+input:invalid, textarea:invalid { background-color: #f0dddd; }
+
+table { border-collapse: collapse; border-spacing: 0; }
+td { vertical-align: top; }
+
+/* --------------------------------------------------
+ :: Grid
+
+ This is the mobile-friendly, responsive grid that
+ lets Foundation work much of its magic.
+
+-------------------------------------------------- */
+.container { padding: 0px 20px; }
+
+.row { width: 100%; max-width: 980px; min-width: 727px; margin: 0 auto; }
+/* To fix the grid into a certain size, set max-width to width */
+.row .row { min-width: 0px; }
+
+.column, .columns { margin-left: 4.4%; float: left; min-height: 1px; position: relative; }
+.column:first-child, .columns:first-child { margin-left: 0px; }
+
+.row .one.columns { width: 4.3%; }
+.row .two.columns { width: 13%; }
+.row .three.columns { width: 21.68%; }
+.row .four.columns { width: 30.4%; }
+.row .five.columns { width: 39.1%; }
+.row .six.columns { width: 47.8%; }
+.row .seven.columns { width: 56.5%; }
+.row .eight.columns { width: 65.2%; }
+.row .nine.columns { width: 73.9%; }
+.row .ten.columns { width: 82.6%; }
+.row .eleven.columns { width: 91.3%; }
+.row .twelve.columns { width: 100%; }
+
+.row .offset-by-one { margin-left: 13.1%; }
+.row .offset-by-two { margin-left: 21.8%; }
+.row .offset-by-three { margin-left: 30.5%; }
+.row .offset-by-four { margin-left: 39.2%; }
+.row .offset-by-five { margin-left: 47.9%; }
+.row .offset-by-six { margin-left: 56.6%; }
+.row .offset-by-seven { margin-left: 65.3%; }
+.row .offset-by-eight { margin-left: 74.0%; }
+.row .offset-by-nine { margin-left: 82.7%; }
+.row .offset-by-ten { margin-left: 91.4%; }
+/*.row .offset-by-eleven { margin-left: 95.7%; }*/
+
+.row .one.centered { margin-left: 47.9%; }
+.row .two.centered { margin-left: 43.5%; }
+.row .three.centered { margin-left: 39.2%; }
+.row .four.centered { margin-left: 34.8%; }
+.row .five.centered { margin-left: 30.5%; }
+.row .six.centered { margin-left: 26.1%; }
+.row .seven.centered { margin-left: 21.8%; }
+.row .eight.centered { margin-left: 17.4%; }
+.row .nine.centered { margin-left: 13.1%; }
+.row .ten.centered { margin-left: 8.7%; }
+.row .eleven.centered { margin-left: 4.3%; }
+
+.row .offset-by-one:first-child { margin-left: 8.7%; }
+.row .offset-by-two:first-child { margin-left: 17.4%; }
+.row .offset-by-three:first-child { margin-left: 26.1%; }
+.row .offset-by-four:first-child { margin-left: 34.8%; }
+.row .offset-by-five:first-child { margin-left: 43.5%; }
+.row .offset-by-six:first-child { margin-left: 52.2%; }
+.row .offset-by-seven:first-child { margin-left: 60.9%; }
+.row .offset-by-eight:first-child { margin-left: 69.6%; }
+.row .offset-by-nine:first-child { margin-left: 78.3%; }
+.row .offset-by-ten:first-child { margin-left: 87%; }
+.row .offset-by-eleven:first-child { margin-left: 95.7%; }
+
+img, object, embed { max-width: 100%; height: auto; }
+img { -ms-interpolation-mode: bicubic; }
+
+ /* Nicolas Gallagher's micro clearfix */
+ .row:before, .row:after, .clearfix:before, .clearfix:after { content:""; display:table; }
+ .row:after, .clearfix:after { clear: both; }
+ .row, .clearfix { zoom: 1; }
+
+/* ==|== primary styles =====================================================
+ Author: David T. Sadler
+ ========================================================================== */
+body {
+ font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
+}
+
+a, a:visited {
+ text-decoration: none;
+ color: #2A85E8;
+}
+
+a:hover {
+ color: #11639D;
+}
+
+a:focus {
+ color: #CC4714
+}
+
+h1, h2, h3, h4, h5, h6 {
+ margin: 0;
+ padding: 0;
+}
+
+#header {
+ margin-bottom: 3em; /* 39 / 13 */
+ border-bottom: 1px solid #CCCCCC;
+}
+
+#header h1 {
+ font-size: 3em; /* 39 / 13 */
+}
+
+#header h1 a {
+ color: #000000;
+}
+
+#header h2 {
+ margin-bottom: 0.5em;
+ font-size: 2em; /* 26 / 13 */
+ font-style: italic;
+ font-weight: lighter;
+ color: #777777;
+}
+
+#site-navigation h2, #social h2 {
+ font-size: 1.461538462em; /* 19 / 13 */
+}
+
+#site-navigation ul, #social ul {
+ margin: 0.5em 0 1em 1em;
+ padding: 0;
+ list-style: none;
+ font-size: 1.1538461538em; /* 15 / 13 */
+}
+
+#social ul span {
+ display: inline-block;
+ width: 3.5em;
+ color: #999999;
+ text-transform: lowercase;
+}
+
+li.prev-article{
+ float: left;
+ width: 50%;
+}
+
+li.next-article{
+ float: right;
+ text-align: right;
+ width: 50%;
+}
+
+li.prev-article a, li.next-article a {
+ display: block;
+}
+
+article h1
+{
+ font-size: 1.461538462em; /* 19 / 13 */
+}
+
+article h2
+{
+ font-size: 1.1538461538em; /* 15 / 13 */
+}
+
+article footer nav ul:after
+{
+ clear: both;
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+
+/* ==|== non-semantic helper classes ======================================== */
+.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
+.ir br { display: none; }
+.hidden { display: none !important; visibility: hidden; }
+.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
+.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
+.invisible { visibility: hidden; }
+.clearfix:before, .clearfix:after { content: ""; display: table; }
+.clearfix:after { clear: both; }
+.clearfix { zoom: 1; }
+/* --------------------------------------------------
+ :: Mobile Visibility Affordances
+---------------------------------------------------*/
+.show-on-phones { display: none !important; }
+.show-on-tablets { display: none !important; }
+.show-on-desktops { display: block; }
+
+.hide-on-phones { display: block !important; }
+.hide-on-tablets { display: block !important; }
+.hide-on-desktops { display: none; }
+
+/* ==|== media queries ====================================================== */
+/* --------------------------------------------------
+ :: Grid
+ -------------------------------------------------- */
+/* Mobile */
+@media only screen and (max-width: 767px) {
+ body { -webkit-text-size-adjust: none; }
+
+ .row, body, .container { width: 100%; min-width: 0; margin-left: 0px; margin-right: 0px; padding-left: 0px; padding-right: 0px; }
+ .row .row .column, .row .row .columns { padding: 0; }
+ .column, .columns { width: auto !important; float: none; margin-left: 0px; margin-right: 0px; padding-left: 20px; padding-right: 20px; }
+ .column:last-child, .columns:last-child { margin-right: 0px; }
+ .offset-by-one, .offset-by-two, .offset-by-three, .offset-by-four, .offset-by-five, .offset-by-six, .offset-by-seven, .offset-by-eight, .offset-by-nine, .offset-by-ten, .offset-by-eleven, .centered { margin-left: 0% !important; }
+ .hide-on-phones { display: none !important; }
+ .hide-on-tablets { display: block !important; }
+ .hide-on-desktops { display: block !important; }
+
+ .show-on-phones { display: block !important; }
+ .show-on-tablets { display: none !important; }
+ .show-on-desktops { display: none !important; }
+
+ #site-navigation h2, #social h2 {
+ margin: 0 -20px;
+ padding: 0.5em 20px 0.5em 20px;
+ background-color: #CCCCCC;
+ color: #ffffff;
+ font-size: 1.461538462em; /* 19 / 13 */
+ }
+
+ #site-navigation ul, #social ul {
+ margin: 0 -20px;
+ border-bottom: 1px solid #CCCCCC;
+ font-size: 1.461538462em; /* 19 / 13 */
+ }
+
+ #site-navigation li, #social li {
+ border-top: 1px solid #CCCCCC;
+ }
+
+ #site-navigation a, #social a {
+ display: block;
+ padding: 0.5em 20px 0.5em 20px;
+ }
+
+ article footer nav ul
+ {
+ padding: 1.5em 0;
+ }
+}
+
+@media only screen and (max-device-width: 800px), only screen and (device-width: 800px) {
+ .hide-on-phones { display: block !important; }
+ .hide-on-tablets { display: none !important; }
+ .hide-on-desktops { display: block !important; }
+
+ .show-on-phones { display: none !important; }
+ .show-on-tablets { display: block !important; }
+ .show-on-desktops { display: none !important; }
+}
+
+/* ==|== print styles ======================================================= */
+
+@media print {
+ * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }
+ a, a:visited { text-decoration: underline; }
+ a[href]:after { content: " (" attr(href) ")"; }
+ abbr[title]:after { content: " (" attr(title) ")"; }
+ .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
+ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
+ thead { display: table-header-group; }
+ tr, img { page-break-inside: avoid; }
+ img { max-width: 100% !important; }
+ @page { margin: 0.5cm; }
+ p, h2, h3 { orphans: 3; widows: 3; }
+ h2, h3 { page-break-after: avoid; }
+}
diff --git a/_site_build/index.html b/_site_build/index.html
new file mode 100644
index 0000000..0d1c721
--- /dev/null
+++ b/_site_build/index.html
@@ -0,0 +1,25 @@
+---
+layout: default
+title: Home
+---
+<h2>home</h2>
+<ul>
+{% for post in site.posts %}
+ <li><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
+{% endfor %}
+</ul>
+<p>
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed aliquet rutrum leo sit amet convallis. Maecenas quis magna leo. Aenean at dolor a ante facilisis faucibus tincidunt ac quam. Duis eu lorem erat. Curabitur vel aliquam orci. Aliquam quis leo a purus sagittis interdum. Quisque varius, magna ac mattis fringilla, felis elit pharetra mauris, a consectetur nunc tortor ac mi. In hac habitasse platea dictumst. Pellentesque eu pulvinar libero. Proin nec ante non lectus mollis eleifend et tincidunt purus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam ornare elementum cursus. Aenean quis sapien sem. Nunc orci ante, pellentesque eget tempus sit amet, sagittis at leo.
+</p>
+<p>
+Donec blandit mauris ut augue consequat in ullamcorper mi blandit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nam nisl leo, viverra vitae scelerisque sit amet, gravida quis tortor. Integer tincidunt eros in lacus ornare imperdiet. Aliquam eget elementum justo. Suspendisse eu magna dolor. Sed id nulla felis. Sed sit amet nunc sed erat ullamcorper euismod bibendum in ante. Proin et erat id sapien malesuada aliquam id nec dui. Proin nec venenatis leo. Vestibulum accumsan consequat fringilla. Curabitur eu neque magna, nec pharetra leo.
+</p>
+<p>
+Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed vulputate est ut dui egestas convallis. Donec nisl dolor, volutpat eget fringilla id, adipiscing tincidunt sem. Donec facilisis molestie malesuada. Vivamus ante dolor, commodo non imperdiet in, rhoncus a urna. Donec fringilla est vitae libero egestas molestie. Aenean iaculis mauris at nisi interdum hendrerit. Aliquam quam erat, pretium nec imperdiet id, facilisis sed est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Etiam eget neque tellus. Vestibulum faucibus nisl tristique mauris semper sollicitudin. Nunc neque magna, auctor et semper et, commodo eget odio. Aliquam auctor sapien nec nisl eleifend ut dignissim arcu rutrum. Integer luctus mauris sed nibh convallis sit amet adipiscing felis aliquet. Duis aliquet, metus ac malesuada tincidunt, magna diam porta felis, quis venenatis nunc neque vitae lorem.
+</p>
+<p>
+Suspendisse non felis massa. Morbi nulla odio, tempor vel convallis a, viverra eget purus. Morbi id sapien turpis, id placerat sapien. Mauris orci neque, congue sed rhoncus sit amet, placerat sit amet mi. Vivamus eu lectus eget risus facilisis egestas. Ut sed rhoncus velit. Phasellus tempor eros et tellus volutpat cursus. Cras posuere tortor quis urna aliquam porttitor. Praesent tellus felis, pellentesque eu aliquam sit amet, varius et risus. In hac habitasse platea dictumst. Pellentesque consectetur consectetur enim, quis accumsan dolor euismod in. Suspendisse aliquam congue mauris scelerisque auctor.
+</p>
+<p>
+Duis neque velit, sollicitudin at tempus et, interdum sit amet mauris. Nam at risus lacus, eu sollicitudin mauris. Sed egestas interdum ipsum, at pretium dui vehicula vel. Aenean quis mi arcu, ac pretium urna. Duis pellentesque rhoncus est, id viverra massa convallis ac. Maecenas commodo lorem facilisis est fermentum vitae pretium felis varius. Suspendisse in tortor felis. Curabitur eu porttitor arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nam leo tellus, pulvinar non laoreet sed, condimentum sit amet elit.
+</p>
diff --git a/_site_build/js/modernizr-2.0.6.min.js b/_site_build/js/modernizr-2.0.6.min.js
new file mode 100644
index 0000000..4f00b71
--- /dev/null
+++ b/_site_build/js/modernizr-2.0.6.min.js
@@ -0,0 +1,4 @@
+/* Modernizr 2.0.6 | MIT & BSD
+ * Contains: All core tests, html5shiv, yepnope, respond.js. Get your own custom build at www.modernizr.com/download/
+ */
+;window.Modernizr=function(a,b,c){function I(){e.input=function(a){for(var b=0,c=a.length;b<c;b++)t[a[b]]=a[b]in l;return t}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var d=0,e,f,h,i=a.length;d<i;d++)l.setAttribute("type",f=a[d]),e=l.type!=="text",e&&(l.value=m,l.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(f)&&l.style.WebkitAppearance!==c?(g.appendChild(l),h=b.defaultView,e=h.getComputedStyle&&h.getComputedStyle(l,null).WebkitAppearance!=="textfield"&&l.offsetHeight!==0,g.removeChild(l)):/^(search|tel)$/.test(f)||(/^(url|email)$/.test(f)?e=l.checkValidity&&l.checkValidity()===!1:/^color$/.test(f)?(g.appendChild(l),g.offsetWidth,e=l.value!=m,g.removeChild(l)):e=l.value!=m)),s[a[d]]=!!e;return s}("search tel url email datetime date month week time datetime-local number range color".split(" "))}function G(a,b){var c=a.charAt(0).toUpperCase()+a.substr(1),d=(a+" "+p.join(c+" ")+c).split(" ");return F(d,b)}function F(a,b){for(var d in a)if(k[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function E(a,b){return!!~(""+a).indexOf(b)}function D(a,b){return typeof a===b}function C(a,b){return B(o.join(a+";")+(b||""))}function B(a){k.cssText=a}var d="2.0.6",e={},f=!0,g=b.documentElement,h=b.head||b.getElementsByTagName("head")[0],i="modernizr",j=b.createElement(i),k=j.style,l=b.createElement("input"),m=":)",n=Object.prototype.toString,o=" -webkit- -moz- -o- -ms- -khtml- ".split(" "),p="Webkit Moz O ms Khtml".split(" "),q={svg:"http://www.w3.org/2000/svg"},r={},s={},t={},u=[],v=function(a,c,d,e){var f,h,j,k=b.createElement("div");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:i+(d+1),k.appendChild(j);f=["&shy;","<style>",a,"</style>"].join(""),k.id=i,k.innerHTML+=f,g.appendChild(k),h=c(k,a),k.parentNode.removeChild(k);return!!h},w=function(b){if(a.matchMedia)return matchMedia(b).matches;var c;v("@media "+b+" { #"+i+" { position: absolute; } }",function(b){c=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle).position=="absolute"});return c},x=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=D(e[d],"function"),D(e[d],c)||(e[d]=c),e.removeAttribute(d))),e=null;return f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),y,z={}.hasOwnProperty,A;!D(z,c)&&!D(z.call,c)?A=function(a,b){return z.call(a,b)}:A=function(a,b){return b in a&&D(a.constructor.prototype[b],c)};var H=function(c,d){var f=c.join(""),g=d.length;v(f,function(c,d){var f=b.styleSheets[b.styleSheets.length-1],h=f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"",i=c.childNodes,j={};while(g--)j[i[g].id]=i[g];e.touch="ontouchstart"in a||j.touch.offsetTop===9,e.csstransforms3d=j.csstransforms3d.offsetLeft===9,e.generatedcontent=j.generatedcontent.offsetHeight>=1,e.fontface=/src/i.test(h)&&h.indexOf(d.split(" ")[0])===0},g,d)}(['@font-face {font-family:"font";src:url("https://")}',["@media (",o.join("touch-enabled),("),i,")","{#touch{top:9px;position:absolute}}"].join(""),["@media (",o.join("transform-3d),("),i,")","{#csstransforms3d{left:9px;position:absolute}}"].join(""),['#generatedcontent:after{content:"',m,'";visibility:hidden}'].join("")],["fontface","touch","csstransforms3d","generatedcontent"]);r.flexbox=function(){function c(a,b,c,d){a.style.cssText=o.join(b+":"+c+";")+(d||"")}function a(a,b,c,d){b+=":",a.style.cssText=(b+o.join(c+";"+b)).slice(0,-b.length)+(d||"")}var d=b.createElement("div"),e=b.createElement("div");a(d,"display","box","width:42px;padding:0;"),c(e,"box-flex","1","width:10px;"),d.appendChild(e),g.appendChild(d);var f=e.offsetWidth===42;d.removeChild(e),g.removeChild(d);return f},r.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},r.canvastext=function(){return!!e.canvas&&!!D(b.createElement("canvas").getContext("2d").fillText,"function")},r.webgl=function(){return!!a.WebGLRenderingContext},r.touch=function(){return e.touch},r.geolocation=function(){return!!navigator.geolocation},r.postmessage=function(){return!!a.postMessage},r.websqldatabase=function(){var b=!!a.openDatabase;return b},r.indexedDB=function(){for(var b=-1,c=p.length;++b<c;)if(a[p[b].toLowerCase()+"IndexedDB"])return!0;return!!a.indexedDB},r.hashchange=function(){return x("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},r.history=function(){return!!a.history&&!!history.pushState},r.draganddrop=function(){return x("dragstart")&&x("drop")},r.websockets=function(){for(var b=-1,c=p.length;++b<c;)if(a[p[b]+"WebSocket"])return!0;return"WebSocket"in a},r.rgba=function(){B("background-color:rgba(150,255,150,.5)");return E(k.backgroundColor,"rgba")},r.hsla=function(){B("background-color:hsla(120,40%,100%,.5)");return E(k.backgroundColor,"rgba")||E(k.backgroundColor,"hsla")},r.multiplebgs=function(){B("background:url(https://),url(https://),red url(https://)");return/(url\s*\(.*?){3}/.test(k.background)},r.backgroundsize=function(){return G("backgroundSize")},r.borderimage=function(){return G("borderImage")},r.borderradius=function(){return G("borderRadius")},r.boxshadow=function(){return G("boxShadow")},r.textshadow=function(){return b.createElement("div").style.textShadow===""},r.opacity=function(){C("opacity:.55");return/^0.55$/.test(k.opacity)},r.cssanimations=function(){return G("animationName")},r.csscolumns=function(){return G("columnCount")},r.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";B((a+o.join(b+a)+o.join(c+a)).slice(0,-a.length));return E(k.backgroundImage,"gradient")},r.cssreflections=function(){return G("boxReflect")},r.csstransforms=function(){return!!F(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])},r.csstransforms3d=function(){var a=!!F(["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"]);a&&"webkitPerspective"in g.style&&(a=e.csstransforms3d);return a},r.csstransitions=function(){return G("transitionProperty")},r.fontface=function(){return e.fontface},r.generatedcontent=function(){return e.generatedcontent},r.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType){c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"');var d='video/mp4; codecs="avc1.42E01E';c.h264=a.canPlayType(d+'"')||a.canPlayType(d+', mp4a.40.2"'),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"')}}catch(e){}return c},r.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"'),c.mp3=a.canPlayType("audio/mpeg;"),c.wav=a.canPlayType('audio/wav; codecs="1"'),c.m4a=a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")}catch(d){}return c},r.localstorage=function(){try{return!!localStorage.getItem}catch(a){return!1}},r.sessionstorage=function(){try{return!!sessionStorage.getItem}catch(a){return!1}},r.webworkers=function(){return!!a.Worker},r.applicationcache=function(){return!!a.applicationCache},r.svg=function(){return!!b.createElementNS&&!!b.createElementNS(q.svg,"svg").createSVGRect},r.inlinesvg=function(){var a=b.createElement("div");a.innerHTML="<svg/>";return(a.firstChild&&a.firstChild.namespaceURI)==q.svg},r.smil=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"animate")))},r.svgclippaths=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"clipPath")))};for(var J in r)A(r,J)&&(y=J.toLowerCase(),e[y]=r[J](),u.push((e[y]?"":"no-")+y));e.input||I(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)A(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return;b=typeof b=="boolean"?b:!!b(),g.className+=" "+(b?"":"no-")+a,e[a]=b}return e},B(""),j=l=null,a.attachEvent&&function(){var a=b.createElement("div");a.innerHTML="<elem></elem>";return a.childNodes.length!==1}()&&function(a,b){function s(a){var b=-1;while(++b<g)a.createElement(f[b])}a.iepp=a.iepp||{};var d=a.iepp,e=d.html5elements||"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",f=e.split("|"),g=f.length,h=new RegExp("(^|\\s)("+e+")","gi"),i=new RegExp("<(/*)("+e+")","gi"),j=/^\s*[\{\}]\s*$/,k=new RegExp("(^|[^\\n]*?\\s)("+e+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),l=b.createDocumentFragment(),m=b.documentElement,n=m.firstChild,o=b.createElement("body"),p=b.createElement("style"),q=/print|all/,r;d.getCSS=function(a,b){if(a+""===c)return"";var e=-1,f=a.length,g,h=[];while(++e<f){g=a[e];if(g.disabled)continue;b=g.media||b,q.test(b)&&h.push(d.getCSS(g.imports,b),g.cssText),b="all"}return h.join("")},d.parseCSS=function(a){var b=[],c;while((c=k.exec(a))!=null)b.push(((j.exec(c[1])?"\n":c[1])+c[2]+c[3]).replace(h,"$1.iepp_$2")+c[4]);return b.join("\n")},d.writeHTML=function(){var a=-1;r=r||b.body;while(++a<g){var c=b.getElementsByTagName(f[a]),d=c.length,e=-1;while(++e<d)c[e].className.indexOf("iepp_")<0&&(c[e].className+=" iepp_"+f[a])}l.appendChild(r),m.appendChild(o),o.className=r.className,o.id=r.id,o.innerHTML=r.innerHTML.replace(i,"<$1font")},d._beforePrint=function(){p.styleSheet.cssText=d.parseCSS(d.getCSS(b.styleSheets,"all")),d.writeHTML()},d.restoreHTML=function(){o.innerHTML="",m.removeChild(o),m.appendChild(r)},d._afterPrint=function(){d.restoreHTML(),p.styleSheet.cssText=""},s(b),s(l);d.disablePP||(n.insertBefore(p,n.firstChild),p.media="print",p.className="iepp-printshim",a.attachEvent("onbeforeprint",d._beforePrint),a.attachEvent("onafterprint",d._afterPrint))}(a,b),e._version=d,e._prefixes=o,e._domPrefixes=p,e.mq=w,e.hasEvent=x,e.testProp=function(a){return F([a])},e.testAllProps=G,e.testStyles=v,e.prefixed=function(a){return G(a,"pfx")},g.className=g.className.replace(/\bno-js\b/,"")+(f?" js "+u.join(" "):"");return e}(this,this.document),function(a,b){function u(){r(!0)}a.respond={},respond.update=function(){},respond.mediaQueriesSupported=b;if(!b){var c=a.document,d=c.documentElement,e=[],f=[],g=[],h={},i=30,j=c.getElementsByTagName("head")[0]||d,k=j.getElementsByTagName("link"),l=[],m=function(){var b=k,c=b.length,d=0,e,f,g,i;for(;d<c;d++)e=b[d],f=e.href,g=e.media,i=e.rel&&e.rel.toLowerCase()==="stylesheet",!!f&&i&&!h[f]&&(!/^([a-zA-Z]+?:(\/\/)?(www\.)?)/.test(f)||f.replace(RegExp.$1,"").split("/")[0]===a.location.host?l.push({href:f,media:g}):h[f]=!0);n()},n=function(){if(l.length){var a=l.shift();s(a.href,function(b){o(b,a.href,a.media),h[a.href]=!0,n()})}},o=function(a,b,c){var d=a.match(/@media[^\{]+\{([^\{\}]+\{[^\}\{]+\})+/gi),g=d&&d.length||0,b=b.substring(0,b.lastIndexOf("/")),h=function(a){return a.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+b+"$2$3")},i=!g&&c,j=0,k,l,m,n,o;b.length&&(b+="/"),i&&(g=1);for(;j<g;j++){k=0,i?(l=c,f.push(h(a))):(l=d[j].match(/@media ([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1,f.push(RegExp.$2&&h(RegExp.$2))),n=l.split(","),o=n.length;for(;k<o;k++)m=n[k],e.push({media:m.match(/(only\s+)?([a-zA-Z]+)(\sand)?/)&&RegExp.$2,rules:f.length-1,minw:m.match(/\(min\-width:[\s]*([\s]*[0-9]+)px[\s]*\)/)&&parseFloat(RegExp.$1),maxw:m.match(/\(max\-width:[\s]*([\s]*[0-9]+)px[\s]*\)/)&&parseFloat(RegExp.$1)})}r()},p,q,r=function(a){var b="clientWidth",h=d[b],l=c.compatMode==="CSS1Compat"&&h||c.body[b]||h,m={},n=c.createDocumentFragment(),o=k[k.length-1],s=(new Date).getTime();if(a&&p&&s-p<i)clearTimeout(q),q=setTimeout(r,i);else{p=s;for(var t in e){var u=e[t];if(!u.minw&&!u.maxw||(!u.minw||u.minw&&l>=u.minw)&&(!u.maxw||u.maxw&&l<=u.maxw))m[u.media]||(m[u.media]=[]),m[u.media].push(f[u.rules])}for(var t in g)g[t]&&g[t].parentNode===j&&j.removeChild(g[t]);for(var t in m){var v=c.createElement("style"),w=m[t].join("\n");v.type="text/css",v.media=t,v.styleSheet?v.styleSheet.cssText=w:v.appendChild(c.createTextNode(w)),n.appendChild(v),g.push(v)}j.insertBefore(n,o.nextSibling)}},s=function(a,b){var c=t();if(!!c){c.open("GET",a,!0),c.onreadystatechange=function(){c.readyState==4&&(c.status==200||c.status==304)&&b(c.responseText)};if(c.readyState==4)return;c.send()}},t=function(){var a=!1,b=[function(){return new ActiveXObject("Microsoft.XMLHTTP")},function(){return new XMLHttpRequest}],c=b.length;while(c--){try{a=b[c]()}catch(d){continue}break}return function(){return a}}();m(),respond.update=m,a.addEventListener?a.addEventListener("resize",u,!1):a.attachEvent&&a.attachEvent("onresize",u)}}(this,Modernizr.mq("only all")),function(a,b,c){function k(a){return!a||a=="loaded"||a=="complete"}function j(){var a=1,b=-1;while(p.length- ++b)if(p[b].s&&!(a=p[b].r))break;a&&g()}function i(a){var c=b.createElement("script"),d;c.src=a.s,c.onreadystatechange=c.onload=function(){!d&&k(c.readyState)&&(d=1,j(),c.onload=c.onreadystatechange=null)},m(function(){d||(d=1,j())},H.errorTimeout),a.e?c.onload():n.parentNode.insertBefore(c,n)}function h(a){var c=b.createElement("link"),d;c.href=a.s,c.rel="stylesheet",c.type="text/css";if(!a.e&&(w||r)){var e=function(a){m(function(){if(!d)try{a.sheet.cssRules.length?(d=1,j()):e(a)}catch(b){b.code==1e3||b.message=="security"||b.message=="denied"?(d=1,m(function(){j()},0)):e(a)}},0)};e(c)}else c.onload=function(){d||(d=1,m(function(){j()},0))},a.e&&c.onload();m(function(){d||(d=1,j())},H.errorTimeout),!a.e&&n.parentNode.insertBefore(c,n)}function g(){var a=p.shift();q=1,a?a.t?m(function(){a.t=="c"?h(a):i(a)},0):(a(),j()):q=0}function f(a,c,d,e,f,h){function i(){!o&&k(l.readyState)&&(r.r=o=1,!q&&j(),l.onload=l.onreadystatechange=null,m(function(){u.removeChild(l)},0))}var l=b.createElement(a),o=0,r={t:d,s:c,e:h};l.src=l.data=c,!s&&(l.style.display="none"),l.width=l.height="0",a!="object"&&(l.type=d),l.onload=l.onreadystatechange=i,a=="img"?l.onerror=i:a=="script"&&(l.onerror=function(){r.e=r.r=1,g()}),p.splice(e,0,r),u.insertBefore(l,s?null:n),m(function(){o||(u.removeChild(l),r.r=r.e=o=1,j())},H.errorTimeout)}function e(a,b,c){var d=b=="c"?z:y;q=0,b=b||"j",C(a)?f(d,a,b,this.i++,l,c):(p.splice(this.i++,0,a),p.length==1&&g());return this}function d(){var a=H;a.loader={load:e,i:0};return a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=r&&!s,u=s?l:n.parentNode,v=a.opera&&o.call(a.opera)=="[object Opera]",w="webkitAppearance"in l.style,x=w&&"async"in b.createElement("script"),y=r?"object":v||x?"img":"script",z=w?"img":y,A=Array.isArray||function(a){return o.call(a)=="[object Array]"},B=function(a){return Object(a)===a},C=function(a){return typeof a=="string"},D=function(a){return o.call(a)=="[object Function]"},E=[],F={},G,H;H=function(a){function f(a){var b=a.split("!"),c=E.length,d=b.pop(),e=b.length,f={url:d,origUrl:d,prefixes:b},g,h;for(h=0;h<e;h++)g=F[b[h]],g&&(f=g(f));for(h=0;h<c;h++)f=E[h](f);return f}function e(a,b,e,g,h){var i=f(a),j=i.autoCallback;if(!i.bypass){b&&(b=D(b)?b:b[a]||b[g]||b[a.split("/").pop().split("?")[0]]);if(i.instead)return i.instead(a,b,e,g,h);e.load(i.url,i.forceCSS||!i.forceJS&&/css$/.test(i.url)?"c":c,i.noexec),(D(b)||D(j))&&e.load(function(){d(),b&&b(i.origUrl,h,g),j&&j(i.origUrl,h,g)})}}function b(a,b){function c(a){if(C(a))e(a,h,b,0,d);else if(B(a))for(i in a)a.hasOwnProperty(i)&&e(a[i],h,b,i,d)}var d=!!a.test,f=d?a.yep:a.nope,g=a.load||a.both,h=a.callback,i;c(f),c(g),a.complete&&b.load(a.complete)}var g,h,i=this.yepnope.loader;if(C(a))e(a,0,i,0);else if(A(a))for(g=0;g<a.length;g++)h=a[g],C(h)?e(h,0,i,0):A(h)?H(h):B(h)&&b(h,i);else B(a)&&b(a,i)},H.addPrefix=function(a,b){F[a]=b},H.addFilter=function(a){E.push(a)},H.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",G=function(){b.removeEventListener("DOMContentLoaded",G,0),b.readyState="complete"},0)),a.yepnope=d()}(this,this.document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))}; \ No newline at end of file