first steps to implement video showcase

This commit is contained in:
Alex Corbi 2017-01-13 18:12:02 +01:00
parent 94c3764e3e
commit b097157426
400 changed files with 3101 additions and 806 deletions

107
6_video.html Normal file
View file

@ -0,0 +1,107 @@
---
layout: page
title: Video showcase
icon: video
visible: false
permalink: /video/
---
{% assign post_number = site.posts | size %}
<div id="video-roster" class="content container-fluid">
{% for post in site.posts %}
{% if post.layout != "event-spektrum" %}
{% continue %}
{% endif %}
{% for talk in post.talks %}
{% if talk.talk_video_url %}
{% assign vimeo_id = 43849383 %}
<div class="videobox" vimeo="{{vimeo_id}}">
<div class="video-title">{{talk.title}}</div>
{% if talk.topics %}
<ul class="tags">
{% assign tags = (talk.topics | split:",") %}
{% for tag in tags | uniq %}
<li>{{tag}}</li>
{% endfor %}
</ul>
{% endif %}
<img class="playbutton" src="/images/play-button.png" />
<div class="video-description"><p>{{talk.artist}} / {{talk.artist_website}} {{talk.description}}</p></div>
</div>
{% endif %}
{% endfor %}
{% endfor %}
<div id="videotext"></div>
<div id="videoplayer">
<div id="player"></div>
<div id="close-button"></div>
</div>
</div> <!-- container -->
<script>
jQuery( document ).ready(function() {
jQuery('.videobox').each(function() {
var $this = jQuery(this);
jQuery.getJSON('http://www.vimeo.com/api/v2/video/' + jQuery(this).attr('vimeo') + '.json?callback=?', {format: "json"}, function(data) {
$this.css('background', 'url("' + data[0].thumbnail_large + '")');
$this.css('background-size', 'cover');
//$this.css('height', (($this.width()/4)*3));
});
$this.on('mouseover', function() {
var offset = $this.offset();
var center = jQuery(window).width()/2;
if( offset.left > center) {
jQuery('#videotext').css('right', '');
jQuery('#videotext').css('left', '20px');
} else {
jQuery('#videotext').css('left', '');
jQuery('#videotext').css('right', '20px');
}
jQuery('#videotext').html($this.html());
$this.find("img").show();
timer = window.setTimeout(function() {
jQuery('#videotext').show(300);
}, 500);
});
$this.on('mouseout', function() {
jQuery('#videotext').hide();
$this.find("img").hide();
if (timer) {
window.clearTimeout(timer);
}
});
$this.on('click', function() {
jQuery('#videotext').hide();
$this.find("img").hide();
if (timer) {
window.clearTimeout(timer);
}
jQuery('#videoplayer #player').html('<iframe src="http://player.vimeo.com/video/'+$this.attr('vimeo')+'?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=1" width="100%" height="100%" frameborder="0"></iframe>');
jQuery('#videoplayer').fadeIn(300);
});
jQuery('#videoplayer').on('click', function() {
jQuery(this).fadeOut(500, function() {
jQuery('#videoplayer #player').html('');
});
});
});
});
</script>

View file

@ -15,6 +15,7 @@
<link rel="stylesheet" href="{{ '/bower_components/fontawesome/css/font-awesome.min.css' | prepend: site.baseurl }}" type="text/css" />
<link rel="stylesheet" href="{{ '/css/picbook.css' | prepend: site.baseurl }}" type="text/css" />
<link rel="stylesheet" href="{{ '/css/custom.css' | prepend: site.baseurl }}" type="text/css" >
<link rel="stylesheet" href="{{ '/css/video.css' | prepend: site.baseurl }}" type="text/css" >
<link rel="stylesheet" href="{{ '/css/hover.css' | prepend: site.baseurl }}" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>

View file

@ -19,6 +19,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -32,16 +33,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -19,6 +19,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -32,16 +33,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -19,6 +19,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -32,16 +33,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

109
_site/css/video.css Normal file
View file

@ -0,0 +1,109 @@
#video-roster {
background-color:#000;
margin:0;
padding:0;
}
.videobox
{
display:block;
float:left;
width:240px;
height:180px;
margin-top:4px;
margin-left:2px;
margin-right:2px;
opacity:.5;
text-align:center;
padding:20px;
}
.videobox:hover
{
opacity:1;
}
.videobox .video-title
{
color:#fff;
font-size:1.1em;
text-align:left;
}
.videobox .video-description, .videobox .tags
{
display:none;
}
#videotext
{
width:40%;
background-color:#fff;
opacity:.8;
position:fixed;
z-index:100;
right:20px;
top:20px;
display:none;
padding:30px;
}
#videotext .video-title
{
color:#000;
font-size: 1.7em;
background-color:none;
}
#videotext .tags
{
font-weight:lighter;
}
#videotext .video-description
{
display:block;
font-size: 1em;
}
.playbutton
{
width:60px;
margin-top:30px;
display:none;
pointer-events: none;
}
#videoplayer
{
display:block;
position:fixed;
z-index:1000;
width:100%;
height:100%;
display:none;
background:#000;
}
#player
{
display:block;
width:80%;
height:80%;
margin:5% auto;
background:#000;
}
#close-button
{
position:fixed;
z-index:1001;
display:block;
width:50px;
height:50px;
top:0;
right:0;
background-image:url("/images/close-button-large.png");
background-size:cover;
}

View file

@ -6,8 +6,8 @@
</description>
<link>http://scopesessions.org/</link>
<atom:link href="http://scopesessions.org /feed.xml " rel="self" type="application/rss+xml" />
<pubDate>Fri, 13 Jan 2017 12:51:51 +0100</pubDate>
<lastBuildDate>Fri, 13 Jan 2017 12:51:51 +0100</lastBuildDate>
<pubDate>Fri, 13 Jan 2017 18:09:33 +0100</pubDate>
<lastBuildDate>Fri, 13 Jan 2017 18:09:33 +0100</lastBuildDate>
<generator>Jekyll v3.1.2</generator>
<item>

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

View file

@ -19,6 +19,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -32,16 +33,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -18,6 +18,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -31,16 +32,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

View file

@ -19,6 +19,7 @@
<link rel="stylesheet" href="/bower_components/fontawesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="/css/picbook.css" type="text/css" />
<link rel="stylesheet" href="/css/custom.css" type="text/css" >
<link rel="stylesheet" href="/css/video.css" type="text/css" >
<link rel="stylesheet" href="/css/hover.css" type="text/css" >
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
@ -32,16 +33,6 @@
<script src="/js/custom.js" type="text/javascript" ></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90315927-1', 'auto');
ga('send', 'pageview');
</script>
</head>

1438
_site/video/index.html Normal file

File diff suppressed because it is too large Load diff

109
css/video.css Normal file
View file

@ -0,0 +1,109 @@
#video-roster {
background-color:#000;
margin:0;
padding:0;
}
.videobox
{
display:block;
float:left;
width:240px;
height:180px;
margin-top:4px;
margin-left:2px;
margin-right:2px;
opacity:.5;
text-align:center;
padding:20px;
}
.videobox:hover
{
opacity:1;
}
.videobox .video-title
{
color:#fff;
font-size:1.1em;
text-align:left;
}
.videobox .video-description, .videobox .tags
{
display:none;
}
#videotext
{
width:40%;
background-color:#fff;
opacity:.8;
position:fixed;
z-index:100;
right:20px;
top:20px;
display:none;
padding:30px;
}
#videotext .video-title
{
color:#000;
font-size: 1.7em;
background-color:none;
}
#videotext .tags
{
font-weight:lighter;
}
#videotext .video-description
{
display:block;
font-size: 1em;
}
.playbutton
{
width:60px;
margin-top:30px;
display:none;
pointer-events: none;
}
#videoplayer
{
display:block;
position:fixed;
z-index:1000;
width:100%;
height:100%;
display:none;
background:#000;
}
#player
{
display:block;
width:80%;
height:80%;
margin:5% auto;
background:#000;
}
#close-button
{
position:fixed;
z-index:1001;
display:block;
width:50px;
height:50px;
top:0;
right:0;
background-image:url("/images/close-button-large.png");
background-size:cover;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
images/_site/04_LS.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 836 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

Some files were not shown because too many files have changed in this diff Show more