diff --git a/Vagrantfile b/Vagrantfile index 2db7361..6b1b894 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -57,7 +57,7 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" # Network - config.vm.network "forwarded_port", guest: 80, host: 9000 + config.vm.network "forwarded_port", guest: 80, host: 9800 config.vm.network "private_network", ip: "#{private_ip}" # Shared folders diff --git a/www/wp-content/themes/ation2016/favicon.ico b/www/wp-content/themes/ation2016/favicon.ico new file mode 100644 index 0000000..11c80e8 Binary files /dev/null and b/www/wp-content/themes/ation2016/favicon.ico differ diff --git a/www/wp-content/themes/ation2016/index.php b/www/wp-content/themes/ation2016/index.php index 56e3868..8df9542 100755 --- a/www/wp-content/themes/ation2016/index.php +++ b/www/wp-content/themes/ation2016/index.php @@ -20,6 +20,7 @@ $context = Timber::get_context(); $context['posts'] = Timber::get_posts(); $context['foo'] = 'bar'; +$context['login_link'] = wp_login_url(); $templates = array( 'index.twig' ); if ( is_home() ) { array_unshift( $templates, 'home.twig' ); diff --git a/www/wp-content/themes/ation2016/package.json b/www/wp-content/themes/ation2016/package.json index c365f60..5dc002f 100644 --- a/www/wp-content/themes/ation2016/package.json +++ b/www/wp-content/themes/ation2016/package.json @@ -27,6 +27,7 @@ "gulp-plumber": "^1.1.0", "gulp-rename": "^1.2.2", "gulp-sass": "^2.2.0", + "gulp-sourcemaps": "^1.6.0", "gulp-uglify": "^1.5.2", "jshint": "^2.9.1" } diff --git a/www/wp-content/themes/ation2016/src/images/ation-logo-02-02.png b/www/wp-content/themes/ation2016/src/images/ation-logo-02-02.png new file mode 100644 index 0000000..239afad Binary files /dev/null and b/www/wp-content/themes/ation2016/src/images/ation-logo-02-02.png differ diff --git a/www/wp-content/themes/ation2016/src/scripts/main.js b/www/wp-content/themes/ation2016/src/scripts/main.js index 1e7abfb..f54becd 100644 --- a/www/wp-content/themes/ation2016/src/scripts/main.js +++ b/www/wp-content/themes/ation2016/src/scripts/main.js @@ -1,5 +1,12 @@ jQuery( document ).ready( function( $ ) { - // Meow + // Applies sticky class to header when scrolling past first pixel + $(window).scroll( function() { + if ( $(this).scrollTop() > 1 ) { + $('header').addClass("sticky"); + } else { + $('header').removeClass("sticky"); + } + }); }); \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/src/styles/components/_footer.scss b/www/wp-content/themes/ation2016/src/styles/components/_footer.scss new file mode 100644 index 0000000..5ec3186 --- /dev/null +++ b/www/wp-content/themes/ation2016/src/styles/components/_footer.scss @@ -0,0 +1,14 @@ +footer { + border-top: 1px solid $light-grey; + font-family: $header-font; + ul.footer-links { + list-style-type: none; + margin-left: 0; + li { + display: inline-block; + color: $grey; + font-family: inherit; + padding-right: 20px; + } + } +} \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/src/styles/components/_header.scss b/www/wp-content/themes/ation2016/src/styles/components/_header.scss index c94a90e..7b8ee34 100644 --- a/www/wp-content/themes/ation2016/src/styles/components/_header.scss +++ b/www/wp-content/themes/ation2016/src/styles/components/_header.scss @@ -1,6 +1,57 @@ +.admin-bar { + header { + top: 32px; + } +} header { - .header-logo { - max-width: 300px; - display: block; - } + position: fixed; + color: $orange; + width: 100%; + text-align: center; + font-size: 25px; + height: $header-height; + line-height: $header-height; + background: white; + transition: all 0.3s ease, box-shadow 0s ease; + top:0; + &.sticky { + font-size: 15px; + height: $header-height-sticky; + line-height: $header-height-sticky; + //text-align: left; + -webkit-box-shadow: -1px 2px 10px -1px $grey; + -moz-box-shadow: -1px 2px 10px -1px $grey; + box-shadow: -1px 2px 10px -1px $grey; + .header-logo { + img { + max-height: $header-height-sticky - 20px; + } + } + } + + .header-logo { + display: block; + padding-left: 20px; + padding-top: 10px; + padding-bottom: 10px; + img { + max-height: $header-height-sticky; + transition: all 0.3s ease; + } + } + + nav { + ul { + list-style-type: none; + margin: 0; + li { + display: inline-block; + font-family: $header-font; + padding-right: 20px; + a { + color: $orange; + } + } + } + } } \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/src/styles/components/_mainsection.scss b/www/wp-content/themes/ation2016/src/styles/components/_mainsection.scss new file mode 100644 index 0000000..95af8b7 --- /dev/null +++ b/www/wp-content/themes/ation2016/src/styles/components/_mainsection.scss @@ -0,0 +1,3 @@ +section#content { + margin-top:$header-height; +} \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/src/styles/site.scss b/www/wp-content/themes/ation2016/src/styles/site.scss index e86c782..796c85a 100644 --- a/www/wp-content/themes/ation2016/src/styles/site.scss +++ b/www/wp-content/themes/ation2016/src/styles/site.scss @@ -1,11 +1,27 @@ -$orange: orange; +/* Color */ +$orange: #ff7200; +$grey: #a8a8a8; +$light-grey: #eeeeee; +$white: white; + +/* Type */ +@import url(https://fonts.googleapis.com/css?family=Lato:300,400,400italic,700); +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,300,400italic); +$header-font: 'Source Sans Pro', sans-serif; +$body-font: 'Times New Roman', serif; + +/* Header */ +$header-height: 100px; +$header-height-sticky: 70px; @import 'type/typography'; @import 'components/header'; +@import 'components/mainsection'; +@import 'components/footer'; @import 'utility/images'; -.menu { - color: $orange; +body { + background-color: $white; } \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/src/styles/type/_typography.scss b/www/wp-content/themes/ation2016/src/styles/type/_typography.scss index 6ddb969..5934d02 100644 --- a/www/wp-content/themes/ation2016/src/styles/type/_typography.scss +++ b/www/wp-content/themes/ation2016/src/styles/type/_typography.scss @@ -1,10 +1,13 @@ -$header-font: 'Arial', sans-serif; -$body-font: 'Times New Roman', serif; - h1, h2, h3, h4, h5, h6 { font-family: $header-font; } p, li, span { font-family: $body-font; +} + +#content { + p, li, span { + font-size: 18px; + } } \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/static/images/ation-logo-02-02.png b/www/wp-content/themes/ation2016/static/images/ation-logo-02-02.png new file mode 100644 index 0000000..43d63c0 Binary files /dev/null and b/www/wp-content/themes/ation2016/static/images/ation-logo-02-02.png differ diff --git a/www/wp-content/themes/ation2016/static/scripts/main.js b/www/wp-content/themes/ation2016/static/scripts/main.js index 1e7abfb..f54becd 100644 --- a/www/wp-content/themes/ation2016/static/scripts/main.js +++ b/www/wp-content/themes/ation2016/static/scripts/main.js @@ -1,5 +1,12 @@ jQuery( document ).ready( function( $ ) { - // Meow + // Applies sticky class to header when scrolling past first pixel + $(window).scroll( function() { + if ( $(this).scrollTop() > 1 ) { + $('header').addClass("sticky"); + } else { + $('header').removeClass("sticky"); + } + }); }); \ No newline at end of file diff --git a/www/wp-content/themes/ation2016/static/scripts/main.min.js b/www/wp-content/themes/ation2016/static/scripts/main.min.js index 700636b..ac4bfe4 100644 --- a/www/wp-content/themes/ation2016/static/scripts/main.min.js +++ b/www/wp-content/themes/ation2016/static/scripts/main.min.js @@ -1,2 +1,2 @@ -jQuery(document).ready(function(e){}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm1haW4uanMiXSwibmFtZXMiOlsialF1ZXJ5IiwiZG9jdW1lbnQiLCJyZWFkeSIsIiQiXSwibWFwcGluZ3MiOiJBQUFBQSxPQUFBQyxVQUFBQyxNQUFBLFNBQUFDIiwiZmlsZSI6Im1haW4ubWluLmpzIiwic291cmNlc0NvbnRlbnQiOlsialF1ZXJ5KCBkb2N1bWVudCApLnJlYWR5KCBmdW5jdGlvbiggJCApIHtcblxuICAvLyBNZW93XG5cbn0pOyJdLCJzb3VyY2VSb290IjoiL3NvdXJjZS8ifQ== +jQuery(document).ready(function(e){e(window).scroll(function(){e(this).scrollTop()>1?e("header").addClass("sticky"):e("header").removeClass("sticky")})}); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm1haW4uanMiXSwibmFtZXMiOlsialF1ZXJ5IiwiZG9jdW1lbnQiLCJyZWFkeSIsIiQiLCJ3aW5kb3ciLCJzY3JvbGwiLCJ0aGlzIiwic2Nyb2xsVG9wIiwiYWRkQ2xhc3MiLCJyZW1vdmVDbGFzcyJdLCJtYXBwaW5ncyI6IkFBQUFBLE9BQUFDLFVBQUFDLE1BQUEsU0FBQUMsR0FHQUEsRUFBQUMsUUFBQUMsT0FBQSxXQUNBRixFQUFBRyxNQUFBQyxZQUFBLEVBQ0FKLEVBQUEsVUFBQUssU0FBQSxVQUVBTCxFQUFBLFVBQUFNLFlBQUEiLCJmaWxlIjoibWFpbi5taW4uanMiLCJzb3VyY2VzQ29udGVudCI6WyJqUXVlcnkoIGRvY3VtZW50ICkucmVhZHkoIGZ1bmN0aW9uKCAkICkge1xuXG4gICAgLy8gQXBwbGllcyBzdGlja3kgY2xhc3MgdG8gaGVhZGVyIHdoZW4gc2Nyb2xsaW5nIHBhc3QgZmlyc3QgcGl4ZWxcbiAgICAkKHdpbmRvdykuc2Nyb2xsKCBmdW5jdGlvbigpIHtcbiAgICAgICAgaWYgKCAkKHRoaXMpLnNjcm9sbFRvcCgpID4gMSApIHtcbiAgICAgICAgICAgICQoJ2hlYWRlcicpLmFkZENsYXNzKFwic3RpY2t5XCIpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgJCgnaGVhZGVyJykucmVtb3ZlQ2xhc3MoXCJzdGlja3lcIik7XG4gICAgICAgIH1cbiAgICB9KTtcblxufSk7Il0sInNvdXJjZVJvb3QiOiIvc291cmNlLyJ9 diff --git a/www/wp-content/themes/ation2016/static/styles/site.css b/www/wp-content/themes/ation2016/static/styles/site.css index f91aa96..87c20c2 100644 --- a/www/wp-content/themes/ation2016/static/styles/site.css +++ b/www/wp-content/themes/ation2016/static/styles/site.css @@ -1,17 +1,75 @@ +/* Color */ +/* Type */ +@import url(https://fonts.googleapis.com/css?family=Lato:300,400,400italic,700); +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,300,400italic); +/* Header */ h1, h2, h3, h4, h5, h6 { - font-family: "Arial", sans-serif; } + font-family: "Source Sans Pro", sans-serif; } p, li, span { font-family: "Times New Roman", serif; } -header .header-logo { - max-width: 300px; - display: block; } +#content p, #content li, #content span { + font-size: 18px; } + +.admin-bar header { + top: 32px; } + +header { + position: fixed; + color: #ff7200; + width: 100%; + text-align: center; + font-size: 25px; + height: 100px; + line-height: 100px; + background: white; + transition: all 0.3s ease, box-shadow 0s ease; + top: 0; } + header.sticky { + font-size: 15px; + height: 70px; + line-height: 70px; + box-shadow: -1px 2px 10px -1px #a8a8a8; } + header.sticky .header-logo img { + max-height: 50px; } + header .header-logo { + display: block; + padding-left: 20px; + padding-top: 10px; + padding-bottom: 10px; } + header .header-logo img { + max-height: 70px; + transition: all 0.3s ease; } + header nav ul { + list-style-type: none; + margin: 0; } + header nav ul li { + display: inline-block; + font-family: "Source Sans Pro", sans-serif; + padding-right: 20px; } + header nav ul li a { + color: #ff7200; } + +section#content { + margin-top: 100px; } + +footer { + border-top: 1px solid #eeeeee; + font-family: "Source Sans Pro", sans-serif; } + footer ul.footer-links { + list-style-type: none; + margin-left: 0; } + footer ul.footer-links li { + display: inline-block; + color: #a8a8a8; + font-family: inherit; + padding-right: 20px; } img { max-width: 100%; display: block; height: auto; } -.menu { - color: orange; } +body { + background-color: white; } diff --git a/www/wp-content/themes/ation2016/static/styles/site.min.css b/www/wp-content/themes/ation2016/static/styles/site.min.css index ed115c2..2a5ab47 100644 --- a/www/wp-content/themes/ation2016/static/styles/site.min.css +++ b/www/wp-content/themes/ation2016/static/styles/site.min.css @@ -1,2 +1,2 @@ -h1,h2,h3,h4,h5,h6{font-family:Arial,sans-serif}li,p,span{font-family:"Times New Roman",serif}header .header-logo{max-width:300px;display:block}img{max-width:100%;display:block;height:auto}.menu{color:orange} -/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInR5cGUvX3R5cG9ncmFwaHkuc2NzcyIsImNvbXBvbmVudHMvX2hlYWRlci5zY3NzIiwidXRpbGl0eS9faW1hZ2VzLnNjc3MiLCJzaXRlLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBR0EsR0FBQSxHQUFBLEdBQUEsR0FBQSxHQUFBLEdBQ0UsWUFBQSxNQUFBLFdBR0YsR0FBQSxFQUFBLEtBQ0UsWUFBQSxrQkFBQSxNQ1JGLG9CQUVJLFVBQUEsTUFDQSxRQUFBLE1DSEosSUFDRSxVQUFBLEtBQ0EsUUFBQSxNQUNBLE9BQUEsS0NLRixNQUNFLE1BQUEiLCJmaWxlIjoic2l0ZS5taW4uY3NzIiwic291cmNlc0NvbnRlbnQiOlsiJGhlYWRlci1mb250OiAnQXJpYWwnLCBzYW5zLXNlcmlmO1xuJGJvZHktZm9udDogJ1RpbWVzIE5ldyBSb21hbicsIHNlcmlmO1xuXG5oMSwgaDIsIGgzLCBoNCwgaDUsIGg2IHtcbiAgZm9udC1mYW1pbHk6ICRoZWFkZXItZm9udDtcbn1cblxucCwgbGksIHNwYW4ge1xuICBmb250LWZhbWlseTogJGJvZHktZm9udDtcbn0iLCJoZWFkZXIge1xuICAuaGVhZGVyLWxvZ28ge1xuICAgIG1heC13aWR0aDogMzAwcHg7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gIH1cbn0iLCJpbWcge1xuICBtYXgtd2lkdGg6IDEwMCU7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBoZWlnaHQ6IGF1dG87XG59IiwiJG9yYW5nZTogb3JhbmdlO1xuXG5AaW1wb3J0ICd0eXBlL3R5cG9ncmFwaHknO1xuXG5AaW1wb3J0ICdjb21wb25lbnRzL2hlYWRlcic7XG5cbkBpbXBvcnQgJ3V0aWxpdHkvaW1hZ2VzJztcblxuLm1lbnUge1xuICBjb2xvcjogJG9yYW5nZTtcbn0iXSwic291cmNlUm9vdCI6Ii9zb3VyY2UvIn0= */ +header,header nav ul li a{color:#ff7200}footer ul.footer-links li,header nav ul li{padding-right:20px;display:inline-block}@font-face{font-family:Lato;font-style:normal;font-weight:300;src:local('Lato Light'),local('Lato-Light'),url(https://fonts.gstatic.com/s/lato/v11/nj47mAZe0mYUIySgfn0wpQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:400;src:local('Lato Regular'),local('Lato-Regular'),url(https://fonts.gstatic.com/s/lato/v11/v0SdcGFAl2aezM9Vq_aFTQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:700;src:local('Lato Bold'),local('Lato-Bold'),url(https://fonts.gstatic.com/s/lato/v11/DvlFBScY1r-FMtZSYIYoYw.ttf) format('truetype')}@font-face{font-family:Lato;font-style:italic;font-weight:400;src:local('Lato Italic'),local('Lato-Italic'),url(https://fonts.gstatic.com/s/lato/v11/LqowQDslGv4DmUBAfWa2Vw.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:300;src:local('Source Sans Pro Light'),local('SourceSansPro-Light'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGMw1o1eFRj7wYC6JbISqOjY.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro'),local('SourceSansPro-Regular'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNzbP97U9sKh0jjxbPbfOKg.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local('SourceSansPro-Bold'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGLsbIrGiHa6JIepkyt5c0A0.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local('SourceSansPro-It'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/M2Jd71oPJhLKp0zdtTvoM0DauxaEVho0aInXGvhmB4k.ttf) format('truetype')}h1,h2,h3,h4,h5,h6{font-family:"Source Sans Pro",sans-serif}li,p,span{font-family:"Times New Roman",serif}footer,header nav ul li{font-family:"Source Sans Pro",sans-serif}#content li,#content p,#content span{font-size:18px}.admin-bar header{top:32px}header{position:fixed;width:100%;text-align:center;font-size:25px;height:100px;line-height:100px;background:#fff;transition:all .3s ease,box-shadow 0s ease;top:0}header.sticky{font-size:15px;height:70px;line-height:70px;box-shadow:-1px 2px 10px -1px #a8a8a8}header.sticky .header-logo img{max-height:50px}header .header-logo{display:block;padding-left:20px;padding-top:10px;padding-bottom:10px}header .header-logo img{max-height:70px;transition:all .3s ease}header nav ul{list-style-type:none;margin:0}section#content{margin-top:100px}footer{border-top:1px solid #eee}footer ul.footer-links{list-style-type:none;margin-left:0}footer ul.footer-links li{color:#a8a8a8;font-family:inherit}img{max-width:100%;display:block;height:auto}body{background-color:#fff} +/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvX2hlYWRlci5zY3NzIiwiY29tcG9uZW50cy9fZm9vdGVyLnNjc3MiLCJodHRwczovL2ZvbnRzLmdvb2dsZWFwaXMuY29tL2Nzcz9mYW1pbHk9TGF0bzozMDAsNDAwLDQwMGl0YWxpYyw3MDAiLCJodHRwczovL2ZvbnRzLmdvb2dsZWFwaXMuY29tL2Nzcz9mYW1pbHk9U291cmNlK1NhbnMrUHJvOjQwMCw3MDAsMzAwLDQwMGl0YWxpYyIsInR5cGUvX3R5cG9ncmFwaHkuc2NzcyIsImNvbXBvbmVudHMvX21haW5zZWN0aW9uLnNjc3MiLCJ1dGlsaXR5L19pbWFnZXMuc2NzcyIsInNpdGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFLQSxPQUFBLG1CQThDb0IsTUFBQSxRQ25EcEIsMEJES0EsaUJDS1ksY0FBQSxLQUhBLFFBQUEsYUNQWixXQUNFLFlBQWEsS0FDYixXQUFZLE9BQ1osWUFBYSxJQUNiLElBQUssb0JBQXFCLG9CQUFxQixxRUFBb0UsbUJBRXJILFdBQ0UsWUFBYSxLQUNiLFdBQVksT0FDWixZQUFhLElBQ2IsSUFBSyxzQkFBdUIsc0JBQXVCLHFFQUFvRSxtQkFFekgsV0FDRSxZQUFhLEtBQ2IsV0FBWSxPQUNaLFlBQWEsSUFDYixJQUFLLG1CQUFvQixtQkFBb0IscUVBQW9FLG1CQUVuSCxXQUNFLFlBQWEsS0FDYixXQUFZLE9BQ1osWUFBYSxJQUNiLElBQUsscUJBQXNCLHFCQUFzQixxRUFBb0UsbUJDdEJ2SCxXQUNFLFlBQWEsa0JBQ2IsV0FBWSxPQUNaLFlBQWEsSUFDYixJQUFLLCtCQUFnQyw2QkFBOEIsa0dBQWlHLG1CQUV0SyxXQUNFLFlBQWEsa0JBQ2IsV0FBWSxPQUNaLFlBQWEsSUFDYixJQUFLLHlCQUEwQiwrQkFBZ0Msa0dBQWlHLG1CQUVsSyxXQUNFLFlBQWEsa0JBQ2IsV0FBWSxPQUNaLFlBQWEsSUFDYixJQUFLLDhCQUErQiw0QkFBNkIsa0dBQWlHLG1CQUVwSyxXQUNFLFlBQWEsa0JBQ2IsV0FBWSxPQUNaLFlBQWEsSUFDYixJQUFLLGdDQUFpQywwQkFBMkIsa0dBQWlHLG1CQ3RCcEssR0FBQSxHQUFBLEdBQUEsR0FBQSxHQUFBLEdBQ0UsWUFBQSxrQkFBQSxXQUdGLEdBQUEsRUFBQSxLQUNFLFlBQUEsa0JBQUEsTUhMRixPREtBLGlCQ0hJLFlBQUEsa0JBQUEsV0dNSixZQUFBLFdBQUEsY0FFUSxVQUFBLEtKVlIsa0JBRVEsSUFBQSxLQUdSLE9BQ0ksU0FBQSxNQUVBLE1BQUEsS0FDQSxXQUFBLE9BQ0EsVUFBQSxLQUNBLE9BQUEsTUFDQSxZQUFBLE1BQ0EsV0FBQSxLQUNBLFdBQUEsSUFBQSxJQUFBLEtBQUEsV0FBQSxHQUFBLEtBQ0EsSUFBQSxFQVZKLGNBWVEsVUFBQSxLQUNBLE9BQUEsS0FDQSxZQUFBLEtBSUEsV0FBQSxLQUFBLElBQUEsS0FBQSxLQUFBLFFBbEJSLCtCQXFCZ0IsV0FBQSxLQXJCaEIsb0JBMkJRLFFBQUEsTUFDQSxhQUFBLEtBQ0EsWUFBQSxLQUNBLGVBQUEsS0E5QlIsd0JBZ0NZLFdBQUEsS0FDQSxXQUFBLElBQUEsSUFBQSxLQWpDWixjQXVDWSxnQkFBQSxLQUNBLE9BQUEsRUs3Q1osZ0JBQ0ksV0FBQSxNSkRKLE9BQ0ksV0FBQSxJQUFBLE1BQUEsS0FESix1QkFJUSxnQkFBQSxLQUNBLFlBQUEsRUFMUiwwQkFRWSxNQUFBLFFBQ0EsWUFBQSxRS1RaLElBQ0UsVUFBQSxLQUNBLFFBQUEsTUFDQSxPQUFBLEtDcUJGLEtBQ0ksaUJBQUEiLCJmaWxlIjoic2l0ZS5taW4uY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLmFkbWluLWJhciB7XG4gICAgaGVhZGVyIHtcbiAgICAgICAgdG9wOiAzMnB4O1xuICAgIH1cbn1cbmhlYWRlciB7XG4gICAgcG9zaXRpb246IGZpeGVkO1xuICAgIGNvbG9yOiAkb3JhbmdlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBmb250LXNpemU6IDI1cHg7XG4gICAgaGVpZ2h0OiAkaGVhZGVyLWhlaWdodDtcbiAgICBsaW5lLWhlaWdodDogJGhlYWRlci1oZWlnaHQ7XG4gICAgYmFja2dyb3VuZDogd2hpdGU7XG4gICAgdHJhbnNpdGlvbjogYWxsIDAuM3MgZWFzZSwgYm94LXNoYWRvdyAwcyBlYXNlO1xuICAgIHRvcDowO1xuICAgICYuc3RpY2t5IHtcbiAgICAgICAgZm9udC1zaXplOiAxNXB4O1xuICAgICAgICBoZWlnaHQ6ICRoZWFkZXItaGVpZ2h0LXN0aWNreTtcbiAgICAgICAgbGluZS1oZWlnaHQ6ICRoZWFkZXItaGVpZ2h0LXN0aWNreTtcbiAgICAgICAgLy90ZXh0LWFsaWduOiBsZWZ0O1xuICAgICAgICAtd2Via2l0LWJveC1zaGFkb3c6IC0xcHggMnB4IDEwcHggLTFweCAkZ3JleTtcbiAgICAgICAgLW1vei1ib3gtc2hhZG93OiAtMXB4IDJweCAxMHB4IC0xcHggJGdyZXk7XG4gICAgICAgIGJveC1zaGFkb3c6IC0xcHggMnB4IDEwcHggLTFweCAkZ3JleTtcbiAgICAgICAgLmhlYWRlci1sb2dvIHtcbiAgICAgICAgICAgIGltZyB7XG4gICAgICAgICAgICAgICAgbWF4LWhlaWdodDogJGhlYWRlci1oZWlnaHQtc3RpY2t5IC0gMjBweDtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cblxuICAgIC5oZWFkZXItbG9nbyB7XG4gICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgICAgICBwYWRkaW5nLWxlZnQ6IDIwcHg7XG4gICAgICAgIHBhZGRpbmctdG9wOiAxMHB4O1xuICAgICAgICBwYWRkaW5nLWJvdHRvbTogMTBweDtcbiAgICAgICAgaW1nIHtcbiAgICAgICAgICAgIG1heC1oZWlnaHQ6ICRoZWFkZXItaGVpZ2h0LXN0aWNreTtcbiAgICAgICAgICAgIHRyYW5zaXRpb246IGFsbCAwLjNzIGVhc2U7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBuYXYge1xuICAgICAgICB1bCB7XG4gICAgICAgICAgICBsaXN0LXN0eWxlLXR5cGU6IG5vbmU7XG4gICAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgICAgICBsaSB7XG4gICAgICAgICAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgICAgICAgICAgICAgIGZvbnQtZmFtaWx5OiAkaGVhZGVyLWZvbnQ7XG4gICAgICAgICAgICAgICAgcGFkZGluZy1yaWdodDogMjBweDtcbiAgICAgICAgICAgICAgICBhIHtcbiAgICAgICAgICAgICAgICAgICAgY29sb3I6ICRvcmFuZ2U7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxufSIsImZvb3RlciB7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkICRsaWdodC1ncmV5O1xuICAgIGZvbnQtZmFtaWx5OiAkaGVhZGVyLWZvbnQ7XG4gICAgdWwuZm9vdGVyLWxpbmtzIHtcbiAgICAgICAgbGlzdC1zdHlsZS10eXBlOiBub25lO1xuICAgICAgICBtYXJnaW4tbGVmdDogMDtcbiAgICAgICAgbGkge1xuICAgICAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgICAgICAgICAgY29sb3I6ICRncmV5O1xuICAgICAgICAgICAgZm9udC1mYW1pbHk6IGluaGVyaXQ7XG4gICAgICAgICAgICBwYWRkaW5nLXJpZ2h0OiAyMHB4O1xuICAgICAgICB9XG4gICAgfVxufSIsbnVsbCxudWxsLCJoMSwgaDIsIGgzLCBoNCwgaDUsIGg2IHtcbiAgZm9udC1mYW1pbHk6ICRoZWFkZXItZm9udDtcbn1cblxucCwgbGksIHNwYW4ge1xuICBmb250LWZhbWlseTogJGJvZHktZm9udDtcbn1cblxuI2NvbnRlbnQge1xuICAgIHAsIGxpLCBzcGFuIHtcbiAgICAgICAgZm9udC1zaXplOiAxOHB4O1xuICAgIH1cbn0iLCJzZWN0aW9uI2NvbnRlbnQge1xuICAgIG1hcmdpbi10b3A6JGhlYWRlci1oZWlnaHQ7XG59IiwiaW1nIHtcbiAgbWF4LXdpZHRoOiAxMDAlO1xuICBkaXNwbGF5OiBibG9jaztcbiAgaGVpZ2h0OiBhdXRvO1xufSIsIi8qIENvbG9yICovXG4kb3JhbmdlOiAjZmY3MjAwO1xuJGdyZXk6ICNhOGE4YTg7XG4kbGlnaHQtZ3JleTogI2VlZWVlZTtcbiR3aGl0ZTogd2hpdGU7XG5cbi8qIFR5cGUgKi9cbkBpbXBvcnQgdXJsKGh0dHBzOi8vZm9udHMuZ29vZ2xlYXBpcy5jb20vY3NzP2ZhbWlseT1MYXRvOjMwMCw0MDAsNDAwaXRhbGljLDcwMCk7XG5AaW1wb3J0IHVybChodHRwczovL2ZvbnRzLmdvb2dsZWFwaXMuY29tL2Nzcz9mYW1pbHk9U291cmNlK1NhbnMrUHJvOjQwMCw3MDAsMzAwLDQwMGl0YWxpYyk7XG4kaGVhZGVyLWZvbnQ6ICdTb3VyY2UgU2FucyBQcm8nLCBzYW5zLXNlcmlmO1xuJGJvZHktZm9udDogJ1RpbWVzIE5ldyBSb21hbicsIHNlcmlmO1xuXG4vKiBIZWFkZXIgKi9cbiRoZWFkZXItaGVpZ2h0OiAxMDBweDtcbiRoZWFkZXItaGVpZ2h0LXN0aWNreTogNzBweDtcblxuQGltcG9ydCAndHlwZS90eXBvZ3JhcGh5JztcblxuQGltcG9ydCAnY29tcG9uZW50cy9oZWFkZXInO1xuQGltcG9ydCAnY29tcG9uZW50cy9tYWluc2VjdGlvbic7XG5AaW1wb3J0ICdjb21wb25lbnRzL2Zvb3Rlcic7XG5cbkBpbXBvcnQgJ3V0aWxpdHkvaW1hZ2VzJztcblxuYm9keSB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogJHdoaXRlO1xufSJdLCJzb3VyY2VSb290IjoiL3NvdXJjZS8ifQ== */ diff --git a/www/wp-content/themes/ation2016/templates/base.twig b/www/wp-content/themes/ation2016/templates/base.twig index 75f309f..93119e0 100755 --- a/www/wp-content/themes/ation2016/templates/base.twig +++ b/www/wp-content/themes/ation2016/templates/base.twig @@ -9,10 +9,10 @@