first steps to implement video showcase
107
6_video.html
Normal 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&byline=0&portrait=0&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>
|
||||
|
|
@ -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'>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
|
@ -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;
|
||||
}
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
BIN
_site/images/close-button-large.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
_site/images/play-button.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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
109
css/video.css
Normal 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;
|
||||
}
|
||||
|
After Width: | Height: | Size: 3.7 MiB |
|
After Width: | Height: | Size: 3.7 MiB |
|
After Width: | Height: | Size: 163 KiB |
BIN
images/_site/04_LS.jpg
Normal file
|
After Width: | Height: | Size: 148 KiB |
BIN
images/_site/04_LS.jpg_resized.png
Normal file
|
After Width: | Height: | Size: 230 KiB |
|
After Width: | Height: | Size: 243 KiB |
|
After Width: | Height: | Size: 349 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 165 KiB |
BIN
images/_site/11372298575_76b899b854.jpg
Normal file
|
After Width: | Height: | Size: 137 KiB |
BIN
images/_site/11372298575_76b899b854.jpg_resized.png
Normal file
|
After Width: | Height: | Size: 490 KiB |
BIN
images/_site/11391117_1153538288005410_1868394068597484897_n.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 179 KiB |
BIN
images/_site/121_transformadietermeier01.jpg
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
images/_site/121_transformadietermeier01.jpg_resized.png
Normal file
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 249 KiB |
BIN
images/_site/14606037617_5198f60407.jpg
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
images/_site/14606037617_5198f60407.jpg_resized.png
Normal file
|
After Width: | Height: | Size: 399 KiB |
BIN
images/_site/160501_TYCHO_Image_02.jpg
Normal file
|
After Width: | Height: | Size: 9 MiB |
BIN
images/_site/160501_TYCHO_Image_02.jpg_resized.png
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
images/_site/2014_7_28_59_11_9927169.jpg
Normal file
|
After Width: | Height: | Size: 836 KiB |
BIN
images/_site/2014_7_28_59_11_9927169.jpg_resized.png
Normal file
|
After Width: | Height: | Size: 416 KiB |
BIN
images/_site/255422_PLANCK_FSM_03_Black_1_None.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
images/_site/255422_PLANCK_FSM_03_Black_1_None.jpg_resized.png
Normal file
|
After Width: | Height: | Size: 236 KiB |