diff --git a/pique/404.php b/pique/404.php new file mode 100644 index 000000000..e3276e8e5 --- /dev/null +++ b/pique/404.php @@ -0,0 +1,68 @@ + + +
+
+ +
+ + +
+

+ + + + 7 ), array( + 'before_title' => '

', + 'after_title' => '

', + ) ); ?> + + +
+

+
    + 'count', + 'order' => 'DESC', + 'show_count' => 1, + 'title_li' => '', + 'number' => 10, + ) ); + ?> +
+
+ + + ' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'pique' ), convert_smilies( ':)' ) ) . '

'; + the_widget( 'WP_Widget_Archives', array( 'count' => 1 ), array( + 'before_title' => '

', + 'after_title' => '

', + ) ); + ?> + + '

', + 'after_title' => '

', + ) ); + ?> + +
+
+ +
+
+ + + diff --git a/pique/archive-jetpack-testimonial.php b/pique/archive-jetpack-testimonial.php new file mode 100644 index 000000000..f20a3c663 --- /dev/null +++ b/pique/archive-jetpack-testimonial.php @@ -0,0 +1,43 @@ + + + + +
+
+ + + + + + + + + + + + +
+
+ + diff --git a/pique/archive.php b/pique/archive.php new file mode 100644 index 000000000..968d313fa --- /dev/null +++ b/pique/archive.php @@ -0,0 +1,51 @@ + + +
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + + diff --git a/pique/assets/images/default-header.jpg b/pique/assets/images/default-header.jpg new file mode 100644 index 000000000..902a9d704 Binary files /dev/null and b/pique/assets/images/default-header.jpg differ diff --git a/pique/assets/images/noise.png b/pique/assets/images/noise.png new file mode 100644 index 000000000..96e8d61ba Binary files /dev/null and b/pique/assets/images/noise.png differ diff --git a/pique/assets/js/background-fix.js b/pique/assets/js/background-fix.js new file mode 100644 index 000000000..9635da764 --- /dev/null +++ b/pique/assets/js/background-fix.js @@ -0,0 +1,38 @@ +( function( $ ) { +/** + * Test if an iOS device. + */ + + function checkiOS() { + return /iPad|iPhone|iPod/.test(navigator.userAgent) && ! window.MSStream; + } + + /* + * Test if background-attachment: fixed is supported. + * @link http://stackoverflow.com/questions/14115080/detect-support-for-background-attachment-fixed + */ + function supportsFixedBackground() { + var el = document.createElement('div'), + isSupported; + + try { + if ( ! ( 'backgroundAttachment' in el.style ) || checkiOS() ) { + return false; + } + el.style.backgroundAttachment = 'fixed'; + isSupported = ( 'fixed' === el.style.backgroundAttachment ); + return isSupported; + } + + catch (e) { + return false; + } + } + + $( document ).ready( function() { + if ( false === supportsFixedBackground() ) { + $( 'body' ).addClass( 'no-background-fixed' ); + } + } ); + +} )( jQuery ); \ No newline at end of file diff --git a/pique/assets/js/customizer.js b/pique/assets/js/customizer.js new file mode 100644 index 000000000..08ada2b31 --- /dev/null +++ b/pique/assets/js/customizer.js @@ -0,0 +1,253 @@ +/** + * Theme Customizer enhancements for a better user experience. + * + * Contains handlers to make Theme Customizer preview reload changes asynchronously. + */ + +( function( $ ) { + + // Collect information from panel-customizer.js about which panels are opening + wp.customize.bind( 'preview-ready', function() { + wp.customize.preview.bind( 'section-highlight', function( data ) { + + // If there's an expanded panel section, scroll down to that panel & highlight in the preview + if ( true === data.expanded ) { + $.scrollTo( $( '.' + data.section ), { + duration: 600, + offset: { 'top': -40 } + } ); + $( '.' + data.section ).addClass( 'pique-highlight' ); + // If we've left the panel, remove the highlight and scroll back to the top + } else { + $.scrollTo( $( '#masthead' ), { + duration: 300, + offset: { 'top': 0 } + } ); + $( '.' + data.section ).removeClass( 'pique-highlight' ); + } + } ); + } ); + + // Site title and description. + wp.customize( 'blogname', function( value ) { + value.bind( function( to ) { + $( '.site-title a' ).text( to ); + } ); + } ); + wp.customize( 'blogdescription', function( value ) { + value.bind( function( to ) { + $( '.site-description' ).text( to ); + } ); + } ); + + // Header text color. + wp.customize( 'header_textcolor', function( value ) { + value.bind( function( to ) { + if ( 'blank' === to ) { + $( '#masthead .site-branding .site-title a, #masthead .site-branding .site-description' ).css( { + 'clip': 'rect(1px, 1px, 1px, 1px)', + 'position': 'absolute' + } ); + } else { + $( '#masthead .site-branding .site-title a, #masthead .site-branding .site-description' ).css( { + 'clip': 'auto', + 'color': to, + 'position': 'relative' + } ); + } + $( 'body' ).resize(); + } ); + } ); + + // Site logo. + wp.customize( 'site_logo', function( value ) { + value.bind( function() { + $( 'body' ).resize(); + } ); + } ); + + // Shaded panels + wp.customize( 'pique_panel1_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel1 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel1_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel1' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel1' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + wp.customize( 'pique_panel2_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel2 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel2_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel2' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel2' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + wp.customize( 'pique_panel3_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel3 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel3_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel3' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel3' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + wp.customize( 'pique_panel4_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel4 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel4_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel4' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel4' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + wp.customize( 'pique_panel5_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel5 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel5_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel5' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel5' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + wp.customize( 'pique_panel6_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel6 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel6_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel6' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel6' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + wp.customize( 'pique_panel7_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel7 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel7_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel7' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel7' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + wp.customize( 'pique_panel8_opacity', function( value ) { + value.bind( function( opacity ) { + $( '.pique-panel8 .pique-panel-background' ).css( { + 'opacity': opacity, + } ); + } ); + } ); + + wp.customize( 'pique_panel8_background', function( value ) { + value.bind( function( color ) { + if ( false === color ) { + $( '.pique-panel8' ).css( { + 'background-color': '', + } ); + } else { + $( '.pique-panel8' ).css( { + 'background-color': color, + } ); + } + } ); + } ); + + $( document ).ready( function() { + // Give each of the panels a highlight & title + $( '.pique-frontpage' ).find( '.pique-panel' ).not( '#pique-hero' ).each(function() { + $( this ).append( '' + $( this ).data( 'panel-title' ) + '' ); + }); + }); + +} )( jQuery ); diff --git a/pique/assets/js/front-page.js b/pique/assets/js/front-page.js new file mode 100644 index 000000000..79fa54bd9 --- /dev/null +++ b/pique/assets/js/front-page.js @@ -0,0 +1,89 @@ +( function( $ ) { + + /* + * Since we've absolutely positioned the header (so it sits on top of the background + * set for our hero panel), we're going to need to adjust the margin of our hero's + * entry-content so it fits correctly in the available space. + */ + function adjustHero() { + var piqueHeaderHeight = $( '#masthead' ).height(); + var piqueHeroContent = $( '#pique-hero' ).find( '.pique-panel-content' ); + $( piqueHeroContent ).css( 'padding-top', piqueHeaderHeight ); + } + + /* + * We're going to use the Waypoints and ScrollTo libraries to build a dynamic menu. + * This will animate a scroll effect to and from panels in the page as well as + * highlighting the current panel in the nav menu. + */ + function dynamicNav() { + var $sections = $( '.pique-panel' ); + var $navLinks = $( '#site-navigation li a' ); + var $primaryMenu = $( '#primary-menu' ); + var $adminBar = $( '#wpadminbar' ); + + // Use the Waypoints plugin to indicate our current nav item + $sections.waypoint( { + handler: function( direction ) { + var activePanel = this; + var panelID = activePanel.element.id; + + // If we're scrolling up, set the previous panel as our current panel. + // This just means that, when we hit to top of a panel (bottom of a new panel) + // we'll highlight the correct panel. Wheee! + if ( 'up' === direction ) { + // Subtract twice because waypoints is one-indexed; DOM is zero-indexed. + var elementIndex = activePanel.key.substr( 9, 1 ) - 2; + panelID = $sections.eq( elementIndex ).attr('id'); + } + + // Don't show any highlight for our parent nav + if ( 'pique-hero' === panelID ) { + $navLinks.parents( 'li' ).removeClass( 'current_page_item' ); + } + + // Find the active panel's corresponding link by matching the panel ID in the URL + var activeLink = $( 'nav a[href="#' + panelID + '"]' ).parent( 'li' ); + // Remove any existing classes + $navLinks.parents( 'li' ).removeClass( 'current_page_item' ); + // Highlight the currently active panel by adding a CSS class + activeLink.addClass( 'current_page_item' ); + + }, + offset: '110px' + }); + + // Use scrollTo library to smoothly scroll between panels. + // Note that the admin bar lenght is only taken into consideration on screen size > 480px, when it becomes fixed. + // Also, we take into account he height of the primary menu after 768px. + $navLinks.click( function() { + var yCoord = ( 1 === $adminBar.length && $( window ).outerWidth() > 480 ) ? $adminBar.outerHeight() : 0; + var offset = $( window ).outerWidth() > 768 ? $primaryMenu.outerHeight() : 0; + $.scrollTo( $( this ).attr( 'href' ), { + duration: 400, + offset: { 'top': -1 * ( yCoord + offset ) } + } ); + }); + } + + // Run our functions on document load + $( window ).on( 'load', function() { + adjustHero(); + dynamicNav(); + }); + + // Annnnnd re-run the hero adjustment every time the window resizes + var isResizing = false; + $( window ).on('resize', function() { + if (isResizing) { + return; + } + + isResizing = true; + setTimeout(function() { + adjustHero(); + isResizing = false; + }, 150); + }); + +} )( jQuery ); diff --git a/pique/assets/js/header.js b/pique/assets/js/header.js new file mode 100644 index 000000000..a744abf7c --- /dev/null +++ b/pique/assets/js/header.js @@ -0,0 +1,111 @@ +/** + * Header enhancements for more intelligent dynamic headers. + * + * This sets the masthead to the height of an uploaded image and applies sticky navigation. + */ + +( function( $ ) { + + // Fit header into the available space + function fitHeader() { + var windowWidth = $( window ).width(); + var headerHeight = $( '#pique-header-image' ).height(); + var navHeight = $( '#primary-menu' ).height(); + var brandingHeight = $( '.site-branding' ).height(); + + // Make sure we're not on the homepage, since that handles stuff differently + if ( ! $( 'body' ).hasClass( 'pique-frontpage' )) { + if ( 0 < $( '#pique-header-image' ).length ) { + // Add the height of our header image and the height of our nav + $( '#masthead' ).css( 'height', headerHeight + navHeight ); + } else { + // Give enough room for our branding + console.log('no header'); + $( '#masthead' ).css( 'height', brandingHeight + navHeight + 40 ); + } + } + }; + + // Priority+ navigation, whee! + function priorityNav() { + // Make sure we have a menu and that the more-more item is present + if ( 0 < $( '#site-navigation' ).length && 0 < $( '#more-menu' ).length ) { + var navWidth = 0; + var firstMoreElement = $( '#more-menu li' ).first(); + + // Calculate the width of our "more" containing element + var moreWidth = $( '#more-menu' ).outerWidth( true ); + + // Calculate the current width of our navigation + $( '#site-navigation .menu > li' ).each( function() { + navWidth += $( this ).outerWidth( true ); + }); + + // Calculate our available space + var availableSpace = $( '#site-navigation' ).outerWidth( true ) - moreWidth; + + // If our nav is wider than our available space, we're going to move items + if (navWidth > availableSpace) { + var lastItem = $( '#site-navigation .menu > li:not(#more-menu)' ).last(); + lastItem.attr( 'data-width', lastItem.outerWidth( true ) ); + lastItem.prependTo( $( '#more-menu .sub-menu' ).eq( 0 ) ); + priorityNav(); // Rerun this function! + + // But if we have the extra space, we should add the items back to our menu + } else if (navWidth + firstMoreElement.data( 'width' ) < availableSpace) { + // Check to be sure there's enough space for our extra element + firstMoreElement.insertBefore( $( '#site-navigation .menu > li' ).last() ); + priorityNav(); + } + + // Hide our more-menu entirely if there's nothing in it + if ($( '#more-menu li' ).length > 0) { + $( '#more-menu' ).addClass( 'visible' ); + } else { + $( '#more-menu' ).removeClass( 'visible' ); + } + } // check for body class + }; // function priorityNav + + // Okay, now we want to stick-ify our menu when we reach it + function stickyNav() { + var nav_container = $( '#site-navigation-wrapper' ); + var nav = $( '#site-navigation' ); + + nav_container.waypoint( { + handler: function(direction) { + nav.toggleClass( 'sticky', direction == 'down' ); + + // Ensure we don't have an awkward jump when the menu sticks + if ('down' === direction) { + nav_container.css( { 'height':nav.outerHeight() } ); + } else { + nav_container.css( { 'height':'auto' } ); + } + } + }); + }; + + // Run our functions once the window has loaded fully + $( window ).on( 'load', function() { + priorityNav(); + fitHeader(); + stickyNav(); + }); + + // Annnnnd also every time the window resizes + var isResizing = false; + $( window ).on('resize', function() { + if (isResizing) { + return; + } + + isResizing = true; + setTimeout(function() { + priorityNav(); + fitHeader(); + isResizing = false; + }, 150); + }); + +} )( jQuery ); diff --git a/pique/assets/js/jquery.scrollTo.js b/pique/assets/js/jquery.scrollTo.js new file mode 100644 index 000000000..80ff3fa8a --- /dev/null +++ b/pique/assets/js/jquery.scrollTo.js @@ -0,0 +1,209 @@ +/*! + * jQuery.scrollTo + * Copyright (c) 2007-2015 Ariel Flesler - afleslergmailcom | http://flesler.blogspot.com + * Licensed under MIT + * http://flesler.blogspot.com/2007/10/jqueryscrollto.html + * @projectDescription Lightweight, cross-browser and highly customizable animated scrolling with jQuery + * @author Ariel Flesler + * @version 2.1.2 + */ +;(function(factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // AMD + define( ['jquery'], factory ); + } else if (typeof module !== 'undefined' && module.exports) { + // CommonJS + module.exports = factory( require( 'jquery' ) ); + } else { + // Global + factory( jQuery ); + } +})(function($) { + 'use strict'; + + var $scrollTo = $.scrollTo = function(target, duration, settings) { + return $( window ).scrollTo( target, duration, settings ); + }; + + $scrollTo.defaults = { + axis:'xy', + duration: 0, + limit:true + }; + + function isWin(elem) { + return ! elem.nodeName || + $.inArray( elem.nodeName.toLowerCase(), ['iframe','#document','html','body'] ) !== -1; + } + + $.fn.scrollTo = function(target, duration, settings) { + if (typeof duration === 'object') { + settings = duration; + duration = 0; + } + if (typeof settings === 'function') { + settings = { onAfter:settings }; + } + if (target === 'max') { + target = 9e9; + } + + settings = $.extend( {}, $scrollTo.defaults, settings ); + // Speed is still recognized for backwards compatibility + duration = duration || settings.duration; + // Make sure the settings are given right + var queue = settings.queue && settings.axis.length > 1; + if (queue) { + // Let's keep the overall duration + duration /= 2; + } + settings.offset = both( settings.offset ); + settings.over = both( settings.over ); + + return this.each(function() { + // Null target yields nothing, just like jQuery does + if (target === null) { return; } + + var win = isWin( this ), + elem = win ? this.contentWindow || window : this, + $elem = $( elem ), + targ = target, + attr = {}, + toff; + + switch (typeof targ) { + // A number will pass the regex + case 'number': + case 'string': + if (/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test( targ )) { + targ = both( targ ); + // We are done + break; + } + // Relative/Absolute selector + targ = win ? $( targ ) : $( targ, elem ); + /* falls through */ + case 'object': + if (targ.length === 0) { return; } + // DOMElement / jQuery + if (targ.is || targ.style) { + // Get the real position of the target + toff = (targ = $( targ )).offset(); + } + } + + var offset = $.isFunction( settings.offset ) && settings.offset( elem, targ ) || settings.offset; + + $.each(settings.axis.split( '' ), function(i, axis) { + var Pos = axis === 'x' ? 'Left' : 'Top', + pos = Pos.toLowerCase(), + key = 'scroll' + Pos, + prev = $elem[key](), + max = $scrollTo.max( elem, axis ); + + if (toff) {// jQuery / DOMElement + attr[key] = toff[pos] + (win ? 0 : prev - $elem.offset()[pos]); + + // If it's a dom element, reduce the margin + if (settings.margin) { + attr[key] -= parseInt( targ.css( 'margin' + Pos ), 10 ) || 0; + attr[key] -= parseInt( targ.css( 'border' + Pos + 'Width' ), 10 ) || 0; + } + + attr[key] += offset[pos] || 0; + + if (settings.over[pos]) { + // Scroll to a fraction of its width/height + attr[key] += targ[axis === 'x'?'width':'height']() * settings.over[pos]; + } + } else { + var val = targ[pos]; + // Handle percentage values + attr[key] = val.slice && val.slice( -1 ) === '%' ? + parseFloat( val ) / 100 * max + : val; + } + + // Number or 'number' + if (settings.limit && /^\d+$/.test( attr[key] )) { + // Check the limits + attr[key] = attr[key] <= 0 ? 0 : Math.min( attr[key], max ); + } + + // Don't waste time animating, if there's no need. + if ( ! i && settings.axis.length > 1) { + if (prev === attr[key]) { + // No animation needed + attr = {}; + } else if (queue) { + // Intermediate animation + animate( settings.onAfterFirst ); + // Don't animate this axis again in the next iteration. + attr = {}; + } + } + }); + + animate( settings.onAfter ); + + function animate(callback) { + var opts = $.extend({}, settings, { + // The queue setting conflicts with animate() + // Force it to always be true + queue: true, + duration: duration, + complete: callback && function() { + callback.call( elem, targ, settings ); + } + }); + $elem.animate( attr, opts ); + } + }); + }; + + // Max scrolling position, works on quirks mode + // It only fails (not too badly) on IE, quirks mode. + $scrollTo.max = function(elem, axis) { + var Dim = axis === 'x' ? 'Width' : 'Height', + scroll = 'scroll' + Dim; + + if ( ! isWin( elem )) { + return elem[scroll] - $( elem )[Dim.toLowerCase()](); } + + var size = 'client' + Dim, + doc = elem.ownerDocument || elem.document, + html = doc.documentElement, + body = doc.body; + + return Math.max( html[scroll], body[scroll] ) - Math.min( html[size], body[size] ); + }; + + function both(val) { + return $.isFunction( val ) || $.isPlainObject( val ) ? val : { top:val, left:val }; + } + + // Add special hooks so that window scroll properties can be animated + $.Tween.propHooks.scrollLeft = $.Tween.propHooks.scrollTop = { + get: function(t) { + return $( t.elem )[t.prop](); + }, + set: function(t) { + var curr = this.get( t ); + // If interrupt is true and user scrolled, stop animating + if (t.options.interrupt && t._last && t._last !== curr) { + return $( t.elem ).stop(); + } + var next = Math.round( t.now ); + // Don't waste CPU + // Browsers don't render floating point scroll + if (curr !== next) { + $( t.elem )[t.prop](next); + t._last = this.get( t ); + } + } + }; + + // AMD requirement + return $scrollTo; +}); diff --git a/pique/assets/js/jquery.scrollTo.min.js b/pique/assets/js/jquery.scrollTo.min.js new file mode 100644 index 000000000..ead8108b5 --- /dev/null +++ b/pique/assets/js/jquery.scrollTo.min.js @@ -0,0 +1,7 @@ +/** + * Copyright (c) 2007-2015 Ariel Flesler - afleslergmailcom | http://flesler.blogspot.com + * Licensed under MIT + * @author Ariel Flesler + * @version 2.1.2 + */ +;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1 axis.oldScroll + var direction = isForward ? axis.forward : axis.backward + + for (var waypointKey in this.waypoints[axisKey]) { + var waypoint = this.waypoints[axisKey][waypointKey] + var wasBeforeTriggerPoint = axis.oldScroll < waypoint.triggerPoint + var nowAfterTriggerPoint = axis.newScroll >= waypoint.triggerPoint + var crossedForward = wasBeforeTriggerPoint && nowAfterTriggerPoint + var crossedBackward = ! wasBeforeTriggerPoint && ! nowAfterTriggerPoint + if (crossedForward || crossedBackward) { + waypoint.queueTrigger( direction ) + triggeredGroups[waypoint.group.id] = waypoint.group + } + } + } + + for (var groupKey in triggeredGroups) { + triggeredGroups[groupKey].flushTriggers() + } + + this.oldScroll = { + x: axes.horizontal.newScroll, + y: axes.vertical.newScroll + } + } + + /* Private */ + Context.prototype.innerHeight = function() { + /*eslint-disable eqeqeq */ + if (this.element == this.element.window) { + return Waypoint.viewportHeight() + } + /*eslint-enable eqeqeq */ + return this.adapter.innerHeight() + } + + /* Private */ + Context.prototype.remove = function(waypoint) { + delete this.waypoints[waypoint.axis][waypoint.key] + this.checkEmpty() + } + + /* Private */ + Context.prototype.innerWidth = function() { + /*eslint-disable eqeqeq */ + if (this.element == this.element.window) { + return Waypoint.viewportWidth() + } + /*eslint-enable eqeqeq */ + return this.adapter.innerWidth() + } + + /* Public */ + /* http://imakewebthings.com/waypoints/api/context-destroy */ + Context.prototype.destroy = function() { + var allWaypoints = [] + for (var axis in this.waypoints) { + for (var waypointKey in this.waypoints[axis]) { + allWaypoints.push( this.waypoints[axis][waypointKey] ) + } + } + for (var i = 0, end = allWaypoints.length; i < end; i++) { + allWaypoints[i].destroy() + } + } + + /* Public */ + /* http://imakewebthings.com/waypoints/api/context-refresh */ + Context.prototype.refresh = function() { + /*eslint-disable eqeqeq */ + var isWindow = this.element == this.element.window + /*eslint-enable eqeqeq */ + var contextOffset = this.adapter.offset() + var triggeredGroups = {} + var axes + + this.handleScroll() + axes = { + horizontal: { + contextOffset: isWindow ? 0 : contextOffset.left, + contextScroll: isWindow ? 0 : this.oldScroll.x, + contextDimension: this.innerWidth(), + oldScroll: this.oldScroll.x, + forward: 'right', + backward: 'left', + offsetProp: 'left' + }, + vertical: { + contextOffset: isWindow ? 0 : contextOffset.top, + contextScroll: isWindow ? 0 : this.oldScroll.y, + contextDimension: this.innerHeight(), + oldScroll: this.oldScroll.y, + forward: 'down', + backward: 'up', + offsetProp: 'top' + } + } + + for (var axisKey in axes) { + var axis = axes[axisKey] + for (var waypointKey in this.waypoints[axisKey]) { + var waypoint = this.waypoints[axisKey][waypointKey] + var adjustment = waypoint.options.offset + var oldTriggerPoint = waypoint.triggerPoint + var elementOffset = 0 + var freshWaypoint = oldTriggerPoint == null + var contextModifier, wasBeforeScroll, nowAfterScroll + var triggeredBackward, triggeredForward + + if (waypoint.element !== waypoint.element.window) { + elementOffset = waypoint.adapter.offset()[axis.offsetProp] + } + + if (typeof adjustment === 'function') { + adjustment = adjustment.apply( waypoint ) + } else if (typeof adjustment === 'string') { + adjustment = parseFloat( adjustment ) + if (waypoint.options.offset.indexOf( '%' ) > - 1) { + adjustment = Math.ceil( axis.contextDimension * adjustment / 100 ) + } + } + + contextModifier = axis.contextScroll - axis.contextOffset + waypoint.triggerPoint = elementOffset + contextModifier - adjustment + wasBeforeScroll = oldTriggerPoint < axis.oldScroll + nowAfterScroll = waypoint.triggerPoint >= axis.oldScroll + triggeredBackward = wasBeforeScroll && nowAfterScroll + triggeredForward = ! wasBeforeScroll && ! nowAfterScroll + + if ( ! freshWaypoint && triggeredBackward) { + waypoint.queueTrigger( axis.backward ) + triggeredGroups[waypoint.group.id] = waypoint.group + } else if ( ! freshWaypoint && triggeredForward) { + waypoint.queueTrigger( axis.forward ) + triggeredGroups[waypoint.group.id] = waypoint.group + } else if (freshWaypoint && axis.oldScroll >= waypoint.triggerPoint) { + waypoint.queueTrigger( axis.forward ) + triggeredGroups[waypoint.group.id] = waypoint.group + } + } + } + + for (var groupKey in triggeredGroups) { + triggeredGroups[groupKey].flushTriggers() + } + + return this + } + + /* Private */ + Context.findOrCreateByElement = function(element) { + return Context.findByElement( element ) || new Context( element ) + } + + /* Private */ + Context.refreshAll = function() { + for (var contextId in contexts) { + contexts[contextId].refresh() + } + } + + /* Public */ + /* http://imakewebthings.com/waypoints/api/context-find-by-element */ + Context.findByElement = function(element) { + return contexts[element.waypointContextKey] + } + + window.onload = function() { + if (oldWindowLoad) { + oldWindowLoad() + } + Context.refreshAll() + } + + Waypoint.requestAnimationFrame = function(callback) { + var requestFn = window.requestAnimationFrame || + window.mozRequestAnimationFrame || + window.webkitRequestAnimationFrame || + requestAnimationFrameShim + requestFn.call( window, callback ) + } + Waypoint.Context = Context +}()) +;(function() { + 'use strict' + + function byTriggerPoint(a, b) { + return a.triggerPoint - b.triggerPoint + } + + function byReverseTriggerPoint(a, b) { + return b.triggerPoint - a.triggerPoint + } + + var groups = { + vertical: {}, + horizontal: {} + } + var Waypoint = window.Waypoint + + /* http://imakewebthings.com/waypoints/api/group */ + function Group(options) { + this.name = options.name + this.axis = options.axis + this.id = this.name + '-' + this.axis + this.waypoints = [] + this.clearTriggerQueues() + groups[this.axis][this.name] = this + } + + /* Private */ + Group.prototype.add = function(waypoint) { + this.waypoints.push( waypoint ) + } + + /* Private */ + Group.prototype.clearTriggerQueues = function() { + this.triggerQueues = { + up: [], + down: [], + left: [], + right: [] + } + } + + /* Private */ + Group.prototype.flushTriggers = function() { + for (var direction in this.triggerQueues) { + var waypoints = this.triggerQueues[direction] + var reverse = direction === 'up' || direction === 'left' + waypoints.sort( reverse ? byReverseTriggerPoint : byTriggerPoint ) + for (var i = 0, end = waypoints.length; i < end; i += 1) { + var waypoint = waypoints[i] + if (waypoint.options.continuous || i === waypoints.length - 1) { + waypoint.trigger( [direction] ) + } + } + } + this.clearTriggerQueues() + } + + /* Private */ + Group.prototype.next = function(waypoint) { + this.waypoints.sort( byTriggerPoint ) + var index = Waypoint.Adapter.inArray( waypoint, this.waypoints ) + var isLast = index === this.waypoints.length - 1 + return isLast ? null : this.waypoints[index + 1] + } + + /* Private */ + Group.prototype.previous = function(waypoint) { + this.waypoints.sort( byTriggerPoint ) + var index = Waypoint.Adapter.inArray( waypoint, this.waypoints ) + return index ? this.waypoints[index - 1] : null + } + + /* Private */ + Group.prototype.queueTrigger = function(waypoint, direction) { + this.triggerQueues[direction].push( waypoint ) + } + + /* Private */ + Group.prototype.remove = function(waypoint) { + var index = Waypoint.Adapter.inArray( waypoint, this.waypoints ) + if (index > -1) { + this.waypoints.splice( index, 1 ) + } + } + + /* Public */ + /* http://imakewebthings.com/waypoints/api/first */ + Group.prototype.first = function() { + return this.waypoints[0] + } + + /* Public */ + /* http://imakewebthings.com/waypoints/api/last */ + Group.prototype.last = function() { + return this.waypoints[this.waypoints.length - 1] + } + + /* Private */ + Group.findOrCreate = function(options) { + return groups[options.axis][options.name] || new Group( options ) + } + + Waypoint.Group = Group +}()) +;(function() { + 'use strict' + + var $ = window.jQuery + var Waypoint = window.Waypoint + + function JQueryAdapter(element) { + this.$element = $( element ) + } + + $.each([ + 'innerHeight', + 'innerWidth', + 'off', + 'offset', + 'on', + 'outerHeight', + 'outerWidth', + 'scrollLeft', + 'scrollTop' + ], function(i, method) { + JQueryAdapter.prototype[method] = function() { + var args = Array.prototype.slice.call( arguments ) + return this.$element[method].apply( this.$element, args ) + } + }) + + $.each([ + 'extend', + 'inArray', + 'isEmptyObject' + ], function(i, method) { + JQueryAdapter[method] = $[method] + }) + + Waypoint.adapters.push({ + name: 'jquery', + Adapter: JQueryAdapter + }) + Waypoint.Adapter = JQueryAdapter +}()) +;(function() { + 'use strict' + + var Waypoint = window.Waypoint + + function createExtension(framework) { + return function() { + var waypoints = [] + var overrides = arguments[0] + + if (framework.isFunction( arguments[0] )) { + overrides = framework.extend( {}, arguments[1] ) + overrides.handler = arguments[0] + } + + this.each(function() { + var options = framework.extend({}, overrides, { + element: this + }) + if (typeof options.context === 'string') { + options.context = framework( this ).closest( options.context )[0] + } + waypoints.push( new Waypoint( options ) ) + }) + + return waypoints + } + } + + if (window.jQuery) { + window.jQuery.fn.waypoint = createExtension( window.jQuery ) + } + if (window.Zepto) { + window.Zepto.fn.waypoint = createExtension( window.Zepto ) + } +}()) +; \ No newline at end of file diff --git a/pique/assets/js/jquery.waypoints.min.js b/pique/assets/js/jquery.waypoints.min.js new file mode 100644 index 000000000..44a1d323c --- /dev/null +++ b/pique/assets/js/jquery.waypoints.min.js @@ -0,0 +1,7 @@ +/*! +Waypoints - 3.1.1 +Copyright © 2011-2015 Caleb Troughton +Licensed under the MIT license. +https://github.com/imakewebthings/waypoints/blog/master/licenses.txt +*/ +!function(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.invokeAll("enable")},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical);t&&e&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e[i],n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints[i]){var a=this.waypoints[i][s],l=o.oldScroll=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var n in t){var r=t[n];for(var s in this.waypoints[n]){var a,l,h,p,u,c=this.waypoints[n][s],d=c.options.offset,f=c.triggerPoint,w=0,y=null==f;c.element!==c.element.window&&(w=c.adapter.offset()[r.offsetProp]),"function"==typeof d?d=d.apply(c):"string"==typeof d&&(d=parseFloat(d),c.options.offset.indexOf("%")>-1&&(d=Math.ceil(r.contextDimension*d/100))),a=r.contextScroll-r.contextOffset,c.triggerPoint=w+a-d,l=f=r.oldScroll,p=l&&h,u=!l&&!h,!y&&p?(c.queueTrigger(r.backward),o[c.group.id]=c.group):!y&&u?(c.queueTrigger(r.forward),o[c.group.id]=c.group):y&&r.oldScroll>=c.triggerPoint&&(c.queueTrigger(r.forward),o[c.group.id]=c.group)}}for(var g in o)o[g].flushTriggers();return this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues[i],n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}(); \ No newline at end of file diff --git a/pique/assets/js/navigation.js b/pique/assets/js/navigation.js new file mode 100644 index 000000000..094401be4 --- /dev/null +++ b/pique/assets/js/navigation.js @@ -0,0 +1,104 @@ +/** + * navigation.js + * + * Handles toggling the navigation menu for small screens and enables tab + * support for dropdown menus. + */ +( function( $ ) { + var container, moreMenu, menu, button, links, subMenus; + + container = document.getElementById( 'site-navigation' ); + if ( ! container ) { + return; + } + + // Here, we're going to look for the priority plus menu item to determine if we're on a small screen + moreMenu = document.getElementById( 'more-menu' ); + if ( ! moreMenu ) { + return; + } + + menu = container.getElementsByTagName( 'ul' )[0]; + + // If menu is empty, return early. + if ( 'undefined' === typeof menu ) { + return; + } + + menu.setAttribute( 'aria-expanded', 'false' ); + if ( -1 === menu.className.indexOf( 'nav-menu' ) ) { + menu.className += ' nav-menu'; + } + + // Get all the link elements within the menu. + links = menu.getElementsByTagName( 'a' ); + subMenus = menu.getElementsByTagName( 'ul' ); + + $( document ).ready( function() { + + // Open and close our sub-menus when needed + $( '#site-navigation .menu-item-has-children > a' ).on( 'click' , function( e ) { + if ( $( window ).width() <= '767' ) { + + // If our sub-menu is already open, we need to figure out what to do if the user clicks the parent item again + if ($(this).parent('#site-navigation .menu-item-has-children').hasClass('focus') && + $(this).parent().attr('id') === $(e.target).parent().attr('id')) { + + // If our parent item links somewhere, let's go there! + if ($(this).attr('href').length && '#' !== $(this).attr('href')) { + return true; + + // If our link doesn't go anywhere, we're just going to remove the focus class and close the menu + } else if ($(this).attr('href').length && '#' === $(this).attr('href')) { + $('#site-navigation .menu-item-has-children').removeClass('focus'); + e.preventDefault(); + return false; + } + } + + // If this is a menu item with sub-menus, but it's already inside a sub-menu itself, + // let's go to the link (so long as there actually IS a link) + if ($(this).closest('ul').hasClass('sub-menu') && + $(this).attr('href').length && '#' !== $(this).attr('href')) { + return true; + } + + // Close any other menus that might be open + $('#site-navigation .menu-item-has-children').removeClass('focus'); + + // Open/close the menu we've clicked on + $(this).parent('#site-navigation .menu-item-has-children').toggleClass('focus'); + + // Open our child menus too! + $(this).children('.menu-item-has-children').toggleClass('focus'); + + // Block our default link behaviour + e.preventDefault(); + } + }); + + // When clicking on the document, close any open menus. + $( document ).on('click touchstart', function (e) { + if ( ! $( e.target ).closest( '#site-navigation .menu-item' ).length) { + $( '#site-navigation .menu-item-has-children' ).removeClass( 'focus' ); + } + }); + + // Get current window width + var $windowWidth = $(window).width(); + + // When the window is resized, close all menus + $( window ).on( 'resize', function() { + + // Check window width has actually changed and it's not just iOS triggering a resize event on scroll + if ( $windowWidth !== $(window).width() ) { + $( '#site-navigation-wrapper .menu-item-has-children' ).removeClass( 'focus' ); + + // Update the window width for next time + $windowWidth = $( window ).width(); + } + }); + + }); + +} )( jQuery ); diff --git a/pique/assets/js/panel-customizer.js b/pique/assets/js/panel-customizer.js new file mode 100644 index 000000000..582c89fe9 --- /dev/null +++ b/pique/assets/js/panel-customizer.js @@ -0,0 +1,74 @@ +/** + * Theme Customizer enhancements, specific to panels, for a better user experience. + * + * This allows us to detect when the user has opened specific sections within the Customizer, + * and adjust our preview pane accordingly. + */ + +( function( $ ) { + + wp.customize.bind( 'ready', function() { + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel1' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel1', expanded: isExpanding } ); + } ); + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel2' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel2', expanded: isExpanding } ); + } ); + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel3' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel3', expanded: isExpanding } ); + } ); + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel4' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel4', expanded: isExpanding } ); + } ); + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel5' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel5', expanded: isExpanding } ); + } ); + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel6' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel6', expanded: isExpanding } ); + } ); + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel7' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel7', expanded: isExpanding } ); + } ); + + // Detect when the section for each panel is expanded (or closed) so we can adjust preview accordingly + wp.customize.section( 'pique_panel8' ).expanded.bind( function( isExpanding ) { + // isExpanding will = true if you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique-panel8', expanded: isExpanding } ); + } ); + + /* + var panels = [ '1', '2', '3', '4', '5', '6', '7', '8' ]; + // Add a listener for each panel + for ( i=0; panels[i] =< 8; i++ ) { + console.log ( panels[i] ); + wp.customize.section( 'pique_panel' + panels[i] ).expanded.bind( function( isExpanding ) { + // this will return true you're entering the section, false if you're leaving it + wp.customize.previewer.send( 'section-highlight', { section: 'pique_panel' + panels[], expanded: isExpanding } ); + } ); + } + */ + + } ); + +} )( jQuery ); diff --git a/pique/assets/js/skip-link-focus-fix.js b/pique/assets/js/skip-link-focus-fix.js new file mode 100644 index 000000000..6e8c68522 --- /dev/null +++ b/pique/assets/js/skip-link-focus-fix.js @@ -0,0 +1,26 @@ +( function() { + var is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1, + is_opera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1, + is_ie = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1; + + if ( ( is_webkit || is_opera || is_ie ) && document.getElementById && window.addEventListener ) { + window.addEventListener( 'hashchange', function() { + var id = location.hash.substring( 1 ), + element; + + if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) { + return; + } + + element = document.getElementById( id ); + + if ( element ) { + if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) { + element.tabIndex = -1; + } + + element.focus(); + } + }, false ); + } +})(); diff --git a/pique/assets/js/woocommerce.js b/pique/assets/js/woocommerce.js new file mode 100644 index 000000000..9c020ae66 --- /dev/null +++ b/pique/assets/js/woocommerce.js @@ -0,0 +1,21 @@ +/** + * Header enhancements for more intelligent dynamic headers. + * + * This sets the masthead to the height of an uploaded image and applies sticky navigation. + */ + +( function( $ ) { + + // Add SVG image zoom icon + function imageZoomIcon() { + $( '.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger' ) + .empty() + .append( '' ); + } + + // Initialize init on page load. + $( document ).on( 'ready', function() { + imageZoomIcon(); + }); + +} )( jQuery ); diff --git a/pique/comments.php b/pique/comments.php new file mode 100644 index 000000000..df3cab978 --- /dev/null +++ b/pique/comments.php @@ -0,0 +1,81 @@ + + +
+ + + + + +

+ ' . get_the_title() . '' + ); + ?> +

+ + 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> + + + +
    + 'ol', + 'short_ping' => true, + 'avatar_size' => 150, + ) ); + ?> +
+ + 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> + + + + + + +

+ + + + +
diff --git a/pique/components/content-excerpt.php b/pique/components/content-excerpt.php new file mode 100644 index 000000000..4035f1526 --- /dev/null +++ b/pique/components/content-excerpt.php @@ -0,0 +1,27 @@ + + +
> + +
+ + ', esc_url( get_permalink() ) ), '' ); ?> + + + + +
+ +
+ +
+ +
diff --git a/pique/components/content-front.php b/pique/components/content-front.php new file mode 100644 index 000000000..19549dbcb --- /dev/null +++ b/pique/components/content-front.php @@ -0,0 +1,109 @@ + + +
data-panel-title="Panel " > + ID ), 'pique-hero' ); ?> +
+ +
+
+ ', '' ); ?> + + + + + +
+ +
+ +
+ +
+ →', 'pique' ), array( 'span' => array( 'class' => array() ) ) ), + the_title( '"', '"', false ) + ) ); + ?> + + + + 3, + 'post_status' => 'publish', + ) ); + ?> + + have_posts() ) : ?> + +
+ + have_posts() ) : $recent_posts->the_post(); + get_template_part( 'components/content', 'excerpt' ); + $count++; + endwhile; + wp_reset_postdata(); + ?> +
+ + + + + + +
+ +
+ + + + + '', + ) ); + ?> +
+ +
+ +
diff --git a/pique/components/content-grid.php b/pique/components/content-grid.php new file mode 100644 index 000000000..e80f716b1 --- /dev/null +++ b/pique/components/content-grid.php @@ -0,0 +1,46 @@ + + + 'page', + 'orderby' => 'menu_order', + 'order' => 'ASC', + 'post_parent' => $post->ID, + 'posts_per_page' => 12, + 'no_found_rows' => true, +) ); +?> + +have_posts() ) : ?> + +
+ + have_posts() ) : $pique_child_pages->the_post(); ?> + +
> + + + + ' , '' ); ?> + + +
+ + + +
+ + diff --git a/pique/components/content-hero.php b/pique/components/content-hero.php new file mode 100644 index 000000000..18e04fd12 --- /dev/null +++ b/pique/components/content-hero.php @@ -0,0 +1,34 @@ + + +
> + ID ), 'pique-hero' ); ?> +
+ + +
+ +
+ + →', 'pique' ), array( 'span' => array( 'class' => array() ) ) ), + the_title( '"', '"', false ) + ) ); + ?> +
+ +
+ + + +
diff --git a/pique/components/content-none.php b/pique/components/content-none.php new file mode 100644 index 000000000..8754e6614 --- /dev/null +++ b/pique/components/content-none.php @@ -0,0 +1,34 @@ + + +
+ + +
+ + +

Get started here.', 'pique' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?>

+ + + +

+ + + + +

+ + + +
+
diff --git a/pique/components/content-page.php b/pique/components/content-page.php new file mode 100644 index 000000000..225e717fa --- /dev/null +++ b/pique/components/content-page.php @@ -0,0 +1,27 @@ + + +
> +
+ + ', '' ); ?> +
+ +
+ + '', + ) ); + ?> +
+
diff --git a/pique/components/content-search.php b/pique/components/content-search.php new file mode 100644 index 000000000..4642898d1 --- /dev/null +++ b/pique/components/content-search.php @@ -0,0 +1,30 @@ + + +
> +
+ ', esc_url( get_permalink() ) ), '' ); ?> + + + + +
+ +
+ +
+ + +
diff --git a/pique/components/content-single.php b/pique/components/content-single.php new file mode 100644 index 000000000..8ac4edaed --- /dev/null +++ b/pique/components/content-single.php @@ -0,0 +1,31 @@ + + +
> +
+ + ', '' ); ?> +
+ +
+ + '', + ) ); + ?> +
+ + +
diff --git a/pique/components/content-testimonial.php b/pique/components/content-testimonial.php new file mode 100644 index 000000000..a5233fb6b --- /dev/null +++ b/pique/components/content-testimonial.php @@ -0,0 +1,23 @@ + +
> + +
+ +
+ + + + ', '' ); ?> +
diff --git a/pique/components/content.php b/pique/components/content.php new file mode 100644 index 000000000..cfbd23164 --- /dev/null +++ b/pique/components/content.php @@ -0,0 +1,56 @@ + + +
> + ID, get_post_thumbnail_id( $post->ID ), 'pique-hero' ); ?> +
+ + + +
+ +
+ ', '' ); ?> +
+ +
+ + + + + '', + ) ); + ?> +
+ +
+ +
+
+
diff --git a/pique/fonts/FontAwesome.otf b/pique/fonts/FontAwesome.otf new file mode 100644 index 000000000..401ec0f36 Binary files /dev/null and b/pique/fonts/FontAwesome.otf differ diff --git a/pique/fonts/Genericons.eot b/pique/fonts/Genericons.eot new file mode 100644 index 000000000..b5f8647f7 Binary files /dev/null and b/pique/fonts/Genericons.eot differ diff --git a/pique/fonts/Genericons.svg b/pique/fonts/Genericons.svg new file mode 100644 index 000000000..f81311075 --- /dev/null +++ b/pique/fonts/Genericons.svg @@ -0,0 +1,543 @@ + + + + + +Created by FontForge 20120731 at Fri Oct 3 09:39:07 2014 + By Joen +Created by Joen with FontForge 2.0 (http://fontforge.sf.net) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pique/fonts/Genericons.ttf b/pique/fonts/Genericons.ttf new file mode 100644 index 000000000..1f160ddbc Binary files /dev/null and b/pique/fonts/Genericons.ttf differ diff --git a/pique/fonts/Genericons.woff b/pique/fonts/Genericons.woff new file mode 100644 index 000000000..973e03393 Binary files /dev/null and b/pique/fonts/Genericons.woff differ diff --git a/pique/fonts/font-awesome.css b/pique/fonts/font-awesome.css new file mode 100644 index 000000000..ee906a819 --- /dev/null +++ b/pique/fonts/font-awesome.css @@ -0,0 +1,2337 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-fw { + width: 1.28571429em; + text-align: center; +} +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.fa-ul > li { + position: relative; +} +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.fa-pull-left { + float: left; +} +.fa-pull-right { + float: right; +} +.fa.fa-pull-left { + margin-right: .3em; +} +.fa.fa-pull-right { + margin-left: .3em; +} +/* Deprecated as of 4.4.0 */ +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.fa.pull-left { + margin-right: .3em; +} +.fa.pull-right { + margin-left: .3em; +} +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; +} +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-feed:before, +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} +.fa-space-shuttle:before { + content: "\f197"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-openid:before { + content: "\f19b"; +} +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c"; +} +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d"; +} +.fa-yahoo:before { + content: "\f19e"; +} +.fa-google:before { + content: "\f1a0"; +} +.fa-reddit:before { + content: "\f1a1"; +} +.fa-reddit-square:before { + content: "\f1a2"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-delicious:before { + content: "\f1a5"; +} +.fa-digg:before { + content: "\f1a6"; +} +.fa-pied-piper-pp:before { + content: "\f1a7"; +} +.fa-pied-piper-alt:before { + content: "\f1a8"; +} +.fa-drupal:before { + content: "\f1a9"; +} +.fa-joomla:before { + content: "\f1aa"; +} +.fa-language:before { + content: "\f1ab"; +} +.fa-fax:before { + content: "\f1ac"; +} +.fa-building:before { + content: "\f1ad"; +} +.fa-child:before { + content: "\f1ae"; +} +.fa-paw:before { + content: "\f1b0"; +} +.fa-spoon:before { + content: "\f1b1"; +} +.fa-cube:before { + content: "\f1b2"; +} +.fa-cubes:before { + content: "\f1b3"; +} +.fa-behance:before { + content: "\f1b4"; +} +.fa-behance-square:before { + content: "\f1b5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-spotify:before { + content: "\f1bc"; +} +.fa-deviantart:before { + content: "\f1bd"; +} +.fa-soundcloud:before { + content: "\f1be"; +} +.fa-database:before { + content: "\f1c0"; +} +.fa-file-pdf-o:before { + content: "\f1c1"; +} +.fa-file-word-o:before { + content: "\f1c2"; +} +.fa-file-excel-o:before { + content: "\f1c3"; +} +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5"; +} +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6"; +} +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7"; +} +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} +.fa-file-code-o:before { + content: "\f1c9"; +} +.fa-vine:before { + content: "\f1ca"; +} +.fa-codepen:before { + content: "\f1cb"; +} +.fa-jsfiddle:before { + content: "\f1cc"; +} +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd"; +} +.fa-circle-o-notch:before { + content: "\f1ce"; +} +.fa-ra:before, +.fa-resistance:before, +.fa-rebel:before { + content: "\f1d0"; +} +.fa-ge:before, +.fa-empire:before { + content: "\f1d1"; +} +.fa-git-square:before { + content: "\f1d2"; +} +.fa-git:before { + content: "\f1d3"; +} +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: "\f1d4"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9"; +} +.fa-history:before { + content: "\f1da"; +} +.fa-circle-thin:before { + content: "\f1db"; +} +.fa-header:before { + content: "\f1dc"; +} +.fa-paragraph:before { + content: "\f1dd"; +} +.fa-sliders:before { + content: "\f1de"; +} +.fa-share-alt:before { + content: "\f1e0"; +} +.fa-share-alt-square:before { + content: "\f1e1"; +} +.fa-bomb:before { + content: "\f1e2"; +} +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-binoculars:before { + content: "\f1e5"; +} +.fa-plug:before { + content: "\f1e6"; +} +.fa-slideshare:before { + content: "\f1e7"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-yelp:before { + content: "\f1e9"; +} +.fa-newspaper-o:before { + content: "\f1ea"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-calculator:before { + content: "\f1ec"; +} +.fa-paypal:before { + content: "\f1ed"; +} +.fa-google-wallet:before { + content: "\f1ee"; +} +.fa-cc-visa:before { + content: "\f1f0"; +} +.fa-cc-mastercard:before { + content: "\f1f1"; +} +.fa-cc-discover:before { + content: "\f1f2"; +} +.fa-cc-amex:before { + content: "\f1f3"; +} +.fa-cc-paypal:before { + content: "\f1f4"; +} +.fa-cc-stripe:before { + content: "\f1f5"; +} +.fa-bell-slash:before { + content: "\f1f6"; +} +.fa-bell-slash-o:before { + content: "\f1f7"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-copyright:before { + content: "\f1f9"; +} +.fa-at:before { + content: "\f1fa"; +} +.fa-eyedropper:before { + content: "\f1fb"; +} +.fa-paint-brush:before { + content: "\f1fc"; +} +.fa-birthday-cake:before { + content: "\f1fd"; +} +.fa-area-chart:before { + content: "\f1fe"; +} +.fa-pie-chart:before { + content: "\f200"; +} +.fa-line-chart:before { + content: "\f201"; +} +.fa-lastfm:before { + content: "\f202"; +} +.fa-lastfm-square:before { + content: "\f203"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-bicycle:before { + content: "\f206"; +} +.fa-bus:before { + content: "\f207"; +} +.fa-ioxhost:before { + content: "\f208"; +} +.fa-angellist:before { + content: "\f209"; +} +.fa-cc:before { + content: "\f20a"; +} +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b"; +} +.fa-meanpath:before { + content: "\f20c"; +} +.fa-buysellads:before { + content: "\f20d"; +} +.fa-connectdevelop:before { + content: "\f20e"; +} +.fa-dashcube:before { + content: "\f210"; +} +.fa-forumbee:before { + content: "\f211"; +} +.fa-leanpub:before { + content: "\f212"; +} +.fa-sellsy:before { + content: "\f213"; +} +.fa-shirtsinbulk:before { + content: "\f214"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-cart-plus:before { + content: "\f217"; +} +.fa-cart-arrow-down:before { + content: "\f218"; +} +.fa-diamond:before { + content: "\f219"; +} +.fa-ship:before { + content: "\f21a"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-motorcycle:before { + content: "\f21c"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-heartbeat:before { + content: "\f21e"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-mars:before { + content: "\f222"; +} +.fa-mercury:before { + content: "\f223"; +} +.fa-intersex:before, +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-mars-double:before { + content: "\f227"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-mars-stroke:before { + content: "\f229"; +} +.fa-mars-stroke-v:before { + content: "\f22a"; +} +.fa-mars-stroke-h:before { + content: "\f22b"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-genderless:before { + content: "\f22d"; +} +.fa-facebook-official:before { + content: "\f230"; +} +.fa-pinterest-p:before { + content: "\f231"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-server:before { + content: "\f233"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-hotel:before, +.fa-bed:before { + content: "\f236"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-train:before { + content: "\f238"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-medium:before { + content: "\f23a"; +} +.fa-yc:before, +.fa-y-combinator:before { + content: "\f23b"; +} +.fa-optin-monster:before { + content: "\f23c"; +} +.fa-opencart:before { + content: "\f23d"; +} +.fa-expeditedssl:before { + content: "\f23e"; +} +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: "\f240"; +} +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: "\f241"; +} +.fa-battery-2:before, +.fa-battery-half:before { + content: "\f242"; +} +.fa-battery-1:before, +.fa-battery-quarter:before { + content: "\f243"; +} +.fa-battery-0:before, +.fa-battery-empty:before { + content: "\f244"; +} +.fa-mouse-pointer:before { + content: "\f245"; +} +.fa-i-cursor:before { + content: "\f246"; +} +.fa-object-group:before { + content: "\f247"; +} +.fa-object-ungroup:before { + content: "\f248"; +} +.fa-sticky-note:before { + content: "\f249"; +} +.fa-sticky-note-o:before { + content: "\f24a"; +} +.fa-cc-jcb:before { + content: "\f24b"; +} +.fa-cc-diners-club:before { + content: "\f24c"; +} +.fa-clone:before { + content: "\f24d"; +} +.fa-balance-scale:before { + content: "\f24e"; +} +.fa-hourglass-o:before { + content: "\f250"; +} +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: "\f251"; +} +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: "\f252"; +} +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: "\f253"; +} +.fa-hourglass:before { + content: "\f254"; +} +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: "\f255"; +} +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: "\f256"; +} +.fa-hand-scissors-o:before { + content: "\f257"; +} +.fa-hand-lizard-o:before { + content: "\f258"; +} +.fa-hand-spock-o:before { + content: "\f259"; +} +.fa-hand-pointer-o:before { + content: "\f25a"; +} +.fa-hand-peace-o:before { + content: "\f25b"; +} +.fa-trademark:before { + content: "\f25c"; +} +.fa-registered:before { + content: "\f25d"; +} +.fa-creative-commons:before { + content: "\f25e"; +} +.fa-gg:before { + content: "\f260"; +} +.fa-gg-circle:before { + content: "\f261"; +} +.fa-tripadvisor:before { + content: "\f262"; +} +.fa-odnoklassniki:before { + content: "\f263"; +} +.fa-odnoklassniki-square:before { + content: "\f264"; +} +.fa-get-pocket:before { + content: "\f265"; +} +.fa-wikipedia-w:before { + content: "\f266"; +} +.fa-safari:before { + content: "\f267"; +} +.fa-chrome:before { + content: "\f268"; +} +.fa-firefox:before { + content: "\f269"; +} +.fa-opera:before { + content: "\f26a"; +} +.fa-internet-explorer:before { + content: "\f26b"; +} +.fa-tv:before, +.fa-television:before { + content: "\f26c"; +} +.fa-contao:before { + content: "\f26d"; +} +.fa-500px:before { + content: "\f26e"; +} +.fa-amazon:before { + content: "\f270"; +} +.fa-calendar-plus-o:before { + content: "\f271"; +} +.fa-calendar-minus-o:before { + content: "\f272"; +} +.fa-calendar-times-o:before { + content: "\f273"; +} +.fa-calendar-check-o:before { + content: "\f274"; +} +.fa-industry:before { + content: "\f275"; +} +.fa-map-pin:before { + content: "\f276"; +} +.fa-map-signs:before { + content: "\f277"; +} +.fa-map-o:before { + content: "\f278"; +} +.fa-map:before { + content: "\f279"; +} +.fa-commenting:before { + content: "\f27a"; +} +.fa-commenting-o:before { + content: "\f27b"; +} +.fa-houzz:before { + content: "\f27c"; +} +.fa-vimeo:before { + content: "\f27d"; +} +.fa-black-tie:before { + content: "\f27e"; +} +.fa-fonticons:before { + content: "\f280"; +} +.fa-reddit-alien:before { + content: "\f281"; +} +.fa-edge:before { + content: "\f282"; +} +.fa-credit-card-alt:before { + content: "\f283"; +} +.fa-codiepie:before { + content: "\f284"; +} +.fa-modx:before { + content: "\f285"; +} +.fa-fort-awesome:before { + content: "\f286"; +} +.fa-usb:before { + content: "\f287"; +} +.fa-product-hunt:before { + content: "\f288"; +} +.fa-mixcloud:before { + content: "\f289"; +} +.fa-scribd:before { + content: "\f28a"; +} +.fa-pause-circle:before { + content: "\f28b"; +} +.fa-pause-circle-o:before { + content: "\f28c"; +} +.fa-stop-circle:before { + content: "\f28d"; +} +.fa-stop-circle-o:before { + content: "\f28e"; +} +.fa-shopping-bag:before { + content: "\f290"; +} +.fa-shopping-basket:before { + content: "\f291"; +} +.fa-hashtag:before { + content: "\f292"; +} +.fa-bluetooth:before { + content: "\f293"; +} +.fa-bluetooth-b:before { + content: "\f294"; +} +.fa-percent:before { + content: "\f295"; +} +.fa-gitlab:before { + content: "\f296"; +} +.fa-wpbeginner:before { + content: "\f297"; +} +.fa-wpforms:before { + content: "\f298"; +} +.fa-envira:before { + content: "\f299"; +} +.fa-universal-access:before { + content: "\f29a"; +} +.fa-wheelchair-alt:before { + content: "\f29b"; +} +.fa-question-circle-o:before { + content: "\f29c"; +} +.fa-blind:before { + content: "\f29d"; +} +.fa-audio-description:before { + content: "\f29e"; +} +.fa-volume-control-phone:before { + content: "\f2a0"; +} +.fa-braille:before { + content: "\f2a1"; +} +.fa-assistive-listening-systems:before { + content: "\f2a2"; +} +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; +} +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: "\f2a4"; +} +.fa-glide:before { + content: "\f2a5"; +} +.fa-glide-g:before { + content: "\f2a6"; +} +.fa-signing:before, +.fa-sign-language:before { + content: "\f2a7"; +} +.fa-low-vision:before { + content: "\f2a8"; +} +.fa-viadeo:before { + content: "\f2a9"; +} +.fa-viadeo-square:before { + content: "\f2aa"; +} +.fa-snapchat:before { + content: "\f2ab"; +} +.fa-snapchat-ghost:before { + content: "\f2ac"; +} +.fa-snapchat-square:before { + content: "\f2ad"; +} +.fa-pied-piper:before { + content: "\f2ae"; +} +.fa-first-order:before { + content: "\f2b0"; +} +.fa-yoast:before { + content: "\f2b1"; +} +.fa-themeisle:before { + content: "\f2b2"; +} +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: "\f2b3"; +} +.fa-fa:before, +.fa-font-awesome:before { + content: "\f2b4"; +} +.fa-handshake-o:before { + content: "\f2b5"; +} +.fa-envelope-open:before { + content: "\f2b6"; +} +.fa-envelope-open-o:before { + content: "\f2b7"; +} +.fa-linode:before { + content: "\f2b8"; +} +.fa-address-book:before { + content: "\f2b9"; +} +.fa-address-book-o:before { + content: "\f2ba"; +} +.fa-vcard:before, +.fa-address-card:before { + content: "\f2bb"; +} +.fa-vcard-o:before, +.fa-address-card-o:before { + content: "\f2bc"; +} +.fa-user-circle:before { + content: "\f2bd"; +} +.fa-user-circle-o:before { + content: "\f2be"; +} +.fa-user-o:before { + content: "\f2c0"; +} +.fa-id-badge:before { + content: "\f2c1"; +} +.fa-drivers-license:before, +.fa-id-card:before { + content: "\f2c2"; +} +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: "\f2c3"; +} +.fa-quora:before { + content: "\f2c4"; +} +.fa-free-code-camp:before { + content: "\f2c5"; +} +.fa-telegram:before { + content: "\f2c6"; +} +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: "\f2c7"; +} +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: "\f2c8"; +} +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: "\f2c9"; +} +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: "\f2ca"; +} +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: "\f2cb"; +} +.fa-shower:before { + content: "\f2cc"; +} +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: "\f2cd"; +} +.fa-podcast:before { + content: "\f2ce"; +} +.fa-window-maximize:before { + content: "\f2d0"; +} +.fa-window-minimize:before { + content: "\f2d1"; +} +.fa-window-restore:before { + content: "\f2d2"; +} +.fa-times-rectangle:before, +.fa-window-close:before { + content: "\f2d3"; +} +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: "\f2d4"; +} +.fa-bandcamp:before { + content: "\f2d5"; +} +.fa-grav:before { + content: "\f2d6"; +} +.fa-etsy:before { + content: "\f2d7"; +} +.fa-imdb:before { + content: "\f2d8"; +} +.fa-ravelry:before { + content: "\f2d9"; +} +.fa-eercast:before { + content: "\f2da"; +} +.fa-microchip:before { + content: "\f2db"; +} +.fa-snowflake-o:before { + content: "\f2dc"; +} +.fa-superpowers:before { + content: "\f2dd"; +} +.fa-wpexplorer:before { + content: "\f2de"; +} +.fa-meetup:before { + content: "\f2e0"; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} diff --git a/pique/fonts/font-awesome.min.css b/pique/fonts/font-awesome.min.css new file mode 100644 index 000000000..540440ce8 --- /dev/null +++ b/pique/fonts/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/pique/fonts/fontawesome-webfont.eot b/pique/fonts/fontawesome-webfont.eot new file mode 100644 index 000000000..e9f60ca95 Binary files /dev/null and b/pique/fonts/fontawesome-webfont.eot differ diff --git a/pique/fonts/fontawesome-webfont.svg b/pique/fonts/fontawesome-webfont.svg new file mode 100644 index 000000000..855c845e5 --- /dev/null +++ b/pique/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pique/fonts/fontawesome-webfont.ttf b/pique/fonts/fontawesome-webfont.ttf new file mode 100644 index 000000000..35acda2fa Binary files /dev/null and b/pique/fonts/fontawesome-webfont.ttf differ diff --git a/pique/fonts/fontawesome-webfont.woff b/pique/fonts/fontawesome-webfont.woff new file mode 100644 index 000000000..400014a4b Binary files /dev/null and b/pique/fonts/fontawesome-webfont.woff differ diff --git a/pique/fonts/fontawesome-webfont.woff2 b/pique/fonts/fontawesome-webfont.woff2 new file mode 100644 index 000000000..4d13fc604 Binary files /dev/null and b/pique/fonts/fontawesome-webfont.woff2 differ diff --git a/pique/fonts/genericons.css b/pique/fonts/genericons.css new file mode 100644 index 000000000..473b04f09 --- /dev/null +++ b/pique/fonts/genericons.css @@ -0,0 +1,213 @@ +/** + + Genericons + +*/ + + +/* IE8 and below use EOT and allow cross-site embedding. + IE9 uses WOFF which is base64 encoded to allow cross-site embedding. + So unfortunately, IE9 will throw a console error, but it'll still work. + When the font is base64 encoded, cross-site embedding works in Firefox */ + +@font-face { + font-family: 'Genericons'; + src: url('Genericons.eot'); +} + +@font-face { + font-family: 'Genericons'; + src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAADgYAA0AAAAAWDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA3/AAAABoAAAAcbOWpBk9TLzIAAAGUAAAARQAAAGBVb3cYY21hcAAAAngAAACUAAABqq7WqvhjdnQgAAADDAAAAAQAAAAEAEQFEWdhc3AAADf0AAAACAAAAAj//wADZ2x5ZgAABEAAADAqAABJ0A3bTddoZWFkAAABMAAAACkAAAA2B8ZTM2hoZWEAAAFcAAAAGAAAACQQuQgFaG10eAAAAdwAAACZAAABNGKqU2Vsb2NhAAADEAAAAS4AAAEuB9f1Nm1heHAAAAF0AAAAIAAAACAA6AEZbmFtZQAANGwAAAFRAAAChXCWuFJwb3N0AAA1wAAAAjEAAAXmlxz2knjaY2BkYGAA4rplZ/Tj+W2+MnBzMIDAhRBmaWSag4EDQjGBKADj7gZyAAAAeNpjYGRg4GAAgh1gEsRmZEAFLAAWNADXAAEAAACWAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNg4WBg/MLAysDAasw6k4GBUQ5CM19nSGMSYmBgYmDjZIADAQSTISDNNYXhwEeGr+IcIO4ODogwI5ISBQZGAOtvCU0AAAB42kVPuxXCQAyTL+GRmmVoKdgA6FNRMoObdAyRnj3o6NkGLOl4+N75I381AUeUTPoNASSyoWVUBMYUYkmt/KOQVdG79IceFtwj8QpN4JxI+vL4LrYUTlL294GNerLNcGfiRMu6gfhOGMbSzTOz30lv9SbvMoe+TRfHFld08b4wQ/Mhk6ocD8rtKzrHrV/49A34cy/9BURAKJ4AAAB42t2NPw8BQRTEZ+/E2Xi7NlHIJsI1hGgodVqdVqfVqZRqH8QXvL25eq0/USh8AL/kzWReJhkAOV43hMKDW0rqmVu4Jh/BpY+tdNDBh2ndoabnnGtuueeR52YQI1AhILhQ1iDoWHLJDXc88NQgxl5ujS2sMjNZyUImMhYvfTFSdC/v3R+oNj4llSXJvgv4e+6zoCcQAEQFEQAAACwALAAsAFoAhADMAPIBAAEcAUYBlAHOAggCsgNMA6QD4AQSBMIFXAWoBgQGdgcIByoHageOB8gIJgkeCn4LOgvIDH4Myg2YDeoOLA5oDtIO9A8QDy4PeA+aD+AQNhCgEN4RFBFSEZwR9hJgEoISpBLuEwwTKBNEE3ITihPOFAYUWBSYFMgU3BT4FT4VTBViFaAVzhY6FmYWlhaoFsIW2hbuFwQXEhcgFzYXlBfEGAIYNhh4GLIY2hj8GSoZhBnAGfAaBhoUGioaQBpOGn4awBr4GyobgBuWG6wb3hwCHCwccByqHOgdFh02HWodmh3MHgQeHh5GHowfpB/OH9wf6B/2IAQgWCCOIOYhdiGuIfAiciKOIrQi6CL2IyojRCN2I5QjviQIJJAkxCToAAB42oV8CWBU1dX/PW+dyT57Mkkms2RmAkkmyazZCEPYE3ZCWALKJkhYI7IorT4XFERwQdEiAtaK1l0roMUln3WtSktBPltrP7CLyx9b21o/hczlf+59MyGA+jF579333n3vbuf+zu+cex5EICMIERbK04hIVBJ6BkhN87OqRL4IP6PIf2x+VhQwSZ4R2WWZXX5WVaCv+Vlg1yMmj8nvMXlGCG5aDvfSy+Vppx8bIb1HCFEEIhCFyBp/bzbJJxbiIAQ8No9s88TkmMcGuPkxbcKjQCTSRwQtpYkESErDFDmLj8pa+t9Zwg8UNyIA5lHxh++1YFluyVwgSO5yocBMwvFowKtYxRr4Kcw7fJjuoZfQPYcPw1vHduw4tkMl567MYzn6Du9gNwgWr4GmaoqGr3WQYjIY6yqz5lk8JNwiREOCN0+wukC0yTESdoHNmif4vCGIxmVNIN9iY/FAHzqwb/3o0ev36YezZ4nw8ye3d0amrRs2fXtnJzamTxM1DcgZrT8TO4jfzk3upb2d26cPWzct0rn9ye2sPgIxDOw/7DuTB7BKbGM/Cd/Vp/UREXsFMAWajHuBAJ5Tvmcb9g+wawprm0CIUcC+1s7gWQp/eI8/h32ZixmtimqSTSGIReNuu6zd1nOW9Nx2ElpOytqG1ytSn2rCvRWvb9hz8iQfA3xKYWPAxhXrY80Dnykcj8G5pAdwTDef2tK9Q8gkKNaajfOWU5uB7OgekCQCqyevSxGJsnG120xYo1g8ZmKDiicOG9bNFHVg/+MddwDTLZCwsVv2MMsWFA9B1qHuzmTP7p5kZ3dvZ/ch+vWhus4GfkElhzZSbd7uwD2NHaBN7OmZSLWOxnsCu+eBtvEEHqi28dChjaAl10wvwjyU5wHMw3qO9KqsbgXEh+0N87pVggk8CQ9rtH7BhyPk87J6xSOK1r1jR7dGk3S/Blv2nKT8HE+TPKFgk9klmoRe7eQeQTt3uqMbMEVEyIybjKW6mASw8sDFxikYj0WDmCzAZIsQiwaCLDcfe03Kjzc1xWe1t0PBjAULZnTVtPonjpbx9hnchIL4rbtujc1q7+7G+zM/p32fz+yq6blx1OWHRmMR2M6oASWPrOMzyyWYbVZBkVQlgELBimlRsOAWIRAMQZ6gBoKKGhLzIQ9wcjgUm9UlOxQ1TwhBMCQFB+N1u8MlOVxKwmq32qxKMFAewNqaWwRxDdgh68RLN7YteYHSe30+CLpiMxeMH1tbskQxGvMtUl64eUHiqptvvioxf2goK6sg32CUlpTUjpkwf2YsmmsPjR46yikYS73xUimnyGhyisZSpzcXFIc7MWp+M/h899DUC0vabnzphIGwPf16y8P0rTOvhFV3ofSrKcPnOhVLeXjC/E1T916RXzHm0joQZXOd3wvg9deZFEGomNSQKMlevWfK5vkTwn6zEurKypMLYtVSrq+4UFCznWZQCl31Hil3kGtwXpapfGJdVqFbibx8Bhoe3sIbh53IgIoQ3qcGYiKliC1hkiSTCPGHE4KoENXuj5sT5bILzIgrZkecJALBHGDd6xIccckhAMtUnhAsXsVnt7RIiUAVuCWCsEcQ9wgDPonsP+R56k90U/cH4phd7xbSU/RYXmPX6fuvXPZjePyTgiT9G+2Rl4w+8L/N9tKg8iiMu9p5pvFV+s+aV+GrW7Y+4dbci36t7B2/Zcmga+hBehXsgg1g+dnP6Bd0I12I2xc/+xlYtElQBTe20SNv9u5dBh29oVDxvfTXwubkw/Q369+D+PharTMMHzRc2u0qjXTkeJRiKIV/T6OHjtvHhMAJ8YJ9dJ/Q6G5pLb/mTu2Cl2OBvFDWXYB4XIV4/BFpwBNFtSPgSpLP7bdHwjjlUbwwgYchKF8MrxJ2yYES2iJEwnZHPJEHalzV2pcL1bO0p39L6TZ6mJ6tqpr24B1D173k87vraq99ZMKM9hnhW+CWj7MaF2xqn7Al8uNl1o6GFUrtqgnFtiXH3jt0/+phD8mBUXXitpVqbtE7N8qVYvinlyzofPSd7EGVbZsWNA5JFCWTS7y5en0J6g9VI8F+dPAhSls8Q1BHRByJgA8VSCnCIirN8wCC/g3ycujfKlv3yeOXXHLnjCpKU1XshoqIcIYgdL4JUm9OcwL+lRW/dM2IU7Qv1bCjW8Y7HNuxXPkTLNfN8EFkioGVEW2RsCfKQPTyckVpN4zNp2/Q3j/9yVE95pJr2hLdTqc6Z2FF1GmUvqFH+g6KY6EGhOjc6WPipYoo0r+Z/NVeUTASRJ9M2yyIzB6ykKzg2GA3s0HxeXFGF5jjgJILCoRRdrPBbgFLPNEixqIMCAwIHZGwI1Du80qKGo6E40MhbldURQWLiDgSd9jPXfPjUKti3ByLim2wDMZ9uW3Y6n2vfXr1Afrcl9u2fUn/ePo9eu0oMXDL9ZLwzb9W/Rl8kwSpIM+iOgqt4JDNcp6kChMawbiCfnbfLfTs4THFRf5lPq/NkmetqgX/09d0WPOt1o0TA0t9PrxoqxR88pCvD/5B1fDtzx24+tPX9q0etu1LGMdLT+WdohsWSqX399WEZEV4ODXMI+3t2w05Sk5d3ahIYWhmzCv4De7skvxCW3ZDJyxc1fXgClkQocwrykLfPYIJZqiC1w1ZmYtqReXNO1MN3bD6w8NM1lHXk2t5/+YjykfIUhxJnOhe1cRknGEqWLAbAy3gcIkOuwKsh1CIgngB0VUBNuRIrJhocbFDnA4JQW9IxX5PcNCOJDxehZ1GPCibQrN5rOXgPde86/S4nWWeH79ty6u/enJzz/Qh2TYNclRIPTftpqLGD7Qp4yyjfPFSj1XsRQJ2ls9KprZk2RLtaoNgTqDAnW821LT/YubUvTenHrj2r5N0yRQaYSr89VqxpcHTXA5TpN/uXvLUPFFIdt8+aW9vKubxCPZFk6ZdLkBhbm1hRWkwKBcASRfRh8+X2Mcuumx2fWlWaUGJtdBmjI5uuvX5Vc/Xbps/dRibG1w3IrAqLyE/MpM6nR0FmeplooaqCCkIXoqyaQcqEgSPOeixtSh4T7AJc+gBaHtImHzZ4qmJjiqo6pQL6MHJnZWjB+dm04OSBGOzbW5PTaS1fMrmxQ1AxP+5ef7YtnnV4+tqx4fO7BTMS9b5I+7ieOq/xevnbDWV+IqLLdmJpU+s5GOppcfSgnOyeQAapKc940oWpAwh8CGpsdrxAq+moMY89gKbirVOcByzmXSEYCCAlMBBv71hxGSY1Dp8yuRhUtPDm8KT670F9BsAMBiyvA3ekcMykKEPwmkiFvV9Im6c2Ng8fkJT48S+DfDmUweKKoOFqzx09f4DcKjS5hxUemkHnYGd+RgqqsmooyaxGrskfWoHggLO0mAgYQkJvGcZDmN/svlqZlKG9casSMjUPPYXZNlaZKlu7e+f3DY3Wj31qh0HFi54yju2wDvnbrX0p1KefeuiqTMCzXmOqxeueWH+yBve+vGcx25eMTY41ayqolVQffZpaxPl45bd84s/G0hi/qa9++ds+PiVXcub5yTpR/UbtscfuVp42uhZEr310NIpke3/1bDg9ueh7sDlz1zXFpq86qZ7J9093+YszJmYVWgy+u56cdX43fdtXT89rOuUjB5ekOE2BUKegM0MxhMWFzDNwhol6o2yO+wIYZCIB4JpzYKiw5gt0v4Ep1xMtjBfGWAnOQLkQl6T5hx3bWsvGVOydfJVv7l9ctMVu95bvfbI7msmDupebC6RBZMgy3kjRmu9PZc92F0/acclsQ5/Tnada/Tw+KxYgcHYY3HI++mpXQNZDP2cfs3eP3j9AnDG2pceAvHurifuWplMXPKj2+9uu+XoYEOexZDMstpME6+a9+zNk5uX3DZt+zd3x7piNbvWDW6dPuLq9srJFgv1T52/eSI4YO3hfrIikL3CXHWuvBcnVz7n4AXIswvK00fZCjO++oo+8lXqynRC3sv2X6XP8KjrbsK5shdPJBFtBR9qkiAKC9LWBP4sZocZoQ1TeMmsbABrQQ4aZnem7l+2wjt5tvWqjo3XPT3zSF3U2jy2vmeVoWBTcuSNKjHQh2iKDqGDoAxuuwbKOpZdufpeg5X+lj4/kf7z6adn31sKT7A2ZGy5fMSGi+afUVAImjB7+vgeuNWpIAOn/FzAfR9n0gTgA6IpFTiXvbqFg+iKgMtA2YSKCsWGkeCYyRfjjUpIw+HndLqpoLp53KabV8+Zs2zDpZcMb42+0d3eHqo2qRptop/Q6K6qKmf5DPq3uN1eVtbQeN0GYU3Kl0zOmrklowsy+OEg1WTIxfUnbqXA7o4XYI34bHRz/oN1syO4x00ol5WoPkrBam+CcHwghIhl9NWTzJxDM+Hv5s2n6OenNpvp39tjMom1t8e09O58FKHkpP5U30mRjGpEYw3tuKaRKfaItD/zTDufWmcBVFDOkm3kTrKD/ITcTx4gD5FHmGWJTbDVKuzPqtSh/aLUKaqV7RQbAxTsTiUfQPEGobYGAsHaQCygd28gGA3yGRiI4cUodkGsNh6L10VZn8fCCX7Uf0OhNgHxsANq7XW19ojd0f+zsa2W/Vkd1jo7mOSEERx+2ZYAk1/1J4KqEYKyP6aqOOr8n4B/QnqPh1SrqcKUagURUJxFdlWA8/4J0J8Z1bzwMmYXXgYB+t+RfhHgq8D1SWpd6swn4Eq98RDcTT/+RBj92WefQaUgf0I/Fhofkv4lS7RaUAWQ2DOsUIEVmX4Dvh9odXYOHGWvT9dU5PfxAPgQPijBUUkWQAYBT9nGHuMvYPuj2dm0Ot1CUX8jK4NlwydgIn3vlZ0wgz6y85W9f1yRehmir9w3YdeuXZiasfOVB/644nxZtaCee5l8wmQVWWEB2otubua1IClH01FA/eCwSwmcMlw/IKYisA4FhqmYA21CC2eDCiP1iKy10TrGd8rZJf5onIFwCBT9gnAOmJHmBLji4dmYWYBvYzfZOVNKIhquQY7XyJ3wlD2RPhUgXJ7QqRJ7JWK4hGUGA+ZEHK8nFElBuDfbJYkcYCyUkUN6FyOhnI8e3U2PL1++0Gra96P14N4wtn3lu3dNL0+GsEeNIgz72WuLHwTXPLf/cvrh7eLgwZ1brlzbMWvuU9e0Z3d3LKJfLb9ySEuWYefyFf/T1OJoD23cFOu02CIFVbHSqlmBQNRgMBcVVIaLndFqc7FDVirLKmpCY3LRJjTa7CMDgVFWm2w2Fnsr7JVdHq9fFDo3tkam1eTYzJMWra0vHxYxFRvNjg2PdEy/fRrdcAo2LWqavuPt1eNvmOeMj1m9ih58+GH62ei23OkzoPpZk/k++tnba6/7EEI6B9abyShwmg3fY1izcin9/d13nR07Jq/BNmP7u6tGbVoTxrZmCdC+rOnWDZHqa+5OZQ2/qX71YF+Jt/2ap+YKS19pGW9talmy9Efrf+XyTJnT9XF7pNoaHDJ33rTiyjI1O8/hGD1ocIfH4bEIQo7TXNzm97eYkN7WVwpQNrbU5RGg0ufrCFo9TotkLCpzz6wdtjRkyhl5ycpYtKPaYM+rGVKe2NA88apYfs7yB/tu/ubdm25cc+S+pVb38q2T76FPrt+wqtT5P3t2wfKf3Pc7lyTk3PIB/dPuffR3H17fL78G1FQkm3SRK8mtun+SkekYkmlQfZwGodgwz18ZuGR2hjIsMslG6ybBU0osLdcopR6IhlCKOOnkHAJ5khhPcwrGQ60utMviiDIZtqtR+z13FroSbmehu7nK77AUOiyWaZ7yeKk7N7z4jnfWLHx47ZSgoaA0mPBGNtzaNsSSV5yFU1xQwNBomnXP3Nj4sfeDAew5ZeXDWiIWn2XY2urC8mGV3j8f+tmBl5oc4REL6l0tcUu0oCw8tLO2aoakZZi8QKZZSpJDLomEZ7a0Bkrt9praSkt+a4k7UT1kZHD4dT2dYf/QznkxeygSCddY3ZV2VSqyhKqcan52npovIXlJLrlhVMfDyetOz3NFwoMToXJRNucb8wfXTq65du9WcVFTT/TK1bMbLD5HcsWgWZdOG1Hhx7I3Im7E1evIIuxxF07qPDmExqcpz4AzmadcQjyB6tYlYj/HQ4ov6A3kYTZwiWWghiSc/C0i2kLybrVo7MgZI5qceWWVy1auW3X59KTZjGrEYLK6/dHS6IqOkWaLZ8Tw+gKoV6zJoTPGTxlalyWUt0zpmj11mMUiFUSi7aOmjh5TUlwkmpxFRuNJ1dE4qDR7zPCRjzz89E/v3TDbqQ4ScwaHp825YdvB+TM3T01Y5NxcVaH/T1DtDrfL5yrNNgtFrpxcKPRW5pVXi8+m/ibI2ZJsqR6+dOS467vaqrz5BoRYJb+wItJeXT138rjGqpzst43uJSseeuCN2ROuaHILeSVFWYTzr1uxb65EmRxErsPesavc0RxkIiahmmdMVERbmhk5KI7AvICBgT/Mw2xte5qo9N9HosV0rXWATrSmOUz/fVuG3sTVYREYf8P+hVctnzjuig+fR/ptGl7Xtf7uSVvXtY2a//JD21dPraKLmry+IU0dU5Z0utzlbktBNNE1v3Kwp8RRVBP1eYuc9fVTp63atmRZfUMi1jVj4+yWeq+npfXyCdWhQqfDVlJWFff64tHp6w78ZMUqsXXxFQv33zC+MW/Isl0v/GF1x7QrNk66e31XXXtO1dTV2x96ef4c+uuOy2cMaa4IFjsdFqPRnI/vCHnL3e6WkM1eXl4dCtcitXIGB41tm7toRGswUGI1mzyu8NDBVXabxxOrLSxCm659/LiaoaEQtweQ5RGF8dQoYyg4P3XrBvdKJbIuzrlCQiWYuFbiHc88/0hU0IpWNHuwyM629liSsSCaHHbl6FmDtd66FfOSoCKieWaOKjAYYG+sXSLFdeUGT1DfY+7u9oraCkG75IFvNsumak9Jx84p0/b6A+26ifIebFUj6mruLQySWjKUjEG7bDPWMo7V0octikQHxwqwlmmr117OzDOFnfnj3DxR7ajjWJJ7Xqx2CayOOHNFKcSrMJd51GLVfWuAGpvzyIydh/ksCGgOuQXtItYVaPUE/aLdwc5dIL2VP9iV3/nCoc581+D8+tvuoP9oDYWGDQuFWmHE7NbW2a2Cp7JhUHXZ1NSWx8D36KP0o8cepx89+ij4Uh9X1EwrrRrUKFfjQAyt3lcfyrvydfolPU6/fH1NQWll0dqpdVNLDv51tmw226ChcEpd25IlbTUT60R6evyfniqZFo7PjouGfFdlfmdnfqUrvx6UUCsW39qq70OhIWW1gxqCQ1KLu/cvXXagu/vA8QPdwn01JeOGlDcIHaGWUHUy9XSiqzhcd9kLGydO3Pj8ZWjPRob5pq6tDswzwtv27Bx5zKC6JXctqR4faqbX5MytCMVns/nJUFNFqSE+ksDxYA4uZsaLfDlIGIIKRF+K4N3msKmyJ2MzBmOOhH5Tmmz32701ALPvnzNSmx0HtWZEjfzmli1vSfcjLVJn754zZ/dsWHI/XpaOzLb7bSEvLZv1k5mxrh+POHLYU1PjgU82vfTKpqXV1x7p2jVr5s6u39WGjrHrRK8jW5tBuc4n5Rn7gS+Q6f4HtkSGfJetkzkg4UIjIeFQkOln1sbQUPhDoL3bT/9A/+Dvbg/AEtnUMKLBJKt8yeKIvnx2hK1RpPaxDPRD8PMHdkilPl+pRHSf4cvIDVv7168chBhFkzEnYTNCzCHcBj2pL+h2WC5YKKYFCyxP/VPIp9tTX0APvR2u2J36MvXlbrWVvksPQnnqBfDR5+m7EIUx9CP6sLiX/hHGQvTMt/S9xavpq9CyejFvu0DIWWUktt1FRvK2q6KAqpiZRCrkgW6xMWue8Uec32ztKGFGxsiMJZ1VMkuLe2094RaQ35jRaI3OlGXFWlTjOm2QVboub7A721qWX9ZcIZz0yk5LaoWtVP6301pa9pG1WBRcouSy0H8W+3zFMDTbXqCS+fMppS1Wq63CZhYMtKEgV5TVygrZ5qiqKqErf2Evc5v7DIqMclKY58wz7Mq1+rzFwWJPjoXjFFt7YmttA63ZAQtN5HsXltIrSRzrBJRavl7H1pHQmHUg1xEjQi/z7TGLF7OnNE2T0BxGZoQcISNLWLLC2FIO97IZIbPIKuFUSBFKxHe6GaApmEwRtobXzs5JZv2Ky2EZ8ad9xhnrgLmM9ZVVxCY8kywmNB5NYh24QH5x1aoX6Rn6MT3z0sqVL8Fda96/r6vrvvfX7KJf79wJWX+EwV30GZWsfEnPxLKj3YIPvnRmZdfO458f39m1k35N38LsEqGz6H93wST4gy4fWCfC13lNeO5lOGq3iqxXPawzpW6+UqwxL8DJPZLG14fp5yf3MM605yTrk3PtyibFpEr3PSJnjNhwszBnni5W3B5PjxcbKh8rLCKj0jmNmyZgZ7fH+rgFLeI+1etE5h9I4t6paGfYFNK0M5iNZUixvbA/4KSE3YdezHl+XVxkMGnEutSi5a+KjEclLHqJniaoDUfQICqBuh+qqoRlKaFIibrsSV4GYdahw81drd9ZY+lXIBhUrFFxTqgInsEqCW4H2qeHvqvyhOT013VgTEAxykYlaUIdN5zhacQmprdM2pNOR3Az/VBPZ549FyrAasyP39MASvQ87B7faPqY2Qvku5oCMT0ggc+PaTBNvVq9GtvjRoQDB6DB0CJAAtSAN5+vf6qQsIeHIuzCn4SyWamT5U2NQW+OtV745jmhbL+/O7C/0GwufC51Yn8A036hnufy15TmGUORKdKL+1MnnvP79xe1thbuF8owecDf3T83Oc4XkBLsOxVQS7MoiHK3ZEZ2R9BqQQRDDYXYh4aG6d4X0vMH6iFr58q+lesPf3V4PdsBNvgfKzN3cOrseuFeeCd9c/16kvG3p8viLb2gOJIuKg+sdkvMY5NN8I+LykyN6n+nQdDEldR0Ubn023O1MvA+FgfEe5SQCu6L6zfTfrAeotZvZwn/R3UUcm6FI/V/1IvrNwKVBqK8T3KxTqWIbtUstoJBW9AIcayKaATe8UZgnuU4mhpx7kQVOO9C/JThDJUX0q+Q93x1GVXg9GWQA4Mhxw9r6Nbxr3/w2jh6K1wx/vVly16fmCLMbXeSvjqPY6uMT1J50erVi+E0nF68enVfJVwJqydMnTKB3kq34hFe3aM/cFKIcXQ+r84sxsXHZx0Bb5CtJyms7kgrE8xiTUDQ4oBggjUEbYkM3vs5c8QGJXS+KZEiDzynnBQA5vKW3P3zXdsv6Vj2ejus+X3oujPkOo028mbd/b9vp7bwasB73bc9sow3raVn6Mk9yxBy4DlP0Z6Twgm6l7Vp4nbvlAlw5QfwMX8DvMEauDf1Lm/4191LeBNf7Zm7nIMxCAy09DgU7H/mxsP6GQGVUS8kNdpLezVI8h0k5QvONZYnvXbL1wXOf4eB9PWKSa2vt69XE5N8JybVC841lofJqJbWKxbEsxiLHrJVGmJ+fcVNZT3IsAqRSo70O3Mj534y0QFH07GnPQYINEwhOM+mAV/TwUfPofDMCEX7EXTxrzfFTRABj5mN8wYoRd6wgxjZfLXgH8jFoBJafpD6qf8gLRfGPfecdC09kPoMxtHnBAe0geBIfcawRecLGnZtFp/tCLxB5gRHra9pfUQTccIoDDApc7ineqGXJs/xY8YXjNyfYgT8M3kYi0jhT8TfaUzz8KRetmNVJRLvv16lF58zkDzGdIwCm90OHIoaQfWjPGIf9fZpNClqqSfmClNTe7W5ybkajMf0XAVL79OgF1vO7vXN5fdy2a00f8K3syE2ZkKoVOQ5jPYgDCVT/ElWFegdiDc5OLc5g+ZxMJ6oUO4zhVGNOQFPsiBQBT4zM45QzQLR11DazpLDdPdvj8A2mAwlb6w4S2Y/9AX9hO5/ctXeVfgnZ0JRfgvzD4tkxRv0L/QpesWRJ6Edir54aHafxvNx3U5krMdZ9RXsDSeP/3GhPuE2KU7RFmQW/VOzGDwW9d3KvOiVU7891bq42eHwCd9UrrpiVSX9Xz7vfh+lf4sIs0ZpcxK+5LTueun9UWPHjjp9hM8qiLE1ECwvs25iQ2yI6LyGoQLaLglub3IkQ1BD9PUwaLA7WOODakgQOI1SvCwajv66nf7q1ekPbW0EtAoCsS3jWfATbmi+tsOQV6//dCa7Dr6pC77ijZVQlB4/FupoArQm/PEhJ4UytjDz+LGFM9kFKA+X0lree3osG48Rq8xEiOWBl3F6nFZ2Nw8V83n7A8L4XOM0mQeGcQTXWKpn4qRVOG80dmRhYSntaobtVzNsYDFggjaxZ9WkNNl6jTazM4FsZPMC7lCYbOSRQj32EMFTZVgfi5rRhChgxRfYxXKuOWZOokvokkkzd8K+G1988UZ8s0qYNllzFG/APZOOrtkFWSnni2B4kQWqMTyby/BMPsGmEJIJHyQcMucl9IR2Qj4xN0Vgr9aLY4UyaiD9XIoU4WCx8WJHA/mG6BtwRyPTbSmuCgdwBgsZhO8I4qzOY35uhwkHkTWBeUAcHlMZChiP3jCh6MOf/yxon9aM8P/+4ZtPPTZ/vbyp/rJRf05plvfHTFr45Ap2TSnF809DqzaOfIb+o4qetm9+A8Rbd4GdTrj8jUdG4/OW90f98vI1h7eVgoI3aYrZJCK2VdJ4a9i01FhMY7qeDH9YJ7D2cUn0p3OcQfOkD5/rIzyQkCHNVCFpYH2mcjuzjM1yzg/SB3BI6fVLc3q+CPX0P7BdoxZYIz2UTqzqG46CwYbhn7t7enb3yA/QMsq8pHtSJ/Vjyzx2F8WHHuphWc7jJirnswxfeJjewJkp87g8NJXwCO3n5iMicfqqyIPzBk5Gwl7FdUr63RmmnNCZMknjjvmCoz8dWaszZV39yFzxeLgSQrMRybPPxPII+7jyGPgH6cBRFqOaUUM0qZsDfJ/EyrH7OAj8CdAfpPphn06MJU6bmUbS33qGW5QswJcROkbEicps0RJuz+rqMBpvgrQfi/uYuH9ywOKlqh7a2Lq2KvTiFXtOFkqE22U7yjwbD0WqL9twck9LK5+bmgqqnI41tlsZ/w6yiREMRIeylUERablyoL39s7Yj7bSBnoA3oa3ts/ZjbTP2niV75V3tR/EWjKEN4Ga3juFZW2rHXiAMkIHpLpnRKPVc/4t6RWS9Qtyn+Dv57/KTXNcIWHjMAxKBL6hlOkxn4b/05/IT1EItnTBdg+ncD4kT7HeKpj+Dcx7JLZJaiUynP2cRvjB9OrXIT3TSn+OznfAFt+WTCqsHY3RMQQJCRKo3haymV2a6WEBqk+T5GJYkWT6sixGzcS+BkMSfxhQ2JlO9/bERIlaPRbqiBIs8VLmPyyHgDMWq6fdQttkkzdxL8wRZ4+HexCiyymuMlDEJOEMEPaib8/gCdiJrysX2n48EUbJrUOckuCVIMvYe2xIRm2/geWSAPfh950I/mUplUn3ahYn+4PJMdPn3pHjXCNwPwn0ZrM4XrcpnkIXhmKw7ZPhe940wRwnznvXxaxILztHSs13EW2kc4e9n+BW44P0RpnBtvtiAcsQYM4ThXFEae5GWKZCzMuYFzJSJFh4zjM8VvJ+ZuGd1H0LGD85wpljHYqbP5fQRPFZBYQQwBIKIz/AG8UMfDvJNn91xltzx2U0KBw7uCdePqXfupf/5RSn9N+SW/gKyGU0k+rxX0lYcw+c0ADC0GggCLuhHAQmrx8KaAeWGtxYbpwdTK8qhjVUdo0t1UBCwajp2AXPbMD2CB7d74yFHpSuNEeewp7wfe/R6fF/p6ShNkqmDPqznl8zhSIfO7yhT4N9CMF5l5B48E1va8qhcXyMQI0bgpGWR+8z+ZO6I1B9mCQE6S2AjRHHecY8cKvB9/MZ5Pqx8piZKeXAK7nwx/l0AMKjFPGcZy2bDcpWaYrORvZvF1+nzNj3mJj7iTEM0IatNSzOrWyCa4BaLwk2LZEZ0+4gYDof7DjN/FBMlTZfnM1ha4s4EszQFRMs96lx1LqniKyuqX1EtapARxaAlEJSDzH5MBBNyPCEmHIjKCYdod/gdqh3Hmgu3PazObaS/qWm2b3l7qLPl7S22plr6m8ZPDYZPG6Gutsm25e1h1mFv32pvqoU6dplu4vArnLrV3lxzLqf+gtzsJL6huUbP+qn+4lvfwheXcewmF/gYrGjPn/dVCXAnvwpxv5Ux4AQoF35fIoU3n9qyaYNwaEwf4anUyDEXfWySOrzl1OYxqZEbNrGjcGjDRfyh+JxeKc/YFQiobPaz6S7r3CGlHxgLQhgmTGgklB79qj6532E6mM3uc7Ki8yiTzhLZ1Yyql4kO1Yxb93MunpN9laN/mdP/vUcG5/VwKBFvnmbFkwzeD1h/yORFMmRh4ql/Y6OXmOIKov/bFDLg2xQsLf1tigg8eN7wvZhLBmCu7gRPY10adLFzDAiAp/UZi/tvMqDLqypyPGLvV9C6YpjLMdV4XjGe9G9AcUIaXIX+IoFXG6d+pmj+lQ/2v6hliseHsN2s9f3VuFDuLBfKnZRZpIux+N4IMrcL5U5YrKP9Xtqr7b1I4MK8mL52Bi00rcfOK8/x3V9PMc560RdUqYG89YKCzhw+z448r4zId5ehr1zjrHLw5WoGtOxXCpEYj+j6nvLhFX9Hx13P/Wz2TQsripyFRdERxc53TeaRU76vTkJD4+RVyWGXPDe6oKDEV1LsHVxdNazBW2q1VUfT3xnoNq8u1eynotwwRwXH3BPUjcPmhhMX5GUZjSxvCkdeIsxhz/Iy5kPdzJ+R8YMwpmMmdnwigoZBxIJb0Oe3oGUXKWZJhVGNFHt5J3TQ/3e8Ukt93sl9kVrnUDyTeV24H5NnTKf5mo6Kc+db5Sq2ksEs0BbBXgaJFnChtsbKrx/bFLzxhZfHPvDA2Jef31jRPBZF9rKRv3rzvpbBI++9d+TglvveenUk9zMsghPqTsWNM1j/0oz5v0RQLaKDObSDwtLj9AjUHD8iHTl+5MhxqDnT/Q2Qb+SGbcihG7ZBA7y5jb5J39wGb9KyFom0MJuM26dpP1ARW/0xCjFUtGjFXRQQHTsXwK47iRREFZGHgqvnvO4xpt91F63MYYR583CHVPZcDu7T73f6XlyP0h+uh+2Hy0/9XyVr5DvKLPuBMi2o/oPqD5XaB6/Nojv2d/1QySg+r3WxTAxF0zIqox7Dck1GgQUtmIKowpg/zSRwrycDYJGgHtrR9uLCsxyP5STzjtJeLsLsYz16bEfbOKrp5+l4CR3X83iM+MC3yhe8i3zH8+d8DyLrk4wu8vLgKNFnCvMAC44eEhfyUSvb21eOGr2sJdLg8zVEWpaN5leA95SMM49ZpGwT+1MDMI7zo2zmpYE0iPMSWby2J8iX6oF7RhhwSxqbWA31q1JklT9SxMy8FFePUvqThPatiZ6e8lmXhrWB3In7Gi4cUhbg6MbOkT0x/tmiwg3hPr7ffArspzazVVLkHdJ5Y6jpkbWapn/fwHSxPB3bUECcPP7Yw1FSUW08BMXnYa44BqGVUKQnfaiTFn+1cuW8Scvn/eVXdDKQ6xfOrKu7fM32y+a+q2ijRv5k8Y15atFNK+9/Rnh+yOjW0lLaQo+Nn3QbSfvRiZxZH/aJEdWTiFh8CY88Q/tSq6DJCnZA85IbVFxzpn3eGucW2QyDWD9nAkvAFGSBpZxdwP60PkbB7T3LsVLS6UrfO0KyNzUX3ExAjP1x44w3GEkOj9+24Qii7reYPBb24QSTtkEAumdY9RsBTXpNN25A+5aPme5uAd3FrH2rcSKM53KaGFMsPeN4YSMMGmdRGjczmLNNO19Pmsl/na/DHEFFHcrDR4OJGiEfaoShqmMolEGgBvKl4FBwJIJDhUBQdeBfvsgy4SnqugTCM8+YyBfK8BomyiAfEmoZqIl8Q7ASTxwJfKHkUGtkhYWfOmrkoQIS56ECPi2pmFXENzryUeouVJF5opglm1wCeQ2SbUq+r6iwPloRBJBlR64l1x8oHu4szHXIeaUOZ6RQzK0xFNoq8setlqweyWZoHt+sFOSE7O6RrqXz338qUOv21biUkuza9vJEbrDYa/F4jKXZ1vb4YDkvO1TgLMvzObPcTkNhKFinlDbmDwpWocFoAIOcJYPT9aMPNklZ2cPdWWqewZBvzW0OCvmWEXVeo8FjqKktExwl4Ypyk+CRBl+kuP8jKRZk2H0Tfv90VqTIYLGJpXF3QjX78qxOH2Sp/qzmuKwKdl+2scIp2p1Ge/b6dsEkZwnGLF9ps8dmNRlM4L8ZcgwGRTWLDrnINjjfXOINOEzmrITVYs8xFagWi5xvslgLnc3O2opKt6vSaTRPrC1oNWWZchzloQVT76Bnny3PuWVoa31JQaxFzjaquebiItXutch1xoJsydI4bERZl+wwORWuQ/eKbnWulPFBXsTj+/m875c33PDLG0Rx4EE6cQM/DvhLf1PI/C69DNVR5g3kG03sFfv9NXhiYHOFxEwg9iLq9yXZM1KSr2XhdeQa/KqB9CW5HyeZXucSOH9hl/V3DvQBVJBaUq9/C65HLiEn8+jfhKe//jEhY4sPgfSl8vSEl9LEDpGmkX/pfZY0jmK2cGPg6pu6d/B0n74WKbSnA0ZGrfE+yPRGtyb5vGtHMuQLdbY6qH30ju4HvWtG4QU7z7s/Q5iVftvi/P9XIK1LMos7mW/kgejapI8wA15EBU75FZGBBLOccKMkkwLOw/Q0x7cExwCN5OrrIUYRbWIItkh8xdTnDUIsGFDyQWGxXA7d3VgG51w0BD7DAv/t94MfeJSf+Os4tiNODySdXf5x/m5/vqDl+zGV70xqT8cCgZhf1agDaWeuvzsA5aJsGz1l42kaG9feHYc2LenMx8z6U92Y6nImU//Bh/wxQgZ+pzmCjCMdZDZZyNeM0jGBLZBgQYEeU/8VFmPLhnfABf6J4LnRZl4fPGZAvT/y54Kj2j/U7bH0sI9qPIsaL51kqznpJAuiSeli0Jc2084/zNHHnQvCg0iqPkqfj1zrBV977MG0nODpg3tOQkZsUJLoRyf3pNXK6fYBxnB7RnYE7JOTalLp5etpRF+XjxgFEdmugy2PZuas/Kivp1XMFuiqszqTpMf+OppHBuBPX4iSV8dahL4TApceNAenr97GXGLsXPhpegVPgBU4p+7EOeXhay0OHh2QcIHD5ItFYgM62Rax+UwtkOlmmd61mD5IF9IHF9816vXVmpbuO01b/Tr9sd5Nh2c+9ut3Hp3ZtsgC/9EePNcLD2o023KZmEo3WkjLBCETUB50j1cl+57aXAqsrUMgGmRLfOVBpf+COREI+nRvWDQRMPFa4k2X4G4RWFwcOytQ7TY//wSVO8vyBJUvEryX6501PxANXD+Lfr3zJ/Q/M2/AkwUzPXnvsbu9pffj6WWPfwHSF49fhsldJSltZ2rIrH9t6nrijqaKLb/kiwrD2hbTs1v5+5LHH1t3y+Z1jx/Tz7YCLB7bilkmzT0Mgn7tenwVvvJ6/YyePdzVqf1887zlka7krFsmZHxd2oC1bMGTRgtZ0116bN4zniJxxsDGkDIEgH4OwLiNPWLyVgHJQivB6lDtxCG/df99R+gV9Cn6lzdWCKT7pUUQPiRGIpSseANKYDJsO/LF8Zeeof+YwuvwBspCI/9/Nkp53BnnipxEWxMRRWDu1YAQjLjAHZcm7enpmRidGXmh1/rVM2fJM19Zex3vQ/ExUeuZKJCJPZGZUUomFRykXw6iX0LBICg4uPngwXRMs4gtHbimJpP0mtq5b9QdGQ8Od3yaBqbVdJ8M2HMCldkz6vRd1yH9XMZO4P2dnfluTv+xcAGGt8yXzoi1nmL9zb/ZI7xuRraKBqJHFv345xFRifHIBY9E1tKtULUW7ejoOqiiW9ceFZ5Ivf9+6njq+Pup94Un5E/oT35H93z4Icz7nYhmCP1R6ka4ha4VfgQ3Zv5PgUwZmXgITzGgCT/gJUePork/4MH0YtzA+uUPfFrklbzwHUczVbz4ZbSC1Q8Wp2P3uK1mR4ZfyfxPRpQutprNcdrDo82Z3KmBIMIyuwvhhN3BfNYKH9Oz3OzqZoPBE7PGDJp+wx591beP6GeUcWMOZFwtA0n/hyxN18zv0q9TnoYLvz8MoCE/47uiNvkn5QEP/2KAfy4QcTvsCd0cKfcNuByWHHZLmC0k6zf457L9dzLf9w/85EhcYfeYzB/T3//0ydqyImHwjo1gfNN2RemgQRvp/qeferZ+UKnRt/Wen0Kgp0RzBApr7qRXH/77oeLyunJDYM+bv4S564ou/IiJl3JmsbuwsCj75gpj1OExlK3L+2JQaa1j0rS6/CbXoGz/+OEFaBkGChPO6Z0JQ6W3PJxVOXFM3oD+EHnEaBGTaB//Txb4grvoy7ANWwIldJdQsqvvUmUIraYPfP4XSpSFp8/ApZ/B4/LjtBqOsg2OnXmJDmckQ3orNVyceWbH0aMca9L+ovQa8kCLkqlg3ag5L/qSmzNs9vErfP//ATHKtuMAAHjajZA9TgMxEIWfyY9EhBBFDuAKhSKON0m10EUKUgRt+vx4ky3wRruOktByFlpKuAT0nICOO/DWsUBICFhrPd+8Gc+MDeAYDxDYfxe4DSzQwEvgA9TxFriCU3EeuIqG2Aau4UTcB65Tf2amqB7S2/pTJQs08RT4AEd4DVzBFd4DV9EU08A1SHEXuE79EQPkMJjAcZ9DYood9xEy+pa0QcrYkjSkZsmlzbFgXKILBU3bYobjWiFGhysJuclnrkJBT1E11M+AQW4mzszldCdHmbFyk7qlHGbWDbN8YWRXadlaOreKO52EalKqqkiUNY6nL/14hsVTzHyzgqKxJk9nmSVf+/ukWOOGjpmna9rfrhDz/6nqPtJDGxHz2szXpD6LfZs1ll/d6fTakW53ddT/x6hjHywYzvyTa99BeVtOhrHJizSzUutIaa3l3zU/ABw5cLgAAAB42l3SZ5MVVRSF4fuOBEmCiZyDiInb5+zTPYOkgWEIEpUgQUkShpyVoCA5Jy3/LlBz3/ED/WVVdVU/1XvVanW1Bp83rdbRd0Hr/ee/wbdddPEBwxjOCEbyIaMYzRjGMo6PGM8EPuYTPuUzPmcik5jMFKYyjenMYCazmM0c5jKP+SzgCxbyJYv4iq/5hm/5jsW0qUhkgkJNQzc9LOF7lrKM5axgJb2sYjV9rKGftaxjPRv4gY1sYjNb2Mo2fuQntrODneziZ3azh73s4xd+ZT8HOMghDvMbRzjKMY4zwAlOcorTnOEs5zjPBS5yictc4Xf+4CrXuM4N/uQvbnKLv7nNHe5yj/s84CGPeMwTnvKM57zgJa94zT/8O/LymYH+qt02KzOZ2QyzmLXZmN1mz2AmvaSX9JJe0kt6SS/pJb005FV6lV6lV+lVepVepVfpVXqVXtJLekkv6SW9pJc6Xvau7F3Zu7J3Ze/K3pXbQ981Zuc/Qid0Qid0Qid0Qid04n+nc0/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hPJL2kl/SyXtbLelkv62W9rJf1sl7WC73QC73QC73QC73QC73QK3pFr+gVvaJX9Ipe0St6Ra/Wq/VqvVqv1qv1ar1ar9ar9Rq9Rq/Ra/QavUav6XjFnRV3VtxZcWfFnRV3VtpD3zVmt9lj9pqrzNVmn7nG7O+kuyzusrjL4i6LuyzusrjLUjVvAQpVcTgAAAAAAAAB//8AAnjaY2BgYGQAgjO2i86D6AshzNIwGgBAmQUAAAA=) format('woff'), + url('Genericons.ttf') format('truetype'), + url('Genericons.svg#genericonsregular') format('svg'); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "Genericons"; + src: url("./Genericons.svg#Genericons") format("svg"); + } +} + + +/** + * All Genericons + */ + +.genericon { + font-size: 16px; + vertical-align: top; + text-align: center; + -moz-transition: color .1s ease-in 0; + -webkit-transition: color .1s ease-in 0; + display: inline-block; + font-family: "Genericons"; + font-style: normal; + font-weight: normal; + font-variant: normal; + line-height: 1; + text-decoration: inherit; + text-transform: none; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + speak: none; +} + + +/** + * Individual icons + */ + +.genericon-404:before { content: "\f423"; } +.genericon-activity:before { content: "\f508"; } +.genericon-anchor:before { content: "\f509"; } +.genericon-aside:before { content: "\f101"; } +.genericon-attachment:before { content: "\f416"; } +.genericon-audio:before { content: "\f109"; } +.genericon-bold:before { content: "\f471"; } +.genericon-book:before { content: "\f444"; } +.genericon-bug:before { content: "\f50a"; } +.genericon-cart:before { content: "\f447"; } +.genericon-category:before { content: "\f301"; } +.genericon-chat:before { content: "\f108"; } +.genericon-checkmark:before { content: "\f418"; } +.genericon-close:before { content: "\f405"; } +.genericon-close-alt:before { content: "\f406"; } +.genericon-cloud:before { content: "\f426"; } +.genericon-cloud-download:before { content: "\f440"; } +.genericon-cloud-upload:before { content: "\f441"; } +.genericon-code:before { content: "\f462"; } +.genericon-codepen:before { content: "\f216"; } +.genericon-cog:before { content: "\f445"; } +.genericon-collapse:before { content: "\f432"; } +.genericon-comment:before { content: "\f300"; } +.genericon-day:before { content: "\f305"; } +.genericon-digg:before { content: "\f221"; } +.genericon-document:before { content: "\f443"; } +.genericon-dot:before { content: "\f428"; } +.genericon-downarrow:before { content: "\f502"; } +.genericon-download:before { content: "\f50b"; } +.genericon-draggable:before { content: "\f436"; } +.genericon-dribbble:before { content: "\f201"; } +.genericon-dropbox:before { content: "\f225"; } +.genericon-dropdown:before { content: "\f433"; } +.genericon-dropdown-left:before { content: "\f434"; } +.genericon-edit:before { content: "\f411"; } +.genericon-ellipsis:before { content: "\f476"; } +.genericon-expand:before { content: "\f431"; } +.genericon-external:before { content: "\f442"; } +.genericon-facebook:before { content: "\f203"; } +.genericon-facebook-alt:before { content: "\f204"; } +.genericon-fastforward:before { content: "\f458"; } +.genericon-feed:before { content: "\f413"; } +.genericon-flag:before { content: "\f468"; } +.genericon-flickr:before { content: "\f211"; } +.genericon-foursquare:before { content: "\f226"; } +.genericon-fullscreen:before { content: "\f474"; } +.genericon-gallery:before { content: "\f103"; } +.genericon-github:before { content: "\f200"; } +.genericon-googleplus:before { content: "\f206"; } +.genericon-googleplus-alt:before { content: "\f218"; } +.genericon-handset:before { content: "\f50c"; } +.genericon-heart:before { content: "\f461"; } +.genericon-help:before { content: "\f457"; } +.genericon-hide:before { content: "\f404"; } +.genericon-hierarchy:before { content: "\f505"; } +.genericon-home:before { content: "\f409"; } +.genericon-image:before { content: "\f102"; } +.genericon-info:before { content: "\f455"; } +.genericon-instagram:before { content: "\f215"; } +.genericon-italic:before { content: "\f472"; } +.genericon-key:before { content: "\f427"; } +.genericon-leftarrow:before { content: "\f503"; } +.genericon-link:before { content: "\f107"; } +.genericon-linkedin:before { content: "\f207"; } +.genericon-linkedin-alt:before { content: "\f208"; } +.genericon-location:before { content: "\f417"; } +.genericon-lock:before { content: "\f470"; } +.genericon-mail:before { content: "\f410"; } +.genericon-maximize:before { content: "\f422"; } +.genericon-menu:before { content: "\f419"; } +.genericon-microphone:before { content: "\f50d"; } +.genericon-minimize:before { content: "\f421"; } +.genericon-minus:before { content: "\f50e"; } +.genericon-month:before { content: "\f307"; } +.genericon-move:before { content: "\f50f"; } +.genericon-next:before { content: "\f429"; } +.genericon-notice:before { content: "\f456"; } +.genericon-paintbrush:before { content: "\f506"; } +.genericon-path:before { content: "\f219"; } +.genericon-pause:before { content: "\f448"; } +.genericon-phone:before { content: "\f437"; } +.genericon-picture:before { content: "\f473"; } +.genericon-pinned:before { content: "\f308"; } +.genericon-pinterest:before { content: "\f209"; } +.genericon-pinterest-alt:before { content: "\f210"; } +.genericon-play:before { content: "\f452"; } +.genericon-plugin:before { content: "\f439"; } +.genericon-plus:before { content: "\f510"; } +.genericon-pocket:before { content: "\f224"; } +.genericon-polldaddy:before { content: "\f217"; } +.genericon-portfolio:before { content: "\f460"; } +.genericon-previous:before { content: "\f430"; } +.genericon-print:before { content: "\f469"; } +.genericon-quote:before { content: "\f106"; } +.genericon-rating-empty:before { content: "\f511"; } +.genericon-rating-full:before { content: "\f512"; } +.genericon-rating-half:before { content: "\f513"; } +.genericon-reddit:before { content: "\f222"; } +.genericon-refresh:before { content: "\f420"; } +.genericon-reply:before { content: "\f412"; } +.genericon-reply-alt:before { content: "\f466"; } +.genericon-reply-single:before { content: "\f467"; } +.genericon-rewind:before { content: "\f459"; } +.genericon-rightarrow:before { content: "\f501"; } +.genericon-search:before { content: "\f400"; } +.genericon-send-to-phone:before { content: "\f438"; } +.genericon-send-to-tablet:before { content: "\f454"; } +.genericon-share:before { content: "\f415"; } +.genericon-show:before { content: "\f403"; } +.genericon-shuffle:before { content: "\f514"; } +.genericon-sitemap:before { content: "\f507"; } +.genericon-skip-ahead:before { content: "\f451"; } +.genericon-skip-back:before { content: "\f450"; } +.genericon-skype:before { content: "\f220"; } +.genericon-spam:before { content: "\f424"; } +.genericon-spotify:before { content: "\f515"; } +.genericon-standard:before { content: "\f100"; } +.genericon-star:before { content: "\f408"; } +.genericon-status:before { content: "\f105"; } +.genericon-stop:before { content: "\f449"; } +.genericon-stumbleupon:before { content: "\f223"; } +.genericon-subscribe:before { content: "\f463"; } +.genericon-subscribed:before { content: "\f465"; } +.genericon-summary:before { content: "\f425"; } +.genericon-tablet:before { content: "\f453"; } +.genericon-tag:before { content: "\f302"; } +.genericon-time:before { content: "\f303"; } +.genericon-top:before { content: "\f435"; } +.genericon-trash:before { content: "\f407"; } +.genericon-tumblr:before { content: "\f214"; } +.genericon-twitch:before { content: "\f516"; } +.genericon-twitter:before { content: "\f202"; } +.genericon-unapprove:before { content: "\f446"; } +.genericon-unsubscribe:before { content: "\f464"; } +.genericon-unzoom:before { content: "\f401"; } +.genericon-uparrow:before { content: "\f500"; } +.genericon-user:before { content: "\f304"; } +.genericon-video:before { content: "\f104"; } +.genericon-videocamera:before { content: "\f517"; } +.genericon-vimeo:before { content: "\f212"; } +.genericon-warning:before { content: "\f414"; } +.genericon-website:before { content: "\f475"; } +.genericon-week:before { content: "\f306"; } +.genericon-wordpress:before { content: "\f205"; } +.genericon-xpost:before { content: "\f504"; } +.genericon-youtube:before { content: "\f213"; } +.genericon-zoom:before { content: "\f402"; } + + + + diff --git a/pique/footer.php b/pique/footer.php new file mode 100644 index 000000000..1cbe928df --- /dev/null +++ b/pique/footer.php @@ -0,0 +1,36 @@ + + + + + + + + + + + diff --git a/pique/front-page.php b/pique/front-page.php new file mode 100644 index 000000000..2f08d4113 --- /dev/null +++ b/pique/front-page.php @@ -0,0 +1,44 @@ + + +
+
+ + + + + +
+
+ + diff --git a/pique/functions.php b/pique/functions.php new file mode 100644 index 000000000..2bb4d82d5 --- /dev/null +++ b/pique/functions.php @@ -0,0 +1,324 @@ + tag in the document head, and expect WordPress to + * provide it for us. + */ + add_theme_support( 'title-tag' ); + + /* + * Enable support for Post Thumbnails on posts and pages. + * + * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails + */ + add_theme_support( 'post-thumbnails' ); + add_image_size( 'pique-hero', 1400, 1000, true ); + add_image_size( 'pique-square', 280, 280, true ); + add_image_size( 'pique-header', 1400, 400, true ); + add_image_size( 'pique-thumbnail-avatar', 100, 100, true ); + + // This theme uses wp_nav_menu() in three locations. + register_nav_menus( array( + 'primary' => esc_html__( 'Primary Menu', 'pique' ), + 'secondary' => esc_html__( 'Secondary Menu', 'pique' ), + ) ); + + /* + * Switch default core markup for search form, comment form, and comments + * to output valid HTML5. + */ + add_theme_support( 'html5', array( + 'search-form', + 'comment-form', + 'comment-list', + 'gallery', + 'caption', + ) ); + + /* + * Enable support for Post Formats. + * See http://codex.wordpress.org/Post_Formats + */ + add_theme_support( 'post-formats', array( + 'aside', + 'chat', + 'gallery', + 'image', + 'video', + 'quote', + 'link', + 'status', + 'audio', + ) ); + + // Set up the WordPress core custom background feature. + add_theme_support( 'custom-background', apply_filters( 'pique_custom_background_args', array( + 'default-color' => 'ffffff', + 'default-image' => '', + ) ) ); + } +endif; // pique_setup +add_action( 'after_setup_theme', 'pique_setup' ); + +/** + * Set the content width in pixels, based on the theme's design and stylesheet. + * + * Priority 0 to make it available to lower priority callbacks. + * + * @global int $content_width + */ +function pique_content_width() { + $GLOBALS['content_width'] = apply_filters( 'pique_content_width', 775 ); +} +add_action( 'after_setup_theme', 'pique_content_width', 0 ); + +/** + * Use a larger content width for full-width pages. + */ +if ( ! function_exists( 'pique_content_width_tweak' ) ) : + function pique_content_width_tweak() { + if ( is_page_template( 'page-templates/template-full-width.php' ) ) : + global $content_width; + $content_width = 1400; /* pixels */ + endif; + } +endif; +add_action( 'template_redirect', 'pique_content_width_tweak' ); + +/** + * Register widget area. + * + * @link http://codex.wordpress.org/Function_Reference/register_sidebar + */ +function pique_widgets_init() { + register_sidebar( array( + 'name' => esc_html__( 'Sidebar', 'pique' ), + 'id' => 'sidebar-1', + 'description' => esc_html__( 'Add widgets here to appear in your sidebar', 'pique' ), + 'before_widget' => '', + 'before_title' => '

', + 'after_title' => '

', + ) ); + + register_sidebar( array( + 'name' => esc_html__( 'First Footer Widget Area', 'pique' ), + 'id' => 'sidebar-2', + 'description' => esc_html__( 'Add widgets here to appear in your footer', 'pique' ), + 'before_widget' => '', + 'before_title' => '

', + 'after_title' => '

', + ) ); + + register_sidebar( array( + 'name' => esc_html__( 'Second Footer Widget Area', 'pique' ), + 'id' => 'sidebar-3', + 'description' => esc_html__( 'Add widgets here to appear in your footer', 'pique' ), + 'before_widget' => '', + 'before_title' => '

', + 'after_title' => '

', + ) ); + + register_sidebar( array( + 'name' => esc_html__( 'Third Footer Widget Area', 'pique' ), + 'id' => 'sidebar-4', + 'description' => esc_html__( 'Add widgets here to appear in your footer', 'pique' ), + 'before_widget' => '', + 'before_title' => '

', + 'after_title' => '

', + ) ); +} +add_action( 'widgets_init', 'pique_widgets_init' ); + +/** + * Register Google Fonts + */ +function pique_fonts_url() { + $fonts_url = ''; + + /* Translators: If there are characters in your language that are not + * supported by Lora, translate this to 'off'. Do not translate + * into your own language. + */ + $lora = esc_html_x( 'on', 'Lora font: on or off', 'pique' ); + + /* Translators: If there are characters in your language that are not + * supported by Karla, translate this to 'off'. Do not translate + * into your own language. + */ + $karla = esc_html_x( 'on', 'Karla font: on or off', 'pique' ); + + if ( 'off' !== $lora || 'off' !== $karla ) : + $font_families = array(); + + if ( 'off' !== $lora ) { + $font_families[] = 'Lora:400,700,400italic,700italic'; + } + + if ( 'off' !== $karla ) { + $font_families[] = 'Karla:400,700,400italic,700italic'; + } + + $query_args = array( + 'family' => urlencode( implode( '|', $font_families ) ), + 'subset' => urlencode( 'latin,latin-ext' ), + ); + + $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); + + endif; + + return $fonts_url; +} + +/** + * Enqueue Google Fonts for custom headers + */ +function pique_admin_scripts() { + wp_enqueue_style( 'pique-fonts', pique_fonts_url(), array(), null ); +} +add_action( 'admin_print_styles-appearance_page_custom-header', 'pique_admin_scripts' ); + +/** + * Enqueue scripts and styles. + */ +function pique_scripts() { + wp_enqueue_style( 'pique-style', get_stylesheet_uri(), array(), null, 'screen' ); + wp_enqueue_style( 'pique-fonts', pique_fonts_url(), array(), null ); + + // Background fix for iOS + if ( is_front_page() || is_home() ) : + wp_enqueue_script( 'pique-background-fix', get_template_directory_uri() . '/assets/js/background-fix.js', array( 'jquery' ), '20170302', true ); + endif; + + // Header and navigation + wp_enqueue_script( 'waypoints', get_template_directory_uri() . '/assets/js/jquery.waypoints.min.js', array( 'jquery' ), '20150813', true ); + wp_enqueue_script( 'pique-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array( 'jquery' ), '20120206', true ); + wp_enqueue_script( 'pique-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20130115', true ); + wp_enqueue_script( 'pique-header', get_template_directory_uri() . '/assets/js/header.js', array( 'jquery', 'waypoints' ), '20151030', true ); + + // Scroll effects (only loaded on front page) + if ( pique_is_frontpage() ) : + wp_enqueue_script( 'scrollTo', get_template_directory_uri() . '/assets/js/jquery.scrollTo.min.js', array( 'jquery' ), '20151030', true ); + wp_enqueue_script( 'pique-front-page', get_template_directory_uri() . '/assets/js/front-page.js', array( 'scrollTo', 'waypoints' ), '20151030', true ); + endif; + + // Font icons, because we're retro like that + wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/fonts/font-awesome.min.css', array(), null ); + + if ( wp_style_is( 'genericons', 'registered' ) ) { + wp_enqueue_style( 'genericons', get_template_directory_uri() . '/fonts/genericons.css', array(), null ); + } else { + wp_enqueue_style( 'genericons', get_template_directory_uri() . '/fonts/genericons.css', array(), null ); + } + + if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { + wp_enqueue_script( 'comment-reply' ); + } +} +add_action( 'wp_enqueue_scripts', 'pique_scripts' ); + +/** + * Filter the front page template so it's bypassed entirely if the user selects + * to display blog posts on their homepage instead of a static page. + */ +function pique_filter_front_page_template( $template ) { + return is_home() ? '' : $template; +} +add_filter( 'frontpage_template', 'pique_filter_front_page_template' ); + +function pique_query_vars( $qvars ) { + $qvars[] = 'pique_panel'; + return $qvars; +} +add_filter( 'query_vars', 'pique_query_vars' , 10, 1 ); + +/** + * Get random posts; a simple, more efficient approach. + * MySQL queries that use ORDER BY RAND() can be pretty challenging and slow on large datasets. + * Also it works better with heavy caching. + */ +function pique_get_random_posts( $number = 1, $post_type = 'post' ) { + $query = new WP_Query( array( + 'posts_per_page' => 100, + 'fields' => 'ids', + 'post_type' => $post_type + ) ); + + $post_ids = $query->posts; + + shuffle( $post_ids ); + + $post_ids = array_splice( $post_ids, 0, $number ); + + $random_posts = get_posts( array( + 'post__in' => $post_ids, + 'numberposts' => count( $post_ids ), + 'post_type' => $post_type + ) ); + + return $random_posts; +} + +/** + * Implement the Custom Header feature. + */ +require get_template_directory() . '/inc/custom-header.php'; + +/** + * Custom template tags for this theme. + */ +require get_template_directory() . '/inc/template-tags.php'; + +/** + * Custom functions that act independently of the theme templates. + */ +require get_template_directory() . '/inc/extras.php'; + +/** + * Customizer additions. + */ +require get_template_directory() . '/inc/customizer.php'; + +/** + * Load Jetpack compatibility file. + */ +require get_template_directory() . '/inc/jetpack.php'; + +/** + * Load WooCommerce compatibility file. + */ +if ( class_exists( 'WooCommerce' ) ) { + require get_template_directory() . '/inc/woocommerce.php'; +} + diff --git a/pique/header.php b/pique/header.php new file mode 100644 index 000000000..8d53cf817 --- /dev/null +++ b/pique/header.php @@ -0,0 +1,122 @@ + section and everything up till
+ * + * @package Pique + */ + +?> +> + + + + + + + + + +> +
+ + + + + +
diff --git a/pique/inc/custom-header.php b/pique/inc/custom-header.php new file mode 100644 index 000000000..96e964dea --- /dev/null +++ b/pique/inc/custom-header.php @@ -0,0 +1,91 @@ + esc_url( get_template_directory_uri() ) . '/assets/images/default-header.jpg', + 'default-text-color' => '#FCFBF9', + 'width' => 1400, + 'height' => 400, + 'flex-height' => true, + 'wp-head-callback' => 'pique_header_style', + 'admin-head-callback' => 'pique_admin_header_style', + 'admin-preview-callback' => 'pique_admin_header_image', + ) ) ); +} +add_action( 'after_setup_theme', 'pique_custom_header_setup' ); + +if ( ! function_exists( 'pique_header_style' ) ) : + /** + * Styles the header image and text displayed on the blog + * + * @see pique_custom_header_setup(). + */ + function pique_header_style() { + $header_text_color = get_header_textcolor(); + + // If no custom options for text are set, let's bail + // get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value. + if ( HEADER_TEXTCOLOR === $header_text_color ) { + return; + } + + // If we get this far, we have custom styles. Let's do this. + ?> + + Header admin panel. + * + * @see pique_custom_header_setup(). + */ + function pique_admin_header_image() { + ?> +
+

+ +

+
+ + + +
+ get_setting( 'blogname' )->transport = 'postMessage'; + $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; + $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; + + /** + * Add the Theme Options section + */ + $wp_customize->add_panel( 'pique_options_panel', array( + 'title' => __( 'Theme Options', 'pique' ), + 'description' => __( 'Configure your theme settings', 'pique' ), + ) ); + + // General settings + $wp_customize->add_section( 'pique_general_settings', array( + 'title' => esc_html__( 'Menu Settings', 'pique' ), + 'panel' => 'pique_options_panel', + 'description' => __( 'This replaces your custom menu—on the front page only—with an automatically-generated menu that links to each of your panels.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_menu', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_checkbox', + ) ); + + $wp_customize->add_control( 'pique_menu', array( + 'label' => esc_html__( 'Add an anchor menu to the front page.', 'pique' ), + 'section' => 'pique_general_settings', + 'type' => 'checkbox', + ) ); + + // Panel 1 + $wp_customize->add_section( 'pique_panel1', array( + 'title' => esc_html__( 'Panel 1', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel1', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel1', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel1', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel1_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel1_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel1', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel1_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel1_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel1', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); + + // Panel 2 + $wp_customize->add_section( 'pique_panel2', array( + 'title' => esc_html__( 'Panel 2', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel2', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel2', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel2', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel2_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel2_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel2', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel2_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel2_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel2', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); + + // Panel 3 + $wp_customize->add_section( 'pique_panel3', array( + 'title' => esc_html__( 'Panel 3', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel3', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel3', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel3', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel3_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel3_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel3', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel3_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel3_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel3', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); + + // Panel 4 + $wp_customize->add_section( 'pique_panel4', array( + 'title' => esc_html__( 'Panel 4', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel4', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel4', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel4', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel4_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel4_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel4', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel4_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel4_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel4', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); + + // Panel 5 + $wp_customize->add_section( 'pique_panel5', array( + 'title' => esc_html__( 'Panel 5', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel5', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel5', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel5', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel5_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel5_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel5', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel5_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel5_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel5', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); + + // Panel 6 + $wp_customize->add_section( 'pique_panel6', array( + 'title' => esc_html__( 'Panel 6', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel6', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel6', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel6', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel6_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel6_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel6', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel6_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel6_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel6', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); + + // Panel 7 + $wp_customize->add_section( 'pique_panel7', array( + 'title' => esc_html__( 'Panel 7', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel7', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel7', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel7', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel7_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel7_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel7', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel7_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel7_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel7', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); + + // Panel 8 + $wp_customize->add_section( 'pique_panel8', array( + 'title' => esc_html__( 'Panel 8', 'pique' ), + 'active_callback' => 'is_front_page', + 'panel' => 'pique_options_panel', + 'description' => __( 'Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'pique' ), + ) ); + + $wp_customize->add_setting( 'pique_panel8', array( + 'default' => false, + 'sanitize_callback' => 'pique_sanitize_numeric_value', + ) ); + + $wp_customize->add_control( 'pique_panel8', array( + 'label' => esc_html__( 'Panel Content', 'pique' ), + 'section' => 'pique_panel8', + 'type' => 'dropdown-pages', + ) ); + + $wp_customize->add_setting( 'pique_panel8_background', array( + 'default' => 'default', + 'sanitize_callback' => 'sanitize_hex_color', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel8_background', array( + 'label' => esc_html__( 'Background Color', 'pique' ), + 'section' => 'pique_panel8', + 'type' => 'color', + ) ); + + $wp_customize->add_setting( 'pique_panel8_opacity', array( + 'default' => 'default', + 'sanitize_callback' => 'pique_sanitize_opacity', + 'transport' => 'postMessage', + ) ); + + $wp_customize->add_control( 'pique_panel8_opacity', array( + 'label' => esc_html__( 'Featured Image Opacity', 'pique' ), + 'section' => 'pique_panel8', + 'type' => 'select', + 'description' => esc_html( 'Set the opacity of the featured image over the panel background.', 'pique' ), + 'choices' => array( + '0.25' => esc_html__( '25%', 'pique' ), + '0.5' => esc_html__( '50%', 'pique' ), + '0.75' => esc_html__( '75%', 'pique' ), + '1' => esc_html__( '100%', 'pique' ), + + ), + ) ); +} +add_action( 'customize_register', 'pique_customize_register' ); + +/** + * Sanitize a numeric value + */ +function pique_sanitize_numeric_value( $input ) { + if ( is_numeric( $input ) ) { + return intval( $input ); + } else { + return 0; + } +} + +/** + * Sanitize a true/false checkbox + */ +function pique_sanitize_checkbox( $input ) { + if ( ! in_array( $input, array( true, false ) ) ) { + $input = false; + } + return $input; +} + +/* + * Sanitize our opacity values + */ +function pique_sanitize_opacity( $input ) { + + $choices = array( 'default', 0.25, 0.5, 0.75, 1 ); + + if ( ! in_array( $input, $choices ) ) { + $input = 'default'; + } + + return $input; +} + +/* + * Output our custom CSS to change background colour/opacity of panels. + * Note: not very pretty, but it works. + */ +function pique_customizer_css() { + ?> + + theme_location ], 'nav_menu' ); + endif; + + $indent = ( $depth ) ? str_repeat( "\t", $depth ) : ''; + + $class_names = $value = ''; + + $classes = empty( $item->classes ) ? array() : (array) $item->classes; + $classes[] = 'menu-item-' . $item->ID; + + $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) ); + $class_names = ' class="' . esc_attr( $class_names ) . '"'; + + $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args ); + $id = strlen( $id ) ? ' id="' . esc_attr( $id ) . '"' : ''; + + $output .= $indent . ''; + + // Get the IDs for our target page (the page we're linking to), the parent of our target, and current page + $target_page = $item->object_id; + if ( get_post( $target_page ) ) : + $target_parent = get_post( $target_page )->post_parent; + else : + $target_parent = 0; + endif; + if ( $post ) : + $current_page = $post->ID; + else : + $current_page = null; + endif; + + // Check to see if our target page's parent page is the front page. If so, we'll want to use a hash link. + if ( 0 !== $target_parent && 'page-templates/template-front.php' === get_page_template_slug( $target_parent ) ) : + if ( $current_page === $target_parent ) : + $item->url = '#post-' . $target_page; + else : + $item->url = get_page_link( $target_parent ) . '#post-' . $target_page; + endif; + endif; + + $attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) .'"' : ''; + $attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) .'"' : ''; + $attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) .'"' : ''; + $attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $item->url ) .'"' : ''; + + if ( is_object( $args ) ) : + $item_output = $args->before; + $item_output .= ''; + $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after; + $item_output .= ''; + $item_output .= $args->after; + $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); + endif; + } +} + +/* + * Add an extra li to our nav for our priority+ navigation to use + */ +function add_more_to_nav( $items, $args ) { + if ( 'primary' === $args->theme_location ) : + $items .= ''; + endif; + return $items; +} +add_filter( 'wp_nav_menu_items', 'add_more_to_nav', 10, 2 ); + +/* + * Let's customize our excerpt a bit, so it looks better + * First we decrease the default excerpt length, then + * we give it a proper hellip for the more text. + */ +function pique_custom_excerpt_length( $length ) { + return 27; +} +add_filter( 'excerpt_length', 'pique_custom_excerpt_length', 999 ); + +function pique_custom_excerpt_more($more) { + $more_link = ''; + $more_link .= ''; + $more_link .= sprintf( + wp_kses( __( 'Read more %s', 'pique' ), array( 'span' => array( 'class' => array() ) ) ), + the_title( '"', '"', false ) + ); + $more_link .= ''; + return '… ' . $more_link; +} +add_filter( 'excerpt_more', 'pique_custom_excerpt_more' ); + +/* + * Filter the categories archive widget to add a span around post count + */ +function pique_cat_count_span( $links ) { + $links = str_replace( ' (', '(', $links ); + $links = str_replace( ')', ')', $links ); + return $links; +} +add_filter( 'wp_list_categories', 'pique_cat_count_span' ); + +/* + * Filter the archives widget to add a span around post count + */ +function pique_archive_count_span( $links ) { + $links = str_replace( ' (', '(', $links ); + $links = str_replace( ')', ')', $links ); + return $links; +} +add_filter( 'get_archives_link', 'pique_archive_count_span' ); + +/* + * Check if WooCommerce is activated and a single product is in view + */ +if ( ! function_exists( 'pique_is_woocommerce_in_view' ) ) { + function pique_is_woocommerce_in_view() { + if ( ! class_exists( 'woocommerce' ) ) { + return true; + } else { + if ( is_woocommerce() ) { + return false; + } else { + return true; + } + } + } +} diff --git a/pique/inc/headstart/ar.json b/pique/inc/headstart/ar.json new file mode 100644 index 000000000..88ac7924a --- /dev/null +++ b/pique/inc/headstart/ar.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "الساعات والمعلومات", + "address": "منزل جامايكا\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "094156 8747 44+", + "hours": "الاثنين - الأربعاء: 7 ص – 9 م\n
الخميس – السبت: 7 ص – 11 م\n
الأحد: 8 ص – 9 م", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "مربع جانبي للنص", + "text": "هذا مربع جانبي للنص. يسمح لك المربع الجانبي للنص بإضافة نص أو HTML إلى شريطك الجانبي. يمكنك استخدام مربع جانبي للنص لعرض نص أو روابط أو صور أو HTML أو مجموعة متنوعة من هذه. حررها في قسم \"المربع الجانبي\" في \"أداة التخصيص\".", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "حول", + "text": "Pique أحد قوالب التمرير في صفحة واحدة تم تصميمه لعرض أعمالك في ضوء أفضل. توجد ثلاث مناطق للمربعات الجانبية في الذيل حيث يمكنك وضع أي محتوى ترغب فيه. هذا هو المكان المثالي لإضافة معلومات إضافية مثل الروابط الاجتماعية أو ساعات العمل أو معلومات الاتصال.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "مربع جانبي للنص", + "text": "هذا مربع جانبي للنص. يسمح لك المربع الجانبي للنص بإضافة نص أو HTML إلى شريطك الجانبي. يمكنك استخدام مربع جانبي للنص لعرض نص أو روابط أو صور أو HTML أو مجموعة متنوعة من هذه. حررها في قسم \"المربع الجانبي\" في \"أداة التخصيص\".", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "مربع جانبي للنص", + "text": "هذا مربع جانبي للنص. يسمح لك المربع الجانبي للنص بإضافة نص أو HTML إلى شريطك الجانبي. يمكنك استخدام مربع جانبي للنص لعرض نص أو روابط أو صور أو HTML أو مجموعة متنوعة من هذه. حررها في قسم \"المربع الجانبي\" في \"أداة التخصيص\".", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "الصفحة الرئيسية", + "post_content": "مرحبًا بك في موقعك الجديد! يمكنك تحرير هذه الصفحة عن طريق النقر فوق رابط \"تحرير\". لمزيد من المعلومات حول تخصيص موقعك، تحقق من http://learn.wordpress.com/", + "post_excerpt": "هذا هو مقتطف الصفحة الرئيسية", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "نبذة عن", + "post_content": "هذا مثال لصفحة \"نبذة عن\". على عكس المقالات، تتناسب الصفحات بشكل أفضل مع المحتوى المستمر لفترة طويلة الذي تريد تسهيل الوصول إليه، مثل \"نبذة عنك\" أو \"معلومات الاتصال الخاصة بك\" انقر فوق رابط \"تحرير\" لإجراء تغييرات على هذه الصفحة أو أضف صفحة أخرى.", + "post_excerpt": "هذا مجرد مقتطف موجز عن صفحة نبذة عن.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "جهة الاتصال", + "post_content": "هذه صفحة اتصال تحتوي على بعض معلومات الاتصال الرئيسية ونموذج الاتصال. [contact-form][contact-field label=\"Name\" type=\"name\" required=\"1\"/][contact-field label=\"البريد الإلكتروني\" type=\"email\" required=\"1\"/][contact-field label=\"موقع الويب\" type=\"url\"/][contact-field label=\"التعليق\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "هذا مجرد مقتطف موجز عن صفحة \"اتصال\" .", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "المدونة", + "post_content": "هذه هي الصفحة التي سيجد فيها المستخدمون مدونة موقعك", + "post_excerpt": "هذا مجرد مقتطف موجز عن مدونتك.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "مقالة أولى على المدونة", + "post_content": "هذه هي مقالتك الأولى. انقر فوق رابط \"تحرير\" لتعديلها أو حذفها، أو ابدأ مقالة جديدة. استخدم هذه المقالة، إن شئت، لإخبار القراء عن سبب إنشاء هذه المدونة وما الذي تخطط للقيام به من خلالها.", + "post_excerpt": "هذا هو مقتطف لمقالتك الأولى تمامًا.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/de.json b/pique/inc/headstart/de.json new file mode 100644 index 000000000..6f76135aa --- /dev/null +++ b/pique/inc/headstart/de.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Geschäftszeiten & Info", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Mo-Mi: 7-21 Uhr\n
Do-Sa: 7-23 Uhr\n
So: 8-21 Uhr", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Text-Widget", + "text": "Dies ist ein Text-Widget. Dies ist ein Text-Widget, mit dem du zu deiner Seitenleiste Text oder HTML-Code hinzufügen kannst. Mit einem Text-Widget kannst du Text, Links, Bilder, HTML-Code oder eine Kombination daraus anzeigen. Bearbeite diese im Bereich „Widget“ des Customizer.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Über uns", + "text": "Pique ist ein Theme, das darauf ausgelegt ist, dein Unternehmen auf einer einzigen scrollbaren Seite im besten Licht erscheinen zu lassen. Es enthält im Footer drei optionale Widget-Bereiche für beliebige Inhalte. Dies ist der ideale Platz zum Einfügen zusätzlicher Informationen wie Links zu sozialen Netzwerken, Öffnungszeiten oder Kontaktinformationen.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Text-Widget", + "text": "Dies ist ein Text-Widget. Dies ist ein Text-Widget, mit dem du zu deiner Seitenleiste Text oder HTML-Code hinzufügen kannst. Mit einem Text-Widget kannst du Text, Links, Bilder, HTML-Code oder eine Kombination daraus anzeigen. Bearbeite diese im Bereich „Widget“ des Customizer.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Text-Widget", + "text": "Dies ist ein Text-Widget. Dies ist ein Text-Widget, mit dem du zu deiner Seitenleiste Text oder HTML-Code hinzufügen kannst. Mit einem Text-Widget kannst du Text, Links, Bilder, HTML-Code oder eine Kombination daraus anzeigen. Bearbeite diese im Bereich „Widget“ des Customizer.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Startseite", + "post_content": "Willkommen auf deiner neuen Website! Du kannst diese Seite bearbeiten, indem du auf den Link „Bearbeiten“ klickst. Weitere Informationen zum Anpassen deiner Website findest du unter http://learn.wordpress.com/", + "post_excerpt": "Dies ist die Kurzfassung der Startseite", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Über", + "post_content": "Dies ist ein Beispiel für eine Seite „Über“. Im Unterschied zu Beiträgen eignen sich Seiten besser für Inhalte, die länger aktuell bleiben und leicht zugänglich sein sollen, wie die Angaben unter „Über“ oder „Kontakt“. Klicke auf den Link „Bearbeiten“, um diese Seite zu ändern, oder füge eine weitere Seite hinzu.", + "post_excerpt": "Dies ist nur eine Kurzfassung der Seite „Über“.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Kontakt", + "post_content": "Dies ist ein Beispiel zur Seite „Kontakt“ mit grundlegenden Kontaktinformationen und einem Kontaktformular. [contact-form][contact-field label=\"Name\" type=\"name\" required=\"1\"/][contact-field label=\"E-Mail-Adresse\" type=\"email\" required=\"1\"/][contact-field label=\"Website\" type=\"url\"/][contact-field label=\"Kommentar\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Dies ist nur eine Kurzfassung der Seite „Kontakt“.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Auf dieser Seite finden Benutzer den Blog deiner Website.", + "post_excerpt": "Dies ist nur ein kurzer Auszug deines Blogs.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Erster Blogbeitrag", + "post_content": "Dies ist dein erster Beitrag. Klicke auf den Link „Bearbeiten“, um diesen zu bearbeiten oder zu löschen, oder beginne einen neuen Beitrag. Wenn du möchtest, kannst du deinen Lesern in diesem Beitrag mitteilen, warum du diesen Blog begonnen hast und was du damit vorhast.", + "post_excerpt": "Dies ist die Kurzfassung deines ersten Beitrags.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/en.json b/pique/inc/headstart/en.json new file mode 100644 index 000000000..698468639 --- /dev/null +++ b/pique/inc/headstart/en.json @@ -0,0 +1,90 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_contact_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + } + ], + "content": [ + { + "post_title": "Home", + "post_content": "Welcome to my site!", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 0, + "hs_like_status": 0, + "hs_old_id": 60, + "attachment_url": "https:\/\/piquedemo.files.wordpress.com\/2015\/11\/download3.jpg" + }, + { + "post_title": "Contact", + "post_content": "[contact-form][contact-field label=\"Name\" type=\"name\" required=\"1\"\/][contact-field label=\"Email\" type=\"email\" required=\"1\"\/][contact-field label=\"Comment\" type=\"textarea\" required=\"1\"\/][\/contact-form]", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 0, + "hs_like_status": 0, + "hs_old_id": 62, + "attachment_url": "https:\/\/piquedemo.files.wordpress.com\/2015\/11\/download16.jpg" + }, + { + "post_title": "Blog", + "post_content": "", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 0, + "hs_like_status": 0, + "hs_old_id": 63 + }, + { + "post_title": "The Journey Begins", + "post_content": "Thanks for joining me!
Good company in a journey makes the way seem shorter. — Izaak Walton<\/blockquote>\"post\"", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 0, + "hs_like_status": 0, + "attachment_url": "https:\/\/piquedemo.files.wordpress.com\/2015\/11\/downloa8d.jpg" + } + ] +} diff --git a/pique/inc/headstart/es.json b/pique/inc/headstart/es.json new file mode 100644 index 000000000..1adfeaf80 --- /dev/null +++ b/pique/inc/headstart/es.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Horas e información", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "De lunes a miércoles: De 7:00 a 21:00\n
De jueves a sábado: De 7:00 a 23:00\n
Domingo: De 8:00 a 21:00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Widget de texto", + "text": "Se trata de un widget de texto. El widget de texto te permite añadir texto o código HTML a tu barra lateral. Utiliza el widget de texto para mostrar enlaces, imágenes, HTML, texto o una combinación de todos estos elementos. Edítalos en la sección Widget del Personalizador.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Acerca de nosotros", + "text": "Pique es un tema de navegación continua de una página diseñado para mostrar lo mejor de tu empresa. El pie de página contiene tres áreas de widgets opcionales para colocar todo el contenido que quieras. Es el lugar perfecto para añadir información extra como los enlaces de redes sociales, el horario o la información de contacto.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Widget de texto", + "text": "Se trata de un widget de texto. El widget de texto te permite añadir texto o código HTML a tu barra lateral. Utiliza el widget de texto para mostrar enlaces, imágenes, HTML, texto o una combinación de todos estos elementos. Edítalos en la sección Widget del Personalizador.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Widget de texto", + "text": "Se trata de un widget de texto. El widget de texto te permite añadir texto o código HTML a tu barra lateral. Utiliza el widget de texto para mostrar enlaces, imágenes, HTML, texto o una combinación de todos estos elementos. Edítalos en la sección Widget del Personalizador.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Página de inicio", + "post_content": "Te damos la bienvenida a tu nuevo sitio. Para editar esta página, haz clic en el enlace Editar. Para obtener más información sobre cómo personalizar tu sitio, consulta http://learn.wordpress.com/", + "post_excerpt": "Este es el extracto de la página de inicio", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Acerca de", + "post_content": "Este es un ejemplo de una página Acerca de. A diferencia de las entradas, las páginas se ajustan mejor a un contenido atemporal que te interesa que sea más accesible, como la información en las páginas Acerca de o Contacto. Haz clic en el enlace Editar para hacer cambios en esta página o bien añade otra página.", + "post_excerpt": "Este es solo un breve extracto de la página Acerca de.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Contacto", + "post_content": "Esta es una página Contacto con información básica y un formulario de contacto. [contact-form][contact-field label=\"Nombre\" type=\"name\" required=\"1\"/][contact-field label=\"Correo electrónico\" type=\"email\" required=\"1\"/][contact-field label=\"Sitio web\" type=\"url\"/][contact-field label=\"Comentario\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Este es solo un breve extracto de la página Contacto", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Esta es la página donde los usuarios verán el blog de tu sitio", + "post_excerpt": "Este es solo un breve extracto de tu blog.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Primera entrada de blog", + "post_content": "Esta es tu primera entrada. Haz clic en el enlace Editar para modificarla o eliminarla, o bien crea una entrada nueva. Si quieres, utilízala para explicar a los lectores por qué has empezado este blog y qué tienes previsto hacer con él.", + "post_excerpt": "Este es el extracto de tu primera entrada.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/fr.json b/pique/inc/headstart/fr.json new file mode 100644 index 000000000..2c39b1e59 --- /dev/null +++ b/pique/inc/headstart/fr.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Heures et infos", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Lun. au mer. : 7 h à 21 h\n
Jeu. au sam. : 7 h à 23 h\n
Dim. : 8 h à 21 h", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Widget de texte", + "text": "Ceci est un widget de texte. Ce widget de texte vous permet d’ajouter du texte ou des balises HTML à votre colonne latérale. Vous pouvez l’utiliser pour afficher du texte, des liens, des images, des balises HTML ou une association de ces éléments. Modifiez-les dans la section Widget de l’outil de personnalisation.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "À propos de nous", + "text": "Pique est un thème de défilement sur une page conçu pour présenter votre entreprise sous son meilleur jour. Trois zones de widget facultatives sont disponibles dans le pied de page pour ajouter tout contenu que vous aimez. Cet emplacement est idéal pour ajouter des informations supplémentaires : réseaux sociaux, horaires d’ouverture, coordonnées, etc.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Widget de texte", + "text": "Ceci est un widget de texte. Ce widget de texte vous permet d’ajouter du texte ou des balises HTML à votre colonne latérale. Vous pouvez l’utiliser pour afficher du texte, des liens, des images, des balises HTML ou une association de ces éléments. Modifiez-les dans la section Widget de l’outil de personnalisation.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Widget de texte", + "text": "Ceci est un widget de texte. Ce widget de texte vous permet d’ajouter du texte ou des balises HTML à votre colonne latérale. Vous pouvez l’utiliser pour afficher du texte, des liens, des images, des balises HTML ou une association de ces éléments. Modifiez-les dans la section Widget de l’outil de personnalisation.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Accueil", + "post_content": "Bienvenue sur votre nouveau site ! Pour modifier cette page, cliquez sur le lien de modification. Pour plus d’informations sur la personnalisation de votre site, visitez le site http://learn.wordpress.com/.", + "post_excerpt": "Il s’agit de l’extrait de votre page d’accueil.", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "À propos", + "post_content": "Ceci est un exemple de page « À propos ». À la différence des articles, les pages sont plutôt destinées à du contenu dont vous souhaitez qu’il soit toujours facilement accessible, comme votre présentation ou vos coordonnées. Cliquez sur le lien de modification pour modifier cette page ou ajouter une autre page.", + "post_excerpt": "Ceci est un petit extrait destiné à la  page « À propos ».", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Contact", + "post_content": "Ceci est une page de coordonnées comportant quelques informations de base et un formulaire de contact. [contact-form][contact-field label=\"Nom\" type=\"name\" required=\"1\"/][contact-field label=\"E-mail\" type=\"email\" required=\"1\"/][contact-field label=\"Site Web\" type=\"url\"/][contact-field label=\"Commentaire\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Ceci est un petit extrait destiné à la page « Contact ».", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Il s’agit de la page sur laquelle les utilisateurs trouveront le blog de votre site.", + "post_excerpt": "Ceci est un petit extrait concernant votre blog.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Premier article de blog", + "post_content": "Il s’agit de votre tout premier article Cliquez sur le lien Modifier pour le modifier ou le supprimer ou commencez un nouvel article. Si vous le souhaitez, utilisez cet article pour indiquer aux lecteurs pourquoi vous avez commencé ce blog et ce que vous envisagez d’en faire.", + "post_excerpt": "Il s’agit de l’extrait de votre tout premier article.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/he.json b/pique/inc/headstart/he.json new file mode 100644 index 000000000..87d25581d --- /dev/null +++ b/pique/inc/headstart/he.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "שעות ומידע", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "094156 8747 ‏ 44‏+‏", + "hours": "שני - רביעי: 07:00-21:00\n
חמישי - שבת: 07:00-23:00\n
ראשון: 08:00-21:00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "וידג'ט טקסט", + "text": "זהו וידג'ט לטקסט. וידג'ט טקסט מאפשר לך להוסיף טקסט או HTML לסרגל הצדי שלך. אפשר להשתמש בווידג'ט לטקסט להצגת טקסט, קישורים, תמונות, HTML או שילוב של התכנים הללו. ניתן לערוך אותם במקטע 'וידג'טים' בכלי ההתאמה האישית.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "אודותינו", + "text": "Pique היא ערכת עיצוב שמורכבת מעמוד גלילה אחד ומעוצבת כדי להציג את העסק שלך באור המחמיא ביותר. ישנם שלושה אזורים אפשריים לווידג'טים בכותרת התחתונה, שם ניתן לשים כל תוכן שרלוונטי עבורך. זה הוא המיקום המושלם להוסיף מידע כגון קישורים לרשתות חברתיות, שעות פתיחה או פרטי קשר.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "וידג'ט טקסט", + "text": "זהו וידג'ט לטקסט. וידג'ט טקסט מאפשר לך להוסיף טקסט או HTML לסרגל הצדי שלך. אפשר להשתמש בווידג'ט לטקסט להצגת טקסט, קישורים, תמונות, HTML או שילוב של התכנים הללו. ניתן לערוך אותם במקטע 'וידג'טים' בכלי ההתאמה האישית.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "וידג'ט טקסט", + "text": "זהו וידג'ט לטקסט. וידג'ט טקסט מאפשר לך להוסיף טקסט או HTML לסרגל הצדי שלך. אפשר להשתמש בווידג'ט לטקסט להצגת טקסט, קישורים, תמונות, HTML או שילוב של התכנים הללו. ניתן לערוך אותם במקטע 'וידג'טים' בכלי ההתאמה האישית.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "ראשי", + "post_content": "ברוכים הבאים לאתר החדש שלכם! אפשר לערוך עמוד זה על ידי לחיצה על הקישור 'עריכה'. למידע נוסף על התאמה אישית של האתר, כדאי לבקר בכתובת http://learn.wordpress.com/‎", + "post_excerpt": "זהו תקציר של עמוד הבית", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "אודות", + "post_content": "זהו עמוד 'אודות' לדוגמה. להבדיל מפוסטים, עמודים מתאימים יותר ליצירת גישה קלה לתוכן שאינו תלוי בזמן, למשל 'אודות' או 'פרטים ליצירת קשר'. יש ללחוץ על הקישור 'עריכה' כדי לבצע שינויים בעמוד זה או להוסיף עוד עמוד.", + "post_excerpt": "זהו תקציר עבור  עמוד 'אודות'.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "יצירת קשר", + "post_content": "זהו עמוד 'יצירת קשר' שכולל פרטי קשר בסיסיים וכן טופס יצירת קשר. [contact-form][contact-field label=\"שם\" type=\"name\" required=\"1\"/][contact-field label=\"אימייל\" type=\"email\" required=\"1\"/][contact-field label=\"אתר אינטרנט\" type=\"url\"/][contact-field label=\"תגובה\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "זהו תקציר עבור עמוד 'יצירת קשר'.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "בלוג", + "post_content": "זהו העמוד שבו משתמשים ימצאו את הבלוג באתר שלך", + "post_excerpt": "זהו תקציר עבור הבלוג שלך.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "פוסט ראשון", + "post_content": "הפוסט הזה הוא הראשון שלך. יש ללחוץ על הקישור 'עריכה' כדי לשנות או למחוק אותו או להתחיל פוסט חדש. אפשר לנצל את הפוסט הזה כדי להסביר לקוראים מדוע פתחת את הבלוג ומה בכוונתך לעשות אתו.", + "post_excerpt": "זהו התקציר של הפוסט הראשון שלך.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/id.json b/pique/inc/headstart/id.json new file mode 100644 index 000000000..415191994 --- /dev/null +++ b/pique/inc/headstart/id.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Jam Layanan & Info", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Sen–Rab: 07:00–21:00\n
Kam–Sab: 07:00–23:00\n
Ming: 08:00–21:00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Widget Teks", + "text": "Ini adalah widget teks. Widget Teks memungkinkan Anda menambahkan teks atau HTML ke bilah sisi. Anda dapat menggunakan widget teks untuk menampilkan teks, tautan, gambar, HTML, atau perpaduan semua hal itu. Sunting semuanya di bagian Widget dari Customizer.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Tentang kami", + "text": "Pique adalah tema pengguliran satu halaman yang dirancang untuk menampilkan bisnis Anda dari sisi terbaiknya. Ada tiga area widget opsional di bagian footer tempat Anda dapat memajang konten apa pun yang disukai. Ini adalah tempat yang sempurna untuk menambahkan informasi tambahan seperti tautan sosial, jam operasional, atau informasi kontak.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Widget Teks", + "text": "Ini adalah widget teks. Widget Teks memungkinkan Anda menambahkan teks atau HTML ke bilah sisi. Anda dapat menggunakan widget teks untuk menampilkan teks, tautan, gambar, HTML, atau perpaduan semua hal itu. Sunting semuanya di bagian Widget dari Customizer.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Widget Teks", + "text": "Ini adalah widget teks. Widget Teks memungkinkan Anda menambahkan teks atau HTML ke bilah sisi. Anda dapat menggunakan widget teks untuk menampilkan teks, tautan, gambar, HTML, atau perpaduan semua hal itu. Sunting semuanya di bagian Widget dari Customizer.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Beranda", + "post_content": "Selamat datang di situs baru Anda! Anda dapat menyunting halaman ini dengan mengeklik link Sunting. Untuk informasi selengkapnya tentang kustomisasi situs, lihat http://learn.wordpress.com/", + "post_excerpt": "Ini adalah kutipan halaman beranda", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Tentang", + "post_content": "Ini adalah contoh halaman tentang. Tidak seperti pos, halaman lebih cocok untuk konten tanpa batas waktu yang Anda inginkan untuk dapat diakses dengan mudah, seperti informasi Tentang atau Kontak. Klik tautan Sunting untuk melakukan perubahan pada halaman ini atau tambahkan halaman lain.", + "post_excerpt": "Ini hanya kutipan singkat untuk halaman tentang.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Kontak", + "post_content": "Ini adalah halaman kontak yang berisi informasi kontak dasar dan formulir kontak. [contact-form][contact-field label=\"Nama\" type=\"name\" required=\"1\"/][contact-field label=\"Email\" type=\"email\" required=\"1\"/][contact-field label=\"Situs web\" type=\"url\"/][contact-field label=\"Komentar\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Ini hanya kutipan singkat untuk halaman kontak.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Ini adalah halaman tempat pengguna akan menemukan blog situs Anda", + "post_excerpt": "Ini hanya kutipan singkat tentang blog Anda.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Pos blog pertama", + "post_content": "Ini adalah pos pertama Anda. Klik tautan Sunting untuk mengubah atau menghapusnya, atau mulai pos baru. Jika ingin, Anda dapat menggunakan pos ini untuk menjelaskan kepada pembaca mengenai alasan Anda memulai blog ini dan rencana Anda dengan blog ini.", + "post_excerpt": "Ini adalah kutipan pos pertama Anda.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/it.json b/pique/inc/headstart/it.json new file mode 100644 index 000000000..be902e343 --- /dev/null +++ b/pique/inc/headstart/it.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Orario e informazioni", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Lun-Mer: 7:00-21:00\n
Gio-Sab: 7:00-23:00\n
Dom: 8:00-21:00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Widget di testo", + "text": "Questo è un widget di testo. Il widget di testo ti consente di aggiungere testo o elementi HTML alla barra laterale. Puoi usare un widget di testo per visualizzare testo, link, immagini, elementi HTML o una combinazioni di tutti questi. Modificali nella sezione Widget dell'utilità di personalizzazione.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Su di noi", + "text": "Pique è un tema a scorrimento su una pagina progettato per mostrare al meglio la tua azienda. Sono disponibili tre aree widget opzionali a piè di pagina dove puoi inserire qualsiasi contenuto desiderato. È il luogo ideale per aggiungere ulteriori informazioni come link social, orari lavorativi o informazioni di contatto.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Widget di testo", + "text": "Questo è un widget di testo. Il widget di testo ti consente di aggiungere testo o elementi HTML alla barra laterale. Puoi usare un widget di testo per visualizzare testo, link, immagini, elementi HTML o una combinazioni di tutti questi. Modificali nella sezione Widget dell'utilità di personalizzazione.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Widget di testo", + "text": "Questo è un widget di testo. Il widget di testo ti consente di aggiungere testo o elementi HTML alla barra laterale. Puoi usare un widget di testo per visualizzare testo, link, immagini, elementi HTML o una combinazioni di tutti questi. Modificali nella sezione Widget dell'utilità di personalizzazione.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Home", + "post_content": "Benvenuto nel tuo nuovo sito! Puoi modificare questa pagina facendo clic sul link Modifica. Per ulteriori informazioni sulla personalizzazione del sito consulta http://learn.wordpress.com/", + "post_excerpt": "Questo è l'estratto della home page", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Informazioni", + "post_content": "Questo è l'esempio di una pagina di informazioni. A differenza degli articoli, le pagine sono più indicate per i contenuti senza data che vuoi siano facilmente accessibili, come le pagine di informazioni o dei contatti. Fai clic sul link Modifica per modificare questa pagina oppure aggiungi un'altra pagina.", + "post_excerpt": "Questo è solo un piccolo estratto per la pagina di informazioni.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Contatti", + "post_content": "Questa è una pagina di contatto con alcune informazioni di contatto di base e un modulo di contatto. [contact-form][contact-field label=\"Nome\" type=\"name\" required=\"1\"/][contact-field label=\"E-mail\" type=\"email\" required=\"1\"/][contact-field label=\"Sito web\" type=\"url\"/][contact-field label=\"Commento\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Questo è solo un piccolo estratto per la pagina dei contatti.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Questa è la pagina in cui gli utenti troveranno il blog del tuo sito.", + "post_excerpt": "Questo è solo un breve estratto sul tuo blog.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Primo articolo del blog", + "post_content": "Questo è il tuo primo articolo. Fai clic sul link Modifica per modificarlo o eliminarlo oppure inizia un nuovo articolo. Se desideri, usa questo articolo per dire ai lettori perché hai iniziato questo blog e cosa intendi farne.", + "post_excerpt": "Questo è l'estratto per il tuo primo articolo.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/ja.json b/pique/inc/headstart/ja.json new file mode 100644 index 000000000..aa74011cc --- /dev/null +++ b/pique/inc/headstart/ja.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "営業時間・情報", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "月~水:午前7時~午後9時\n
木~土:午前7時~午後11時\n
日:午前8時~午後9時", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "テキストウィジェット", + "text": "これはテキストウィジェットです。テキストウィジェットにより、テキストや HTML をサイドバーに追加できます。テキストウィジェットを使って、テキスト、リンク、画像、HTML、またはこれらの組み合わせを表示できます。これらは、カスタマイザーのウィジェットセクションで編集します。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "会社紹介", + "text": "Pique はスクロールして見ることのできる1ページのテーマで、会社紹介のためにデザインされています。フッターにはオプションの3つのウィジェットエリアがあり、お好きなコンテンツを追加できます。ソーシャルリンク、営業時間、連絡先などの情報を掲載するのに最適です。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "テキストウィジェット", + "text": "これはテキストウィジェットです。テキストウィジェットにより、テキストや HTML をサイドバーに追加できます。テキストウィジェットを使って、テキスト、リンク、画像、HTML、またはこれらの組み合わせを表示できます。これらは、カスタマイザーのウィジェットセクションで編集します。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "テキストウィジェット", + "text": "これはテキストウィジェットです。テキストウィジェットにより、テキストや HTML をサイドバーに追加できます。テキストウィジェットを使って、テキスト、リンク、画像、HTML、またはこれらの組み合わせを表示できます。これらは、カスタマイザーのウィジェットセクションで編集します。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "ホーム", + "post_content": "新しいサイトへようこそ !「編集」リンクをクリックすると、このページを編集できます。サイトのカスタマイズに関する詳細は、http://learn.wordpress.com/ をご確認ください。", + "post_excerpt": "これはホームページの抜粋です", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "このサイトについて", + "post_content": "これは、「このサイトについて」ページのサンプルです。投稿とは違い、ページは時系列に関係なく簡単にアクセスできるようにしたいコンテンツに向いています。たとえば「このサイトについて」や「お問い合わせ」などです。編集リンクをクリックしてこのページに変更を加えるか、新しいページを作成してみましょう。", + "post_excerpt": "これは、「このサイトについて」ページの抜粋です。", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "お問い合わせ", + "post_content": "これは、「お問い合わせ」ページです。このページには、基本的な連絡先情報とお問い合わせフォームがあります。[contact-form][contact-field label=\"名前\" type=\"name\" required=\"1\"/][contact-field label=\"メール\" type=\"email\" required=\"1\"/][contact-field label=\"サイト\" type=\"url\"/][contact-field label=\"コメント\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "これは、「お問い合わせ」ページの抜粋です。", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "ブログ", + "post_content": "これはユーザーがサイトのブログを見つけるページです", + "post_excerpt": "これはブログの短い抜粋です。", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "最初のブログ投稿", + "post_content": "これは最初の投稿です。編集リンクをクリックして内容の変更や削除を行うか、新しい投稿を追加しましょう。この投稿内で、なぜブログを始めたのか、どんなことについてブログを書いていくのか、といったことを読者に伝えるのもよいでしょう。", + "post_excerpt": "これは、最初の投稿の抜粋です。", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/ko.json b/pique/inc/headstart/ko.json new file mode 100644 index 000000000..8f8f6f835 --- /dev/null +++ b/pique/inc/headstart/ko.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "영업시간 및 정보", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "월~수: 오전 7시~오후 9시\n
목~토: 오전 7시~오후 11시\n
일: 오전 8시~오후 9시", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "텍스트 위젯", + "text": "텍스트 위젯입니다. 텍스트 위젯을 사용하여 텍스트나 HTML을 사이드바에 추가할 수 있습니다. 텍스트 위젯을 사용하여 텍스트, 링크, 이미지, HTML 또는 이들의 조합을 표시할 수 있습니다. 사용자 정의 기능의 위젯 섹션에서 이러한 항목을 편집해 보세요.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "소개", + "text": "Pique는 비즈니스를 가장 잘 보여줄 수 있도록 구성된 1페이지 스크롤 방식 테마입니다. 푸터에 있는 세 가지 옵션 위젯 영역에 좋아하는 콘텐츠를 추가할 수 있습니다. 소셜 링크, 영업시간, 연락처 정보와 같은 추가 정보를 표시하기 매우 좋습니다.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "텍스트 위젯", + "text": "텍스트 위젯입니다. 텍스트 위젯을 사용하여 텍스트나 HTML을 사이드바에 추가할 수 있습니다. 텍스트 위젯을 사용하여 텍스트, 링크, 이미지, HTML 또는 이들의 조합을 표시할 수 있습니다. 사용자 정의 기능의 위젯 섹션에서 이러한 항목을 편집해 보세요.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "텍스트 위젯", + "text": "텍스트 위젯입니다. 텍스트 위젯을 사용하여 텍스트나 HTML을 사이드바에 추가할 수 있습니다. 텍스트 위젯을 사용하여 텍스트, 링크, 이미지, HTML 또는 이들의 조합을 표시할 수 있습니다. 사용자 정의 기능의 위젯 섹션에서 이러한 항목을 편집해 보세요.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "홈", + "post_content": "새로운 사이트를 시작합니다! 편집 링크를 클릭하여 이 페이지를 편집할 수 있습니다. 사이트를 사용자 지정하는 방법에 대한 자세한 내용은 http://learn.wordpress.com/을 참조하십시오.", + "post_excerpt": "홈 페이지 요약문입니다.", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "정보", + "post_content": "이 페이지는 정보 페이지의 예입니다. 글과 달리 페이지는 내 정보 또는 연락처 정보처럼 쉽게 액세스하고 자주 수정하지 않는 콘텐츠에 더 적합합니다. 편집 링크를 클릭해 이 페이지를 수정하거나 다른 페이지를 추가하세요.", + "post_excerpt": "이 내용은 정보 페이지의 간략한 요약문입니다.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "문의", + "post_content": "이 페이지는 몇 가지 기본 연락처 정보와 문의 양식이 포함되어 있는 연락처 페이지입니다. [contact-form][contact-field label=\"이름\" type=\"name\" required=\"1\"/][contact-field label=\"이메일\" type=\"email\" required=\"1\"/][contact-field label=\"웹사이트\" type=\"url\"/][contact-field label=\"댓글\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "이 내용은 연락처 페이지의 간략한 요약문입니다.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "블로그", + "post_content": "사용자가 사이트의 블로그를 찾을 페이지입니다.", + "post_excerpt": "블로그에 대한 간략한 요약문입니다.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "첫 번째 블로그 글", + "post_content": "회원님의 첫 번째 글입니다. 편집 링크를 클릭하여 편집 또는 삭제하거나 새 글을 작성하세요. 원하는 경우 이 글을 사용하여 독자들에게 이 블로그를 시작한 이유와 어떻게 활용할 것인지를 알리세요.", + "post_excerpt": "회원님의 첫 번째 글을 요약한 것입니다.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/nl.json b/pique/inc/headstart/nl.json new file mode 100644 index 000000000..2b011fc76 --- /dev/null +++ b/pique/inc/headstart/nl.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Openingstijden & informatie", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Ma – wo: 07.00 – 21.00\n
Do – za: 07.00 – 23.00\n
Zo: 08.00 – 21.00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Tekstwidget", + "text": "Dit is een tekstwidget. Met de tekstwidget kun je tekst of HTML toevoegen aan je sidebar. Je kunt een tekstwidget gebruiken om tekst, links, afbeeldingen, HTML of een combinatie van deze weer te laten geven. Bewerk ze in de sectie Widget van het Aanpassingsmenu.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Over ons", + "text": "Pique is een scroll-thema dat uit één pagina bestaat en is ontwikkeld om je bedrijf in het beste daglicht te stellen. In de voettekst zijn drie gebieden voor optionele widgets waar je welke inhoud dan ook kunt plaatsen. Dit is de perfecte plaats om extra informatie te plaatsen, zoals links naar social media, openingstijden of contactgegevens.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Tekstwidget", + "text": "Dit is een tekstwidget. Met de tekstwidget kun je tekst of HTML toevoegen aan je sidebar. Je kunt een tekstwidget gebruiken om tekst, links, afbeeldingen, HTML of een combinatie van deze weer te laten geven. Bewerk ze in de sectie Widget van het Aanpassingsmenu.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Tekstwidget", + "text": "Dit is een tekstwidget. Met de tekstwidget kun je tekst of HTML toevoegen aan je sidebar. Je kunt een tekstwidget gebruiken om tekst, links, afbeeldingen, HTML of een combinatie van deze weer te laten geven. Bewerk ze in de sectie Widget van het Aanpassingsmenu.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Home", + "post_content": "Welkom bij je nieuwe site! Je kunt deze pagina bewerken door op de koppeling Bewerken te klikken. Voor meer informatie over het aanpassen van je site, ga je naar http://learn.wordpress.com/", + "post_excerpt": "Dit is de samenvatting van de startpagina", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Over", + "post_content": "Dit is een voorbeeld van de pagina Over. In tegenstelling tot berichten zijn pagina's beter geschikt voor meer tijdloze inhoud die je eenvoudig toegankelijk wilt maken, zoals de gegevens bij Over of bij Contact. Klik op de link Bewerken om wijzigingen door te voeren in deze pagina of voeg een nieuwe pagina toe.", + "post_excerpt": "Dit is slechts een samenvatting van de pagina Over.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Contact", + "post_content": "Dit is een contactpagina met enkele contactgegevens en een contactformulier. [contact-form][contact-field label=\"Naam\" type=\"name\" required=\"1\"/][contact-field label=\"E-mail\" type=\"email\" required=\"1\"/][contact-field label=\"Website\" type=\"url\"/][contact-field label=\"Reactie\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Dit is slechts een samenvatting van de pagina Contact.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Dit is de pagina waar gebruikers de blog op je site kunnen vinden", + "post_excerpt": "Dit is maar een korte samenvatting van je blog.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Eerste blogbericht", + "post_content": "Dit is je allereerste bericht. Klik op Bewerken om het aan te passen of te verwijderen, of maak een nieuw bericht aan. Als je wilt, kun je dit bericht gebruiken om lezers te vertellen waarom je deze blog bent begonnen en wat je ermee wilt doen.", + "post_excerpt": "Dit is de samenvatting van je allereerste bericht.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/pt-br.json b/pique/inc/headstart/pt-br.json new file mode 100644 index 000000000..f84acf037 --- /dev/null +++ b/pique/inc/headstart/pt-br.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Horários e informações", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Seg a quar: 7h – 21h\n
Qui a sáb: 7h – 23h\n
Dom: 8h – 21h", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Widget de texto", + "text": "Este é um widget de texto. O widget de texto permite adicionar texto ou HTML à barra lateral. Você pode usar um widget de texto para exibir texto, links, imagens, HTML ou uma combinação desses elementos. Edite os widgets na seção Widget do Personalizador.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Sobre nós", + "text": "Pique é um tema de rolagem em uma única página criado para mostrar o que seus negócios têm de melhor. Há três áreas opcionais para widgets no rodapé onde você pode colocar o conteúdo que quiser. É o lugar perfeito para incluir mais informações como links para redes sociais, horários de funcionamento ou dados de contato.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Widget de texto", + "text": "Este é um widget de texto. O widget de texto permite adicionar texto ou HTML à barra lateral. Você pode usar um widget de texto para exibir texto, links, imagens, HTML ou uma combinação desses elementos. Edite os widgets na seção Widget do Personalizador.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Widget de texto", + "text": "Este é um widget de texto. O widget de texto permite adicionar texto ou HTML à barra lateral. Você pode usar um widget de texto para exibir texto, links, imagens, HTML ou uma combinação desses elementos. Edite os widgets na seção Widget do Personalizador.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Página inicial", + "post_content": "Bem-vindo ao seu novo site! Você pode editar esta página ao clicar no link Editar. Para obter mais informações sobre como personalizar seu site, visite http://learn.wordpress.com/", + "post_excerpt": "Esse é o resumo da página inicial", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Sobre", + "post_content": "Este é um exemplo de uma página Sobre. Diferente de posts, as páginas são mais apropriadas para conteúdo que não depende de tempo e que deve estar facilmente disponível, como as informações nas páginas Sobre ou Contato. Clique no link Editar para fazer alterações nesta página ou adicione uma nova página.", + "post_excerpt": "Esse é apenas um pequeno resumo para a página Sobre.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Contato", + "post_content": "Esta é uma página Contato com algumas informações básicas de contato e um formulário de contato. [contact-form][contact-field label=\"Nome\" type=\"name\" required=\"1\"/][contact-field label=\"Email\" type=\"email\" required=\"1\"/][contact-field label=\"Site\" type=\"url\"/][contact-field label=\"Comentário\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Este é apenas um pequeno resumo da página Contato.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Essa é a página na qual os usuários encontrarão o blog do seu site", + "post_excerpt": "Esse é apenas um pequeno resumo sobre o seu blog.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Primeiro post do blog", + "post_content": "Este é seu primeiro post. Clique no link Editar para modificar ou excluir o post, ou então comece um novo. Se preferir, use esta publicação para informar aos leitores o motivo pelo qual você iniciou este blog e o que planeja fazer com ele.", + "post_excerpt": "Este é um resumo da sua primeira publicação.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/ru.json b/pique/inc/headstart/ru.json new file mode 100644 index 000000000..dde412edc --- /dev/null +++ b/pique/inc/headstart/ru.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Время работы и дополнительная информация", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 (8747) 094156", + "hours": "Пн. — ср.: 7:00–21:00\n
Чт. — сб.: 7:00–23:00\n
Вс.: 8:00–21:00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Текстовый виджет", + "text": "Это текстовый виджет. С помощью этого виджета можно добавлять текст или HTML-код на боковую панель. Используйте текстовый виджет для отображения текста, ссылок, изображений, HTML или их сочетаний. Чтобы изменить элемент, откройте раздел «Виджет» в конфигураторе.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "О компании", + "text": "Pique — это одностраничная тема с возможностью прокрутки для оптимального представления вашей компании. В подвале есть три дополнительные области для виджетов, в которых можно разместить любое содержимое. Сюда можно поместить дополнительную информацию: ссылки на профили в социальных сетях, часы работы или контактные данные.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Текстовый виджет", + "text": "Это текстовый виджет. С помощью этого виджета можно добавлять текст или HTML-код на боковую панель. Используйте текстовый виджет для отображения текста, ссылок, изображений, HTML или их сочетаний. Чтобы изменить элемент, откройте раздел «Виджет» в конфигураторе.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Текстовый виджет", + "text": "Это текстовый виджет. С помощью этого виджета можно добавлять текст или HTML-код на боковую панель. Используйте текстовый виджет для отображения текста, ссылок, изображений, HTML или их сочетаний. Чтобы изменить элемент, откройте раздел «Виджет» в конфигураторе.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Главная", + "post_content": "Добро пожаловать на ваш новый сайт! Чтобы отредактировать эту страницу, выберите элемент «Изменить». Дополнительную информацию о настройке сайта см. на странице http://learn.wordpress.com/.", + "post_excerpt": "Это цитата для главной страницы.", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "О нас", + "post_content": "Это пример страницы «О нас». Сведения о владельце сайта, контактные данные и прочую информацию, которая должна быть всегда и легко доступна, лучше размещать на отдельных страницах, а не в записях блога. Выберите элемент «Изменить», чтобы отредактировать эту страницу, или добавьте новую страницу.", + "post_excerpt": "Это небольшая цитата для страницы «О нас», содержащей информацию о владельце сайта.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Контакты", + "post_content": "На этой странице представлена основная контактная информация и контактная форма. [contact-form][contact-field label=\"Имя\" type=\"name\" required=\"1\"/][contact-field label=\"Адрес эл. почты\" type=\"email\" required=\"1\"/][contact-field label=\"Веб-сайт\" type=\"url\"/][contact-field label=\"Комментарий\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Это небольшая цитата для страницы «Контакты».", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Блог", + "post_content": "Это страница, на которой будет располагаться блог вашего сайта.", + "post_excerpt": "Это небольшая цитата о вашем блоге.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Первая запись в блоге", + "post_content": "Это ваша самая первая запись. Чтобы отредактировать или удалить её, нажмите кнопку «Изменить» или создайте новую запись. В этой записи можно рассказать читателям, почему вы завели блог и что планируете в нём публиковать.", + "post_excerpt": "Это цитата для вашей первой записи.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/sv.json b/pique/inc/headstart/sv.json new file mode 100644 index 000000000..38c0b9db7 --- /dev/null +++ b/pique/inc/headstart/sv.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Tid och info", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Mån–ons: 07:00–21:00\n
Tor–lör: 07:00–23:00\n
Sön: 08:00–21:00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Textwidget", + "text": "Det här är en textwidget. Det här är en textwidget som gör att du kan lägga till text eller HTML i din sidopanel. Du kan använda en textwidget för att visa text, länkar, bilder, HTML eller en kombination av dessa. Redigera dem i widgetavsnittet i Anpassa.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Om oss", + "text": "Pique är ett tema med en rullande sida, designat för att visa upp ditt företag i sin bästa dager. Det finns tre valfria widgetområden i sidfoten där du själv kan lägga det innehåll du önskar. En perfekt plats för placering av extrainformation som sociala länkar, öppettider eller kontaktuppgifter.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Textwidget", + "text": "Det här är en textwidget. Det här är en textwidget som gör att du kan lägga till text eller HTML i din sidopanel. Du kan använda en textwidget för att visa text, länkar, bilder, HTML eller en kombination av dessa. Redigera dem i widgetavsnittet i Anpassa.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Textwidget", + "text": "Det här är en textwidget. Det här är en textwidget som gör att du kan lägga till text eller HTML i din sidopanel. Du kan använda en textwidget för att visa text, länkar, bilder, HTML eller en kombination av dessa. Redigera dem i widgetavsnittet i Anpassa.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Hem", + "post_content": "Välkommen till din nya webbplats! Du kan ändra denna sida genom att klicka på länken Redigera. För mer information om anpassning av din webbplatse kan du kolla in http://learn.wordpress.com/", + "post_excerpt": "Det här är startsidans utdrag", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Om", + "post_content": "Det här är ett exempel på en \"om\"-sida. Till skillnad från inlägg är sidor bättre lämpade för mer tidlöst innehåll som du vill ha lättillgängligt, som Om eller Kontaktinformation. Klicka på Redigera-länken om du vill göra ändringar på sidan eller lägga till ytterligare en sida.", + "post_excerpt": "Det här är bara en kort utdrag för om-sidan .", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "Kontakta oss", + "post_content": "Det här är en kontaktsida med lite grundläggande kontaktinformation och ett kontaktformulär. [contact-form][contact-field label=\"Namn\" type=\"name\" required=\"1\"/][contact-field label=\"E-post\" type=\"email\" required=\"1\"/][contact-field label=\"Webbsida\" type=\"url\"/][contact-field label=\"Kommentar\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Det här är bara ett kort utdrag för kontaktsidan.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blogg", + "post_content": "Det här är den sida där användarna hittar din webbplats blogg", + "post_excerpt": "Det här är bara ett kort utdrag om din blogg.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "Första blogginlägget", + "post_content": "Det här är ditt allra första inlägg. Klicka på Redigera-länken om du vill ändra eller ta bort det eller skriv ett nytt inlägg. Om du vill kan du använda det här inlägget till att berätta för dina läsare om varför du startade din blogg och vad du tänker göra med den.", + "post_excerpt": "Det här är utdraget för ditt allra första inlägg.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/tr.json b/pique/inc/headstart/tr.json new file mode 100644 index 000000000..acf5c5c06 --- /dev/null +++ b/pique/inc/headstart/tr.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "Saatler ve Bilgi", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "Pzt-Çar: 07:00-21:00\n
Perş-Cts: 07:00-23:00\n
Paz: 08:00-21:00", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "Metin Pencere Öğesi", + "text": "Bu bir metin pencere öğesidir. Bu, kenar çubuğunuza metin veya HTML eklemenizi sağlayan bir metin pencere öğesidir. Metinleri, bağlantıları, görüntüleri HTML'i veya bunların bir birleşimini görüntülemek için bir metin pencere öğesi kullanabilirsiniz. Bunları Özelleştirici'nin Pencere Öğesi bölümünde düzenleyin.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "Hakkımızda", + "text": "Pique, işletmenizi en güzel haliyle göstermek üzere tasarlanmış tek sayfalık, kayan bir temadır. Alt bilgi alanında, istediğiniz içeriği yerleştirebileceğiniz isteğe bağlı üç pencere öğesi alanı vardır. Burası, sosyal bağlantılar, açılış saatleri veya iletişim bilgileri gibi ek bilgileri eklemek için mükemmel bir yerdir.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "Metin Pencere Öğesi", + "text": "Bu bir metin pencere öğesidir. Bu, kenar çubuğunuza metin veya HTML eklemenizi sağlayan bir metin pencere öğesidir. Metinleri, bağlantıları, görüntüleri HTML'i veya bunların bir birleşimini görüntülemek için bir metin pencere öğesi kullanabilirsiniz. Bunları Özelleştirici'nin Pencere Öğesi bölümünde düzenleyin.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "Metin Pencere Öğesi", + "text": "Bu bir metin pencere öğesidir. Bu, kenar çubuğunuza metin veya HTML eklemenizi sağlayan bir metin pencere öğesidir. Metinleri, bağlantıları, görüntüleri HTML'i veya bunların bir birleşimini görüntülemek için bir metin pencere öğesi kullanabilirsiniz. Bunları Özelleştirici'nin Pencere Öğesi bölümünde düzenleyin.", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "Giriş", + "post_content": "Yeni sitenize hoş geldiniz! Düzenle bağlantısına tıklayarak bu sayfayı düzenleyebilirsiniz. Sitenizi özelleştirme hakkında daha fazla bilgi için http://learn.wordpress.com/ adresini kontrol edin", + "post_excerpt": "Bu, ana sayfanın alıntısıdır", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "Hakkında", + "post_content": "Bu bir hakkında sayfası örneğidir. Gönderilerin aksine sayfalar, Hakkında ya da İletişim gibi kolayca ulaşılabilir, zamandan bağımsız içerikleriniz için daha uygundur. Bu sayfada değişiklik yapmak için Düzenle'ye tıklayın veya başka bir sayfa ekleyin.", + "post_excerpt": "Bu yalnızca hakkında sayfası için kısa bir alıntıdır.", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "İletişim", + "post_content": "Bu, bazı temel bilgilerin ve bir iletişim formunun yer aldığı bir iletişim sayfasıdır. [contact-form][contact-field label=\"Ad\" type=\"name\" required=\"1\"/][contact-field label=\"E-posta\" type=\"email\" required=\"1\"/][contact-field label=\"Web sitesi\" type=\"url\"/][contact-field label=\"Yorum\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "Bu yalnızca iletişim sayfası için kısa bir alıntıdır.", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "Blog", + "post_content": "Bu, kullanıcıların sitenizin blogunu bulacağı sayfadır", + "post_excerpt": "Bu yalnızca blogunuz hakkında kısa bir alıntıdır.", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "İlk blog gönderisi", + "post_content": "Bu ilk gönderiniz. Değiştirmek veya silmek için Düzenle'ye tıklayın veya yeni bir gönderi başlatın. İsterseniz, okuyuculara bu bloga neden başladığınızı ve ne yapmayı planladığınızı söylemek için bu gönderiyi kullanın.", + "post_excerpt": "Bu ilk gönderinizin kısa bir alıntısıdır.", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/zh-cn.json b/pique/inc/headstart/zh-cn.json new file mode 100644 index 000000000..3ea7dd6c4 --- /dev/null +++ b/pique/inc/headstart/zh-cn.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "时间与信息", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "周一至周三:上午 7 点至晚上 9 点\n
周四至周六:上午 7 时至晚上 11 时\n
周日:上午 8 点至晚上 9 点", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "文本小组件", + "text": "这是文本小组件。文本小组件可让您向边栏添加文本或 HTML。您可以使用文本小组件显示文本、链接、图片、HTML 或这些内容的组合,还可以在定制器的“小组件”部分编辑这些内容。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "关于我们", + "text": "Pique 是一种单页滚动主题,旨在以最佳方式展示您的企业。注脚处有三个可选的小组件区域,您可以在其中添加您喜欢的任意内容。这是添加一些其他信息的理想场所,如社交链接、营业时间或联系信息。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "文本小组件", + "text": "这是文本小组件。文本小组件可让您向边栏添加文本或 HTML。您可以使用文本小组件显示文本、链接、图片、HTML 或这些内容的组合,还可以在定制器的“小组件”部分编辑这些内容。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "文本小组件", + "text": "这是文本小组件。文本小组件可让您向边栏添加文本或 HTML。您可以使用文本小组件显示文本、链接、图片、HTML 或这些内容的组合,还可以在定制器的“小组件”部分编辑这些内容。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "首页", + "post_content": "欢迎使用您的新站点!您可以点击“编辑”链接编辑此页面。如需详细了解如何自定义您的站点,请访问 http://learn.wordpress.com/", + "post_excerpt": "这是首页的摘录", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "关于", + "post_content": "这是“关于”页面的示例。与文章不同,页面更适合显示您希望让人轻松查看并且时限性较低的内容(比如“关于”或“联系信息”)。点击“编辑”链接修改此页面或添加另一页面。", + "post_excerpt": "这只是“关于”页面的一小段摘录。", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "联系信息", + "post_content": "这是“联系信息”页面,其中包括一些基本联系信息和联系表单。[contact-form][contact-field label=\"姓名\" type=\"name\" required=\"1\"/][contact-field label=\"电子邮件\" type=\"email\" required=\"1\"/][contact-field label=\"网站\" type=\"url\"/][contact-field label=\"评论\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "这只是“联系信息” 页面的一小部分。", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "博客", + "post_content": "用户可以在此页面上找到您站点的博客", + "post_excerpt": "这只是您的博客的一小段摘录。", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "第一篇博文", + "post_content": "这是您的第一篇文章。点击“编辑”链接修改或删除该文章,或者开始撰写新文章。如果您愿意,可以通过这篇文章告诉读者您创建此博客的原因以及您打算使用它做些什么。", + "post_excerpt": "这是您的第一篇文章的摘录。", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/headstart/zh-tw.json b/pique/inc/headstart/zh-tw.json new file mode 100644 index 000000000..8931f19ec --- /dev/null +++ b/pique/inc/headstart/zh-tw.json @@ -0,0 +1,176 @@ +{ + "settings": { + "options": { + "show_on_front": "page" + }, + "theme_mods": { + "0": false, + "header_textcolor": "#FCFBF9", + "nav_menu_locations": { + "primary": "primary", + "secondary": "primary" + }, + "pique_panel1": "_hs_about_page", + "pique_panel1_background": "#211c17", + "pique_panel1_opacity": "0.5", + "pique_panel2": "_hs_contact_page", + "pique_panel2_background": "#1b3a47", + "pique_panel2_opacity": "0.25" + }, + "headstart": { + "mapped_id_options": [], + "mapped_id_theme_mods": [ + "pique_panel1", + "pique_panel2" + ] + } + }, + "widgets": [ + { + "id": "search-2", + "id_base": "search", + "settings": { + "title": "" + }, + "sidebar": "sidebar-1", + "position": 0 + }, + { + "id": "widget_contact_info-4", + "id_base": "widget_contact_info", + "settings": { + "title": "營業時間和資訊", + "address": "Jamaica House\n
82–84 Vauxhall Street\n
Sutton Harbour, Plymouth
 PL4 0EX", + "phone": "+44 8747 094156", + "hours": "週一至週三:上午 7 點至下午 9 點\n
週四至週六:上午 7 點至下午 11 點\n
週日:上午 8 點至下午 9 點", + "showmap": 1 + }, + "sidebar": "sidebar-1", + "position": 1 + }, + { + "id": "text-2", + "id_base": "text", + "settings": { + "title": "文字小工具", + "text": "這是文字小工具。「文字小工具」可讓你在側邊欄新增文字或 HTML。你可以利用文字小工具來顯示文字、連結、圖片、HTML 或上述多項元素。前往自訂工具的「小工具」區段即可加以編輯。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-1", + "position": 2 + }, + { + "id": "text-3", + "id_base": "text", + "settings": { + "title": "關於我們", + "text": "Pique 是單頁滾動式佈景主題,旨在展示你企業的最佳一面。你可以在頁尾的三個選用小工具區域中加入任何內容。這裡最適合新增社群連結、營業時間或聯絡資訊等額外資訊。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-2", + "position": 0 + }, + { + "id": "text-4", + "id_base": "text", + "settings": { + "title": "文字小工具", + "text": "這是文字小工具。「文字小工具」可讓你在側邊欄新增文字或 HTML。你可以利用文字小工具來顯示文字、連結、圖片、HTML 或上述多項元素。前往自訂工具的「小工具」區段即可加以編輯。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-3", + "position": 0 + }, + { + "id": "text-5", + "id_base": "text", + "settings": { + "title": "文字小工具", + "text": "這是文字小工具。「文字小工具」可讓你在側邊欄新增文字或 HTML。你可以利用文字小工具來顯示文字、連結、圖片、HTML 或上述多項元素。前往自訂工具的「小工具」區段即可加以編輯。", + "filter": false, + "syntaxhighlighter_encoded": true + }, + "sidebar": "sidebar-4", + "position": 0 + } + ], + "content": [ + { + "post_title": "首頁", + "post_content": "歡迎來到你的全新網站!你可以按一下「編輯」連結修改這個頁面。如需自訂網站的更多資訊,請造訪 http://learn.wordpress.com/", + "post_excerpt": "這是首頁的摘要", + "post_status": "publish", + "menu_order": 0, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_front_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 60, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download3.jpg" + }, + { + "post_title": "簡介", + "post_content": "這是「簡介」網頁的範例。網頁與文章不同,有些不會隨時間改變的內容,例如「簡介」或「聯絡資訊」,都更適合放在網頁中,以方便訪客輕鬆存取。按一下「編輯」連結,以變更此網頁或新增其他網頁。", + "post_excerpt": "這只是「關於」 頁面的簡短摘要。", + "post_status": "publish", + "menu_order": 1, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_about_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 61, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/download16.jpg" + }, + { + "post_title": "聯絡", + "post_content": "此為提供基本聯絡資訊和聯絡表單的聯絡網頁。[contact-form][contact-field label=\"姓名\" type=\"name\" required=\"1\"/][contact-field label=\"電子郵件\" type=\"email\" required=\"1\"/][contact-field label=\"網站\" type=\"url\"/][contact-field label=\"留言\" type=\"textarea\" required=\"1\"/][/contact-form]", + "post_excerpt": "這只是聯絡 頁面的簡短摘要。", + "post_status": "publish", + "menu_order": 2, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_contact_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 62, + "page_template": "page-templates/template-grid.php", + "attachment_url": "https://headstartdata.files.wordpress.com/2016/08/coffee-625684.jpg" + }, + { + "post_title": "網誌", + "post_content": "使用者可在此網頁找到你的網誌", + "post_excerpt": "此範例只是「關於」頁面的部分節錄內容。", + "post_status": "publish", + "menu_order": 3, + "comment_status": "closed", + "ping_status": "closed", + "post_type": "page", + "hs_custom_meta": "_hs_blog_page", + "hs_sharing": 1, + "hs_like_status": 1, + "hs_old_id": 63 + }, + { + "post_title": "第一篇網誌文章", + "post_content": "這是你發表的第一篇文章。按一下「編輯」連結即可修改或刪除文章,或是開始撰寫新文章。你可以利用這篇文章告訴讀者這個網誌的建立原因,以及網誌的未來計畫。", + "post_excerpt": "這是你第一篇文章的文章摘要。", + "post_status": "publish", + "comment_status": "open", + "ping_status": "open", + "post_type": "post", + "hs_custom_meta": "_hs_first_post", + "hs_sharing": 1, + "hs_like_status": 0, + "attachment_url": "https://piquedemo.files.wordpress.com/2015/11/downloa8d.jpg" + } + ], + "menus": {} +} \ No newline at end of file diff --git a/pique/inc/jetpack-fonts.php b/pique/inc/jetpack-fonts.php new file mode 100644 index 000000000..496d60f2f --- /dev/null +++ b/pique/inc/jetpack-fonts.php @@ -0,0 +1,593 @@ + 'font-family', 'value' => 'sans-serif' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'b, + strong', + array( + array( 'property' => 'font-weight', 'value' => 'bold' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'dfn', + array( + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + 'h1', + array( + array( 'property' => 'font-size', 'value' => '2em' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'small', + array( + array( 'property' => 'font-size', 'value' => '80%' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'sub, + sup', + array( + array( 'property' => 'font-size', 'value' => '75%' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.archive .read-more a, + .blog .read-more a, + .search-results .read-more a, + button, + input, + optgroup, + select, + textarea', + array( + array( 'property' => 'font', 'value' => 'inherit' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'optgroup', + array( + array( 'property' => 'font-weight', 'value' => 'bold' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.archive .read-more a, + .blog .read-more a, + .search-results .read-more a, + body, + button, + input, + select, + textarea', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-size', 'value' => '18px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + '.site-branding .site-title, + .widget-title, + h1, + h2, + h3, + h4, + h5, + h6', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-weight', 'value' => '400' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.pique-template-testimonials .pique-testimonials article .entry-content cite, + blockquote cite', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-weight', 'value' => '400' ), + array( 'property' => 'font-size', 'value' => '12px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + 'h1', + array( + array( 'property' => 'font-size', 'value' => '38px' ), + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + 'h2', + array( + array( 'property' => 'font-size', 'value' => '26px' ), + array( 'property' => 'font-weight', 'value' => '600' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + '.site-branding .site-title, + .widget-title, + h3', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-weight', 'value' => '700' ), + array( 'property' => 'font-size', 'value' => '1.2em' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + 'h4', + array( + array( 'property' => 'font-size', 'value' => '1.999em' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + 'h5', + array( + array( 'property' => 'font-size', 'value' => '1.414em' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + 'h6', + array( + array( 'property' => 'font-size', 'value' => '1em' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'cite, + dfn, + em, + i', + array( + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.pique-template-testimonials .pique-testimonials article .entry-content, + blockquote', + array( + array( 'property' => 'font-size', 'value' => '24px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.pique-template-testimonials .pique-testimonials article .entry-content cite, + blockquote cite', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-weight', 'value' => '700' ), + array( 'property' => 'font-size', 'value' => '12px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'big', + array( + array( 'property' => 'font-size', 'value' => '125%' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'dt', + array( + array( 'property' => 'font-weight', 'value' => 'bold' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'label', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-size', 'value' => '0.8em' ), + array( 'property' => 'font-weight', 'value' => '500' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'input[type="email"], + input[type="password"], + input[type="search"], + input[type="text"], + input[type="url"], + textarea', + array( + array( 'property' => 'font-size', 'value' => '16px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + 'input[type="email"], + input[type="password"], + input[type="search"], + input[type="text"], + input[type="url"]', + array( + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.archive .read-more a, + .blog .read-more a, + .button, + .search-results .read-more a, + button, + input[type="button"], + input[type="reset"], + input[type="submit"]', + array( + array( 'property' => 'font-size', 'value' => '15px' ), + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-weight', 'value' => 'bold' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.pique-template-recent-posts .read-more a, + .pique-panel .edit-link a', + array( + array( 'property' => 'font-size', 'value' => '13px' ), + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-weight', 'value' => 'normal' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'headings', + '.site-branding .site-title', + array( + array( 'property' => 'font-style', 'value' => 'normal' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.site-branding .site-description', + array( + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.main-navigation, + .woocommerce-breadcrumb, + .woocommerce-result-count, + .woocommerce-ordering .orderby, + .product .onsale, + ul.products li.product .added_to_cart, + .woocommerce-pagination, + .single-product div.product .related h2, + .woocommerce-checkout-payment ul .payment_box p, + .woocommerce-order-details h2, + .woocommerce-customer-details h2, + .woocommerce-tabs .panel h2:first-of-type, + .woocommerce-tabs ul.tabs li a, + .woocommerce-MyAccount-navigation a, + .woocommerce.widget_layered_nav_filters .amount, + .woocommerce-breadcrumb, + .woocommerce-result-count, + .woocommerce-ordering .orderby', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.main-navigation a', + array( + array( 'property' => 'font-size', 'value' => '13px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.comment-navigation .nav-next a, + .comment-navigation .nav-previous a, + .post-navigation .nav-next a, + .post-navigation .nav-previous a, + .posts-navigation .nav-next a, + .posts-navigation .nav-previous a', + array( + array( 'property' => 'font-size', 'value' => '18px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.comment-navigation .nav-next a span, + .comment-navigation .nav-previous a span, + .post-navigation .nav-next a span, + .post-navigation .nav-previous a span, + .posts-navigation .nav-next a span, + .posts-navigation .nav-previous a span', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-style', 'value' => 'normal' ), + array( 'property' => 'font-weight', 'value' => 'bold' ), + array( 'property' => 'font-size', 'value' => '14px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget select', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-size', 'value' => '15px' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.pique-template-testimonials .pique-testimonials article .entry-content .widget cite:not(.widget-title), + .site-branding .widget .site-title:not(.widget-title), + .widget .pique-template-testimonials .pique-testimonials article .entry-content cite:not(.widget-title), + .widget .site-branding .site-title:not(.widget-title), + .widget .widget-title:not(.widget-title), + .widget blockquote cite:not(.widget-title), + .widget h2:not(.widget-title), + .widget h3:not(.widget-title), + .widget h4:not(.widget-title), + blockquote .widget cite:not(.widget-title)', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-size', 'value' => '29px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + array( 'property' => 'font-weight', 'value' => 'normal' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget_recent_comments li', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.overlay', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-size', 'value' => '14px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget_recent_comments li a', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-style', 'value' => 'normal' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget_rss .rssSummary', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget_rss cite', + array( + array( 'property' => 'font-style', 'value' => 'normal' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.textwidget', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + array( 'property' => 'font-size', 'value' => '1.2em' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget_tag_cloud .tagcloud', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.widget_calendar caption', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.pique-sidebar .widget-area', + array( + array( 'property' => 'font-size', 'value' => '15px' ), + ), + array( + '(max-width: 767px)', + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.comment-metadata, + .entry-meta, + .reply, + .widget_rss .rss-date, + .widget_rss cite', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-weight', 'value' => 'bold' ), + array( 'property' => 'font-size', 'value' => '14px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.page-links', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + array( 'property' => 'font-size', 'value' => '14px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.cat-links, + .tags-links', + array( + array( 'property' => 'font-family', 'value' => 'Lora, Georgia, serif' ), + array( 'property' => 'font-size', 'value' => '14px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '#commentform .comment-notes, + #commentform .logged-in-as', + array( + array( 'property' => 'font-size', 'value' => '16px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '#form-allowed-tags', + array( + array( 'property' => 'font-size', 'value' => '14px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.comment-author .fn', + array( + array( 'property' => 'font-size', 'value' => '19px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + array( 'property' => 'font-weight', 'value' => 'normal' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.comment-content', + array( + array( 'property' => 'font-size', 'value' => '0.9em' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.pingback, + .trackback', + array( + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '#infinite-footer', + array( + array( 'property' => 'font-family', 'value' => 'Karla, Arial, sans-serif' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '#infinite-footer #infinity-blog-title', + array( + array( 'property' => 'font-weight', 'value' => 'normal' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.archive .read-more .infinite-scroll #infinite-handle a, + .blog .read-more .infinite-scroll #infinite-handle a, + .infinite-scroll #infinite-handle .archive .read-more a, + .infinite-scroll #infinite-handle .blog .read-more a, + .infinite-scroll #infinite-handle .search-results .read-more a, + .infinite-scroll #infinite-handle button, + .search-results .read-more .infinite-scroll #infinite-handle a', + array( + array( 'property' => 'font-size', 'value' => '19px' ), + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.archive .read-more .infinite-scroll #infinite-handle a:hover, + .blog .read-more .infinite-scroll #infinite-handle a:hover, + .infinite-scroll #infinite-handle .archive .read-more a:hover, + .infinite-scroll #infinite-handle .blog .read-more a:hover, + .infinite-scroll #infinite-handle .search-results .read-more a:hover, + .infinite-scroll #infinite-handle button:hover, + .search-results .read-more .infinite-scroll #infinite-handle a:hover', + array( + array( 'property' => 'font-size', 'value' => '19px' ), + ) + ); + + TypekitTheme::add_font_category_rule( $category_rules, 'body-text', + '.tiled-gallery-caption, + .wp-caption-text', + array( + array( 'property' => 'font-style', 'value' => 'italic' ), + ) + ); + + return $category_rules; +} ); diff --git a/pique/inc/jetpack.php b/pique/inc/jetpack.php new file mode 100644 index 000000000..61f681fd7 --- /dev/null +++ b/pique/inc/jetpack.php @@ -0,0 +1,114 @@ + 'main', + 'wrapper' => false, + 'render' => 'pique_infinite_scroll_render', + 'footer' => 'tertiary', + 'footer_widgets' => array( 'sidebar-2', 'sidebar-3', 'sidebar-4' ), + 'posts_per_page' => 9 + ) ); + + // Add theme support for Responsive Videos. + add_theme_support( 'jetpack-responsive-videos' ); + + // Add theme support for Site Logo. + add_image_size( 'pique-logo', 2000, 200 ); + add_theme_support( 'site-logo', array( 'size' => 'pique-logo' ) ); + + // Add theme support for Testimonial CPT. + add_theme_support( 'jetpack-testimonial' ); + + // Add theme support for Content Options. + add_theme_support( 'jetpack-content-options', array( + 'blog-display' => array( + 'content', + 'excerpt', + ), + 'post-details' => array( + 'stylesheet' => 'pique-style', + 'date' => '.posted-on', + 'categories' => '.cat-links', + 'tags' => '.tags-links', + 'author' => '.byline', + ), + 'featured-images' => array( + 'archive' => true, + 'fallback' => true, + 'fallback-default' => false, + ), + ) ); +} // end function pique_jetpack_setup +add_action( 'after_setup_theme', 'pique_jetpack_setup' ); + +/** + * Custom render function for Infinite Scroll. + */ +function pique_infinite_scroll_render() { + if ( class_exists( 'WooCommerce' ) && ( is_shop() || is_product_taxonomy() || is_product_category() || is_product_tag() ) ) { + pique_woocommerce_product_columns_wrapper(); + woocommerce_product_loop_start(); + } + while ( have_posts() ) { + the_post(); + if ( is_search() ) : + get_template_part( 'template-parts/content', 'search' ); + elseif ( class_exists( 'WooCommerce' ) && ( is_shop() || is_product_taxonomy() || is_product_category() || is_product_tag() ) ) : + wc_get_template_part( 'content', 'product' ); + else : + get_template_part( 'components/content', get_post_format() ); + endif; + } + if ( class_exists( 'WooCommerce' ) && ( is_shop() || is_product_taxonomy() || is_product_category() || is_product_tag() ) ) { + woocommerce_product_loop_end(); + pique_woocommerce_product_columns_wrapper_close(); + } +} // end function pique_infinite_scroll_render + +/** + * Return early if Site Logo is not available. + * + * @since Pique 1.0 + */ +function pique_the_site_logo() { + if ( ! function_exists( 'jetpack_the_site_logo' ) ) { + return; + } else { + jetpack_the_site_logo(); + } +} + +/** + * Custom function to check for a post thumbnail; + * If Jetpack is not available, fall back to has_post_thumbnail() + */ +function pique_has_post_thumbnail( $post = null ) { + if ( function_exists( 'jetpack_has_featured_image' ) ) { + return jetpack_has_featured_image( $post ); + } else { + return has_post_thumbnail( $post ); + } +} + +/** + * Custom function to get the URL of a post thumbnail; + * If Jetpack is not available, fall back to wp_get_attachment_image_src() + */ +function pique_get_attachment_image_src( $post_id, $post_thumbnail_id, $size ) { + if ( function_exists( 'jetpack_featured_images_fallback_get_image_src' ) ) { + return jetpack_featured_images_fallback_get_image_src( $post_id, $post_thumbnail_id, $size ); + } else { + $attachment = wp_get_attachment_image_src( $post_thumbnail_id, $size ); // Attachment array + $url = $attachment[0]; // Attachment URL + return $url; + } +} + diff --git a/pique/inc/style-wpcom.css b/pique/inc/style-wpcom.css new file mode 100644 index 000000000..67c5ccfc8 --- /dev/null +++ b/pique/inc/style-wpcom.css @@ -0,0 +1,249 @@ +/* WordPress.com Widgets */ + +/* Account for the demo bar */ +.demo-site.pique-frontpage #masthead { + top: 132px; + + @media screen and (max-width:782px) { + top: 110px; + } +} + +@media screen and (min-width:768px) { + .demo-site .main-navigation.sticky { + top: 111px; + } +} + +/* Don't show a background for the masthead, even if colour annotations are in place */ +.pique-frontpage #masthead { + background: none !important; +} + +/* Hide stats smiley */ +#wpstats { + display: none; +} + +/* Remove extra styling from comment submit */ +#respond { + margin-top: 0 !important; + padding-top: 0 !important; +} + +#respond h3 { + margin-top: 20px !important; +} + +#respond form { + margin-top: 20px !important; +} + +#respond .form-submit input, +#respond .form-submit input#comment-submit, +#respond .comment-form-fields input[type="submit"], +#respond p.form-submit input[type="submit"], +#respond input[type="submit"], +#commentform #submit { + letter-spacing: 0; + outline: none; + text-transform: none; +} + +#respond p.comment-subscription-form label { + letter-spacing: 0; +} + +/* Improve appearance of ratings */ +.rating-msg, +.rating-nero-value { + font-size: 18px !important; + font-size: 1rem !important; + vertical-align: top; +} + +.rating-icons .rating-nero-icon { + margin-top: 2px !important; +} + +/* Brute-force related posts h3 to use the right typeface */ +div#jp-relatedposts h3.jp-relatedposts-headline, +div.sharedaddy h3.sd-title { + font-family: Karla, Arial, sans-serif; + font-size: 0.9rem !important; +} + +div#jp-relatedposts h3.jp-relatedposts-headline em::before, +div.sharedaddy h3.sd-title::before { + display: none !important; +} + +div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a { + font-style: italic; + font-size: 1.1rem; +} + +/* Flickr */ +#flickr_badge_wrapper { + background: transparent !important; + border: 0 !important; +} + +#flickr_badge_uber_wrapper { + margin: 0 auto; +} + +#flickr_badge_uber_wrapper td { + border: 0 !important; +} + +#flickr_badge_uber_wrapper a:hover, +#flickr_badge_uber_wrapper a:link, +#flickr_badge_uber_wrapper a:active, +#flickr_badge_uber_wrapper a:visited { + color: #777 !important; +} + +/* Recent Comments */ +.widget_recent_comments td { + border: 0; + padding: 5px 5px 10px 5px; + vertical-align: top; +} + +/* Authors */ +.widget_authors > ul > li { + border-top: none; +} + +.widget_authors img, +.widget_author_grid img { + border-radius: 50%; + float: none; + max-width: 75px; + vertical-align: middle; +} + +.widget_authors ul, +.widget_author_grid ul { + list-style: none; + margin: 0; + padding: 0; +} + +/* Blogroll */ +.widget_links li { + border-top: 1px solid rgba(233, 213, 192, 0.5); + padding: 7px 0; +} + +.widget_links li a { + border: none; + display: inline-block; + padding: 0; +} + +.widget_links li a:hover { + background: none; +} + +/* Follow widget */ +.widget-title label { + color: inherit; + font-weight: inherit; + font-size: inherit; +} + +/* Facebook */ +.widget_facebook_likebox .fb_iframe_widget { + text-align: center; + margin: 20px auto 0; + width: 100%; +} + +/* Goodreads */ +.widget_goodreads .gr_custom_widget div { + text-align: center; +} + +/* Gravatar */ +.grofile-thumbnail, +.widget_gravatar img { + border-radius: 50%; + margin-left: auto; + margin-right: auto; +} + +.grofile-accounts li a { + display: inline; +} + +/* MailChimp overlay */ +.pique-frontpage .mc-modal { + /* hack to override exceptionally high z-index for Pique's masthead */ + z-index: 10001 !important; +} + +@media only screen and (max-width: 980px) { + .pique-frontpage .mc-banner { + z-index: 10002; + } +} + +/* Milestone */ +.milestone-content { + margin-left: auto; + margin-right: auto; +} + +.milestone-header { + background-color: #1d1813; +} +.milestone-header .event { + font-size: 125%; + letter-spacing: 1px; + text-transform: uppercase; +} + +.milestone-countdown, +.milestone-message { + color: #1d1813; + border-color: #1d1813; + font-family: Lora, Georgia, serif; + font-style: italic; +} + +.milestone-countdown .difference, +.milestone-message .difference { + font-style: normal; +} + +/* My Community, Posts I like */ +.widget_jetpack_my_community img, +.widget_jetpack_posts_i_like img { + border-radius: 50%; +} + +/* Follow button */ +.widget_follow_button_widget { + border: none; +} + +/* Sharedaddy */ +h3.sd-title { + font-size: 16px; +} + +.cdm-icon { + z-index: 100001; +} + + + +/* Prevent polls from overflowing on small screens */ +@media only screen and (max-width: 650px) { + .pds-box { + max-width: 100% !important; + width: 100% !important; + } +} diff --git a/pique/inc/template-tags.php b/pique/inc/template-tags.php new file mode 100644 index 000000000..c2398e125 --- /dev/null +++ b/pique/inc/template-tags.php @@ -0,0 +1,138 @@ +%2$s'; + if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { + $time_string = ''; + } + + $time_string = sprintf( $time_string, + esc_attr( get_the_date( 'c' ) ), + esc_html( get_the_date() ), + esc_attr( get_the_modified_date( 'c' ) ), + esc_html( get_the_modified_date() ) + ); + + $posted_on = sprintf( '%s', '' . $time_string . '' ); + + $byline = sprintf( + esc_html_x( 'by %s', 'post author', 'pique' ), + '' . esc_html( get_the_author() ) . '' + ); + + echo '' . $posted_on . ''; // WPCS: XSS OK. + + edit_post_link( esc_html__( 'Edit', 'pique' ), '', '' ); + + } +endif; + +if ( ! function_exists( 'pique_entry_footer' ) ) : + /** + * Prints HTML with meta information for the categories, tags and comments. + */ + function pique_entry_footer() { + // Hide category and tag text, as well as comment links, for pages. + if ( 'post' === get_post_type() ) : + /* translators: used between list items, there is a space after the comma */ + $categories_list = get_the_category_list( esc_html__( ', ', 'pique' ) ); + if ( $categories_list && pique_categorized_blog() ) { + printf( '' . esc_html__( 'Posted in %1$s', 'pique' ) . '', $categories_list ); // WPCS: XSS OK. + } + + /* translators: used between list items, there is a space after the comma */ + $tags_list = get_the_tag_list( '', esc_html__( ', ', 'pique' ) ); + if ( $tags_list && ! is_wp_error( $tags_list ) ) { + printf( '' . esc_html__( 'Tagged %1$s', 'pique' ) . '', $tags_list ); // WPCS: XSS OK. + } + + if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { + echo ''; + comments_popup_link( esc_html__( 'Leave a comment', 'pique' ), esc_html__( '1 Comment', 'pique' ), esc_html__( '% Comments', 'pique' ) ); + echo ''; + } + + endif; // post = get_post_type() + } +endif; + +/** + * Returns an accessibility-friendly link to edit a post or page. + * This also gives us a little context about what exactly we're editing + * (post or page?) so that users understand a bit more where they are in terms + * of the template hierarchy and their content. Helpful when/if the single-page + * layout with multiple posts/pages shown gets confusing. + */ +function pique_edit_link( $id ) { + if ( is_page() ) : + $type = esc_html__( 'Page', 'pique' ); + elseif ( get_post( $id ) ) : + $type = esc_html__( 'Post', 'pique' ); + endif; + $link = edit_post_link( + sprintf( + /* translators: %s: Name of current post */ + esc_html__( 'Edit %1$s %2$s', 'pique' ), + esc_html( $type ), + the_title( '"', '"', false ) + ), + '', + '' + ); + return $link; +} + +/** + * Returns true if a blog has more than 1 category. + * + * @return bool + */ +function pique_categorized_blog() { + if ( false === ( $all_the_cool_cats = get_transient( 'pique_categories' ) ) ) { + // Create an array of all the categories that are attached to posts. + $all_the_cool_cats = get_categories( array( + 'fields' => 'ids', + 'hide_empty' => 1, + + // We only need to know if there is more than one category. + 'number' => 2, + ) ); + + // Count the number of categories that are attached to the posts. + $all_the_cool_cats = count( $all_the_cool_cats ); + + set_transient( 'pique_categories', $all_the_cool_cats ); + } + + if ( $all_the_cool_cats > 1 ) { + // This blog has more than 1 category so pique_categorized_blog should return true. + return true; + } else { + // This blog has only 1 category so pique_categorized_blog should return false. + return false; + } +} + +/** + * Flush out the transients used in pique_categorized_blog. + */ +function pique_category_transient_flusher() { + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { + return; + } + // Like, beat it. Dig? + delete_transient( 'pique_categories' ); +} +add_action( 'edit_category', 'pique_category_transient_flusher' ); +add_action( 'save_post', 'pique_category_transient_flusher' ); diff --git a/pique/inc/woocommerce.php b/pique/inc/woocommerce.php new file mode 100644 index 000000000..16941060d --- /dev/null +++ b/pique/inc/woocommerce.php @@ -0,0 +1,411 @@ + 726, + 'single_image_width' => 700, + ) ); + add_theme_support( 'wc-product-gallery-zoom' ); + add_theme_support( 'wc-product-gallery-lightbox' ); + add_theme_support( 'wc-product-gallery-slider' ); +} +add_action( 'after_setup_theme', 'pique_woocommerce_setup' ); + +/** + * WooCommerce specific scripts & stylesheets. + * + * @return void + */ +function pique_woocommerce_scripts() { + wp_enqueue_script( 'pique-woocommerce-scripts', get_template_directory_uri() . '/assets/js/woocommerce.js', array( 'jquery' ), '', true ); + wp_enqueue_style( 'pique-woocommerce-style', get_template_directory_uri() . '/woocommerce.css' ); + + $font_path = WC()->plugin_url() . '/assets/fonts/'; + $inline_font = '@font-face { + font-family: "star"; + src: url("' . $font_path . 'star.eot"); + src: url("' . $font_path . 'star.eot?#iefix") format("embedded-opentype"), + url("' . $font_path . 'star.woff") format("woff"), + url("' . $font_path . 'star.ttf") format("truetype"), + url("' . $font_path . 'star.svg#star") format("svg"); + font-weight: normal; + font-style: normal; + }'; + + wp_add_inline_style( 'pique-woocommerce-style', $inline_font ); + +} +add_action( 'wp_enqueue_scripts', 'pique_woocommerce_scripts' ); + +/** + * WooCommerce specific scripts & stylesheets. + * + * @return void + */ +function pique_woocommerce_image_dimensions() { + global $pagenow; + + if ( ! isset( $_GET['activated'] ) || $pagenow != 'themes.php' ) { + return; + } + + $single = array( + 'width' => '700', // px + 'height' => '700', // px + 'crop' => false // true + ); + + // Image Single product image size + update_option( 'shop_single_image_size', $single ); +} +add_action( 'after_switch_theme', 'pique_woocommerce_image_dimensions', 1 ); + +/** + * Disable the default WooCommerce stylesheet. + * + * Removing the default WooCommerce stylesheet and enqueing your own will + * protect you during WooCommerce core updates. + * + * @link https://docs.woocommerce.com/document/disable-the-default-stylesheet/ + */ +add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' ); + +/** + * Add 'woocommerce-active' class to the body tag. + * + * @param array $classes CSS classes applied to the body tag. + * @return array $classes modified to include 'woocommerce-active' class. + */ +function pique_woocommerce_active_body_class( $classes ) { + $classes[] = 'woocommerce-active'; + + return $classes; +} +add_filter( 'body_class', 'pique_woocommerce_active_body_class' ); + +/** + * Products per page. + * + * @return integer number of products. + */ +function pique_woocommerce_products_per_page() { + return 12; +} +add_filter( 'loop_shop_per_page', 'pique_woocommerce_products_per_page' ); + +/** + * Product gallery thumnbail columns. + * + * @return integer number of columns. + */ +function pique_woocommerce_thumbnail_columns() { + return 4; +} +add_filter( 'woocommerce_product_thumbnails_columns', 'pique_woocommerce_thumbnail_columns' ); + +/** + * Default loop columns on product archives. + * + * @return integer products per row. + */ +function pique_woocommerce_loop_columns() { + return 3; +} +add_filter( 'loop_shop_columns', 'pique_woocommerce_loop_columns' ); + +/** + * Related Products Args. + * + * @param array $args related products args. + * @return array $args related products args. + */ +function pique_woocommerce_related_products_args( $args ) { + $defaults = array( + 'posts_per_page' => 3, + 'columns' => 3, + ); + + $args = wp_parse_args( $defaults, $args ); + + return $args; +} +add_filter( 'woocommerce_output_related_products_args', 'pique_woocommerce_related_products_args' ); + +if ( ! function_exists( 'pique_woocommerce_product_columns_wrapper' ) ) { + /** + * Product columns wrapper. + * + * @return void + */ + function pique_woocommerce_product_columns_wrapper() { + $columns = pique_woocommerce_loop_columns(); + echo '
'; + } +} +add_action( 'woocommerce_before_shop_loop', 'pique_woocommerce_product_columns_wrapper', 40 ); + +if ( ! function_exists( 'pique_woocommerce_product_columns_wrapper_close' ) ) { + /** + * Product columns wrapper close. + * + * @return void + */ + function pique_woocommerce_product_columns_wrapper_close() { + echo '
'; + } +} +add_action( 'woocommerce_after_shop_loop', 'pique_woocommerce_product_columns_wrapper_close', 40 ); + +/** + * Remove default WooCommerce wrapper. + */ +remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); +remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); + +if ( ! function_exists( 'pique_woocommerce_wrapper_before' ) ) { + /** + * Before Content. + * + * Wraps all WooCommerce content in wrappers which match the theme markup. + * + * @return void + */ + function pique_woocommerce_wrapper_before() { + ?> +
+
+ +
+
+ + */ + +if ( ! function_exists( 'pique_woocommerce_cart_link_fragment' ) ) { + /** + * Cart Fragments. + * + * Ensure cart contents update when products are added to the cart via AJAX. + * + * @param array $fragments Fragments to refresh via AJAX. + * @return array Fragments to refresh via AJAX. + */ + function pique_woocommerce_cart_link_fragment( $fragments ) { + ob_start(); + pique_woocommerce_cart_link(); + $fragments['a.cart-contents'] = ob_get_clean(); + + return $fragments; + } +} +add_filter( 'woocommerce_add_to_cart_fragments', 'pique_woocommerce_cart_link_fragment' ); + +if ( ! function_exists( 'pique_woocommerce_cart_link' ) ) { + /** + * Cart Link. + * + * Displayed a link to the cart including the number of items present and the cart total. + * + * @return void + */ + function pique_woocommerce_cart_link() { + ?> + + + cart->get_cart_subtotal() ); ?> + cart->get_cart_contents_count(), 'pique' ), WC()->cart->get_cart_contents_count() ) );?> + + +
    +
  • + +
  • +
  • + '', + ); + + the_widget( 'WC_Widget_Cart', $instance ); + ?> +
  • +
+ theme_location == 'primary' ) { + + // $menu = wp_get_nav_menu_object( $locations[ $menu_name ] ); + + ob_start(); + + ob_start(); + pique_woocommerce_cart_link(); + $new_cart_link = ob_get_clean(); + + ob_start(); + the_widget( 'WC_Widget_Cart', array( 'title' => '' ) ); + $new_cart_widget = ob_get_clean(); + + $menu_item = ''; + + echo $menu_item; + + $menu .= ob_get_clean(); + } + + return $menu; +} + +/** + * Adds custom classes to the array of post classes. + * + * @param array $classes Classes for the post element. + * @return array + */ +function pique_woocommerce_post_classes( $classes ) { + + // Remove the panel class from products in archive views + if ( is_archive() && is_woocommerce() ) : + // $classes[] = 'pique-panel'; + $classes = preg_grep( '/^pique-panel$/', $classes, PREG_GREP_INVERT ); + + endif; + + return $classes; +} +add_filter( 'post_class', 'pique_woocommerce_post_classes' ); + +/** + * Remove result count & sorting + */ +remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); +remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); + +/** + * Add result count & sorting to woocommerce archive description in page header + */ +add_action( 'woocommerce_archive_description', 'woocommerce_result_count', 20 ); +add_action( 'woocommerce_archive_description', 'woocommerce_catalog_ordering', 30 ); + +/** + * Workaround to prevent is_shop() from failing due to WordPress core issue + * + * @link https://core.trac.wordpress.org/ticket/21790 + * @param array $args infinite scroll args. + * @return array infinite scroll args. + */ +function pique_woocommerce_is_shop_page() { + global $wp_query; + $front_page_id = get_option( 'page_on_front' ); + $current_page_id = $wp_query->get( 'page_id' ); + $shop_page_id = apply_filters( 'woocommerce_get_shop_page_id', get_option( 'woocommerce_shop_page_id' ) ); + $is_static_front_page = 'page' === get_option( 'show_on_front' ); + if ( $is_static_front_page && $front_page_id === $current_page_id ) { + $is_shop_page = ( $current_page_id === wc_get_page_id( 'shop' ) ) ? true : false; + } else { + $is_shop_page = is_shop(); + } + return $is_shop_page; +} + +/** + * Jetpack infinite scroll duplicates posts where orderby is anything other than modified or date + * This filter offsets the products returned by however many are displayed per page + * + * @link https://github.com/Automattic/jetpack/issues/1135 + * @param array $args infinite scroll args. + * @return array infinite scroll args. + */ +function pique_woocommerce_jetpack_duplicate_products( $args ) { + if ( ( isset( $args['post_type'] ) && 'product' === $args['post_type'] ) || ( isset( $args['taxonomy'] ) && 'product_cat' === $args['taxonomy'] ) ) { + $args['offset'] = $args['posts_per_page'] * $args['paged']; + } + return $args; +} +add_filter( 'infinite_scroll_query_args', 'pique_woocommerce_jetpack_duplicate_products', 100 ); + +/** + * Override number of products per page in Jetpack infinite scroll. + * + * @param array $args infinite scroll args. + * @return array infinite scroll args. + */ +function pique_woocommerce_jetpack_products_per_page( $args ) { + if ( is_array( $args ) && ( pique_woocommerce_is_shop_page() || is_product_taxonomy() || is_product_category() || is_product_tag() ) ) { + $args['posts_per_page'] = pique_woocommerce_products_per_page(); + } + return $args; +} +add_filter( 'infinite_scroll_settings', 'pique_woocommerce_jetpack_products_per_page' ); \ No newline at end of file diff --git a/pique/inc/wpcom-colors.php b/pique/inc/wpcom-colors.php new file mode 100644 index 000000000..979f079a7 --- /dev/null +++ b/pique/inc/wpcom-colors.php @@ -0,0 +1,383 @@ + a, + .main-navigation .current-menu-item > a, + .main-navigation .current_page_ancestor > a, + .main-navigation ul ul a', + 'color', 'txt', ), + + // Social media icons should contrast against text colour (used for background) + array( '.widget.widget_wpcom_social_media_icons_widget ul a::before, .widget.jetpack_widget_social_icons ul a, + .secondary-links li a[href*="wordpress.org"]::before, .secondary-links li a[href*="facebook.com"]::before, .secondary-links li a[href*="twitter.com"]::before, .secondary-links li a[href*="dribbble.com"]::before, .secondary-links li a[href*="plus.google.com"]::before, .secondary-links li a[href*="pinterest.com"]::before, .secondary-links li a[href*="github.com"]::before, .secondary-links li a[href*="tumblr.com"]::before, .secondary-links li a[href*="youtube.com"]::before, .secondary-links li a[href*="flickr.com"]::before, .secondary-links li a[href*="vimeo.com"]::before, .secondary-links li a[href*="instagram.com"]::before, .secondary-links li a[href*="codepen.io"]::before, .secondary-links li a[href*="linkedin.com"]::before, .secondary-links li a[href*="foursquare.com"]::before, .secondary-links li a[href*="reddit.com"]::before, .secondary-links li a[href*="digg.com"]::before, .secondary-links li a[href*="getpocket.com"]::before, .secondary-links li a[href*="path.com"]::before, .secondary-links li a[href*="stumbleupon.com"]::before, .secondary-links li a[href*="spotify.com"]::before, .secondary-links li a[href*="twitch.tv"]::before, .secondary-links li a[href*="dropbox.com"]::before, .secondary-links li a[href*="/feed"]::before, .secondary-links li a[href*="skype"]::before, .secondary-links li a[href*="mailto"]::before', + 'color', 'txt', ), + + array( '.widget.widget_wpcom_social_media_icons_widget ul a, .widget.jetpack_widget_social_icons ul a, + .secondary-links li a[href*="wordpress.org"]::before, .secondary-links li a[href*="facebook.com"]::before, .secondary-links li a[href*="twitter.com"]::before, .secondary-links li a[href*="dribbble.com"]::before, .secondary-links li a[href*="plus.google.com"]::before, .secondary-links li a[href*="pinterest.com"]::before, .secondary-links li a[href*="github.com"]::before, .secondary-links li a[href*="tumblr.com"]::before, .secondary-links li a[href*="youtube.com"]::before, .secondary-links li a[href*="flickr.com"]::before, .secondary-links li a[href*="vimeo.com"]::before, .secondary-links li a[href*="instagram.com"]::before, .secondary-links li a[href*="codepen.io"]::before, .secondary-links li a[href*="linkedin.com"]::before, .secondary-links li a[href*="foursquare.com"]::before, .secondary-links li a[href*="reddit.com"]::before, .secondary-links li a[href*="digg.com"]::before, .secondary-links li a[href*="getpocket.com"]::before, .secondary-links li a[href*="path.com"]::before, .secondary-links li a[href*="stumbleupon.com"]::before, .secondary-links li a[href*="spotify.com"]::before, .secondary-links li a[href*="twitch.tv"]::before, .secondary-links li a[href*="dropbox.com"]::before, .secondary-links li a[href*="/feed"]::before, .secondary-links li a[href*="skype"]::before, .secondary-links li a[href*="mailto"]::before, + .woocommerce-MyAccount-navigation li.is-active a', + 'border-color', 'txt' ), + + array( '.widget.widget_wpcom_social_media_icons_widget ul a:hover, .widget.jetpack_widget_social_icons ul a:hover, + .secondary-links li a[href*="wordpress.org"]:hover::before, .secondary-links li a[href*="facebook.com"]:hover::before, .secondary-links li a[href*="twitter.com"]:hover::before, .secondary-links li a[href*="dribbble.com"]:hover::before, .secondary-links li a[href*="plus.google.com"]:hover::before, .secondary-links li a[href*="pinterest.com"]:hover::before, .secondary-links li a[href*="github.com"]:hover::before, .secondary-links li a[href*="tumblr.com"]:hover::before, .secondary-links li a[href*="youtube.com"]:hover::before, .secondary-links li a[href*="flickr.com"]:hover::before, .secondary-links li a[href*="vimeo.com"]:hover::before, .secondary-links li a[href*="instagram.com"]:hover::before, .secondary-links li a[href*="codepen.io"]:hover::before, .secondary-links li a[href*="linkedin.com"]:hover::before, .secondary-links li a[href*="foursquare.com"]:hover::before, .secondary-links li a[href*="reddit.com"]:hover::before, .secondary-links li a[href*="digg.com"]:hover::before, .secondary-links li a[href*="getpocket.com"]:hover::before, .secondary-links li a[href*="path.com"]:hover::before, .secondary-links li a[href*="stumbleupon.com"]:hover::before, .secondary-links li a[href*="spotify.com"]:hover::before, .secondary-links li a[href*="twitch.tv"]:hover::before, .secondary-links li a[href*="dropbox.com"]:hover::before, .secondary-links li a[href*="/feed"]:hover::before, .secondary-links li a[href*="skype"]:hover::before, .secondary-links li a[href*="mailto"]:hover::before', + 'background-color', '-0.5', ), + + // No contrast needed + array( 'hr, + .bypostauthor', + 'background-color' ), + +), +__( 'Secondary Accent' ) ); + +// Additional palettes +add_color_palette( array( + '#bcbcbc', + '#424242', + '#4f98b8', + '#e9e9e9', + '#f29d37', +), 'Orange Crush' ); + +add_color_palette( array( + '#58626f', + '#000f3a', + '#6097b5', + '#ee7972', + '#b6595c', +), 'Candy Floss' ); + +add_color_palette( array( + '#f5ddca', + '#aa6160', + '#2f1129', + '#f8f3de', + '#8bac9b', +), 'Genteel' ); + +add_color_palette( array( + '#f6f6f6', + '#323232', + '#8c2316', + '#eeeeee', + '#aa2e1d', +), 'Newspaper' ); + +add_color_palette( array( + '#e6ddcd', + '#133547', + '#2a6263', + '#92aa9b', + '#061832', +), 'Blues Brother' ); + +add_color_palette( array( + '#ffffff', + '#000000', + '#de78b7', + '#eeeeee', + '#707070', +), 'Leg Warmer' ); diff --git a/pique/inc/wpcom.php b/pique/inc/wpcom.php new file mode 100644 index 000000000..dde8eda72 --- /dev/null +++ b/pique/inc/wpcom.php @@ -0,0 +1,55 @@ + 'fcfbf9', + 'border' => 'c2beb9', + 'text' => '666666', + 'link' => '83b6cc', + 'url' => '83b6cc', + ); + endif; + + // Add support for print styles + add_theme_support( 'print-style' ); +} +add_action( 'after_setup_theme', 'pique_theme_support' ); + +/** + * Enqueue a WordPress.com-specific stylesheet + */ +function pique_wpcom_styles() { + wp_enqueue_style( 'pique-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', '20151008' ); +} +add_action( 'wp_enqueue_scripts', 'pique_wpcom_styles' ); + +/** + * De-queue Google fonts if custom fonts are being used instead. + */ +function pique_dequeue_fonts() { + if ( class_exists( 'TypekitData' ) && class_exists( 'CustomDesign' ) && CustomDesign::is_upgrade_active() ) { + $customfonts = TypekitData::get( 'families' ); + + if ( $customfonts['headings']['id'] && $customfonts['body-text']['id'] ) { + wp_dequeue_style( 'pique-fonts' ); + } + } +} +add_action( 'wp_enqueue_scripts', 'pique_dequeue_fonts' ); diff --git a/pique/index.php b/pique/index.php new file mode 100644 index 000000000..ea388a7f2 --- /dev/null +++ b/pique/index.php @@ -0,0 +1,51 @@ + + +
+
+ + +
+

+
+ + + + + + + + + + + + + + + + + + +
+
+ + diff --git a/pique/languages/de.mo b/pique/languages/de.mo new file mode 100644 index 000000000..0198779f3 Binary files /dev/null and b/pique/languages/de.mo differ diff --git a/pique/languages/de.po b/pique/languages/de.po new file mode 100644 index 000000000..947d0e1f6 --- /dev/null +++ b/pique/languages/de.po @@ -0,0 +1,345 @@ +# Translation of WordPress.com - Themes - Pique in German +# This file is distributed under the same license as the WordPress.com - Themes - Pique package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-10-26 03:34:45+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: de\n" +"Project-Id-Version: WordPress.com - Themes - Pique\n" + +#. translators: number of items in the mini cart. +#: inc/woocommerce.php:255 +msgid "%d item" +msgid_plural "%d items" +msgstr[0] "%d Artikel" +msgstr[1] "%d Artikel" + +#: inc/woocommerce.php:252 +msgid "View your shopping cart" +msgstr "Warenkorb anzeigen" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "Zweiter Akzent" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "Hauptakzent" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "Alternativer Bereichshintergrund" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "Bereichs- und Menühintergrund" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "Panel Inhalt" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed." +msgstr "Füge deinem Panel ein Hintergrundbild hinzu, indem du ein vorgeschlagenes Bild aus dem Seiten-Editor auswählst. Wenn du keine Seite auswählst, wird dieses Panel nicht angezeigt." + +#: inc/customizer.php:39 +msgid "Add an anchor menu to the front page." +msgstr "Fügt ein neues Anker-Menu deine Startseite hinzu." + +#: inc/customizer.php:30 +msgid "This replaces your custom menu—on the front page only—with an automatically-generated menu that links to each of your panels." +msgstr "Dies ersetzt dein eigenes Menu auf der Startseite mit einem automatisch generierten Menu, dass einen Link auf jedes Panel zeigt." + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "Menü Einstellungen" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "Weiterlesen %s" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "100%" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "75%" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "50%" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "25%" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "Transparenz des Bildes" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "Hintergrundfarbe" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "Konfiguriere deine Theme-Einstellungen" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "Referenzen" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "Seite mit Raster" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-full-width.php +msgid "Full-width Page" +msgstr "Ganze Seitenbreite" + +#. Description of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "A one-page scrolling theme for small businesses." +msgstr "Ein Einseiten-Scroll Design für KMUs." + +#: single.php:19 +msgid "Next" +msgstr "Weiter" + +#: single.php:18 +msgid "Previous" +msgstr "Vorheriger Beitrag" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "Suchergebnisse für: %s" + +#. translators: %s: Name of current post +#: inc/template-tags.php:86 +msgid "Edit %1$s %2$s" +msgstr "Bearbeite %1$s %2$s" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "Beitrag" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "Seite" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "% Kommentare" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "1 Kommentar" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "Kommentar hinterlassen" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "Getaggt mit %1$s" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "Veröffentlicht in %1$s" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr ", " + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "von %s" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "Panel 8" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "Panel 7" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "Panel 6" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "Panel 5" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "Panel 4" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "Panel 3" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "Panel 2" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "Panel 1" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "Theme-Optionen" + +#: header.php:24 +msgid "Skip to content" +msgstr "Zum Inhalt springen" + +#. Translators: If there are characters in your language that are not +#. * supported by Karla, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:179 +msgctxt "Karla font: on or off" +msgid "on" +msgstr "on" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "on" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "Dritter Footer-Widget-Bereich" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "Zweiter Footer-Widget-Bereich" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "Erster Footer-Widgetbereich" + +#: functions.php:122 +msgid "Sidebar" +msgstr "Seitenleiste" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "Sekundäres Menü" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "Primäres Menü" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "Theme: %1$s von %2$s." + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "Stolz präsentiert von %s" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "http://wordpress.org/" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "Bearbeiten" + +#: components/content-none.php:29 +msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." +msgstr "Es sieht so aus, als ob wir nicht das finden konnten, wonach du gesucht hast. Möglicherweise hilft eine Suche." + +#: components/content-none.php:24 +msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." +msgstr "Entschuldigung, aber zu deinen Suchbegriffen wurde nichts passendes gefunden. Bitte versuche es mit anderen Stichworten noch einmal." + +#: components/content-none.php:20 +msgid "Ready to publish your first post? Get started here." +msgstr "Bereit, um deinen ersten Beitrag zu veröffentlichen? Starte hier." + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "Nichts gefunden" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "Seiten:" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "%s weiterlesen " + +#: comments.php:76 +msgid "Comments are closed." +msgstr "Kommentare sind geschlossen." + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "Neuere Kommentare" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "Ältere Kommentare" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "Kommentar-Navigation" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "Ein Kommentar zu „%2$s“" +msgstr[1] "%1$s Kommentare zu „%2$s“" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "Versuchs mit einem Blick in die monatlichen Archive. %1$s" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "Oft verwendete Kategorien" + +#: 404.php:19 +msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" +msgstr "Sieht so aus, als ob an dieser Stelle nichts gefunden wird. Vielleicht versuchst Du es mit einem der Links unten oder einer Suche?" + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "Diese Seite konnte leider nicht gefunden werden." diff --git a/pique/languages/fr.mo b/pique/languages/fr.mo new file mode 100644 index 000000000..b4a038ae8 Binary files /dev/null and b/pique/languages/fr.mo differ diff --git a/pique/languages/fr.po b/pique/languages/fr.po new file mode 100644 index 000000000..b1a10a9d4 --- /dev/null +++ b/pique/languages/fr.po @@ -0,0 +1,332 @@ +# Translation of WordPress.com - Themes - Pique in French (France) +# This file is distributed under the same license as the WordPress.com - Themes - Pique package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-10-26 05:33:50+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: fr\n" +"Project-Id-Version: WordPress.com - Themes - Pique\n" + +#. translators: number of items in the mini cart. +#: inc/woocommerce.php:255 +msgid "%d item" +msgid_plural "%d items" +msgstr[0] "%d élément" +msgstr[1] "%d éléments" + +#: inc/woocommerce.php:252 +msgid "View your shopping cart" +msgstr "Voir votre panier" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "Accent secondaire" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "Accent Principal" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "Arrière-plan du panneau secondaire" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "Panneau et arrière-plan du menu" + +#. Theme URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "https://wordpress.com/themes/pique/" +msgstr "http://wordpress.com/themes/pique" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "Contenu du panneau" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed." +msgstr "Ajoutez une image d’arrière-plan à votre panneau en paramétrant l’image à la Une dans l’éditeur de page. Si vous ne sélectionnez pas de page, ce panneau ne sera pas affiché." + +#: inc/customizer.php:39 +msgid "Add an anchor menu to the front page." +msgstr "Ajouter un menu d’ancres à la pas d’accueil." + +#: inc/customizer.php:30 +msgid "This replaces your custom menu—on the front page only—with an automatically-generated menu that links to each of your panels." +msgstr "Ceci remplace votre menu personnalisé—sur la pas d’accueil—par un menu généré automatiquement reliant chacun de vos panneaux." + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "Réglages du menu" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "Lire la suite de %s" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "100 %" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "75 %" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "50 %" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "25 %" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "Régler l’opacité de l’image à la Une" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "Couleur d’arrière-plan" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "Paramétrez votre thème" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "Témoignages " + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "Page grille" + +#: single.php:19 +msgid "Next" +msgstr "Suivant" + +#: single.php:18 +msgid "Previous" +msgstr "Précédent" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "Résultat de Recherche pour: %s" + +#. translators: %s: Name of current post +#: inc/template-tags.php:86 +msgid "Edit %1$s %2$s" +msgstr "Modifier %1$s %2$s" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "Article" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "Page" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "% commentaires" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "1 commentaire" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "Laisser un commentaire" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "Tagué %1$s" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "Publié dans %1$s" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr ", " + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "par %s" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "Panneau 8" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "Panneau 7" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "Panneau 6" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "Panneau 5" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "Panneau 4" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "Panneau 3" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "Panneau 2" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "Panneau 1" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "Options du thème" + +#: header.php:24 +msgid "Skip to content" +msgstr "Accéder au contenu principal" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "on" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "3ème zone de pied de page" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "2ème zone de pied de page" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "1ère zone de pied de page" + +#: functions.php:122 +msgid "Sidebar" +msgstr "Colonne latérale" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "Menu secondaire" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "Menu principal" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "Thème : %1$s par %2$s." + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "Fièrement propulsé par %s" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "http://wordpress.org/" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "Modifier" + +#: components/content-none.php:29 +msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." +msgstr "Contenu Introuvable. Voulez-vous lancer une nouvelle recherche ?" + +#: components/content-none.php:24 +msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." +msgstr "Désolé, mais rien ne correspond à votre recherche. Veuillez réessayer avec des mots différents." + +#: components/content-none.php:20 +msgid "Ready to publish your first post? Get started here." +msgstr "Prêt à publier votre premier article ? Lancez-vous !" + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "Rien de trouvé" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "Pages :" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "Lire la suite " + +#: comments.php:76 +msgid "Comments are closed." +msgstr "Les commentaires sont fermés." + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "Commentaires plus récents" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "Commentaires plus anciens" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "Navigation dans les commentaires" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "Une réflexion au sujet de « %2$s »" +msgstr[1] "%1$s réflexions au sujet de « %2$s »" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "Essayez de voir du côté des archives mensuelles. %1$s" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "Catégories les plus utilisées" + +#: 404.php:19 +msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" +msgstr "Contenu introuvable. Vous pouvez essayer l'outil de recherche ou les liens ci-dessous pour le retrouver." + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "Oups ! Cette page est introuvable." diff --git a/pique/languages/nl.mo b/pique/languages/nl.mo new file mode 100644 index 000000000..e993c1ede Binary files /dev/null and b/pique/languages/nl.mo differ diff --git a/pique/languages/nl.po b/pique/languages/nl.po new file mode 100644 index 000000000..701ecc8ae --- /dev/null +++ b/pique/languages/nl.po @@ -0,0 +1,347 @@ +# Translation of WordPress.com - Themes - Pique in Dutch +# This file is distributed under the same license as the WordPress.com - Themes - Pique package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-10-26 05:33:50+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: nl\n" +"Project-Id-Version: WordPress.com - Themes - Pique\n" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "Secundair accent" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "Hoofdaccent" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "Alternatieve achtergrond venster" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "Achtergrond venster en menu" + +#: functions.php:134 functions.php:144 functions.php:154 +msgid "Add widgets here to appear in your footer" +msgstr "Widgets aan de footer toevoegen" + +#: functions.php:124 +msgid "Add widgets here to appear in your sidebar" +msgstr "Widgets aan de zijbalk toevoegen" + +#. Theme URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "https://wordpress.com/themes/pique/" +msgstr "http://wordpress.com/themes/pique" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "Paneelinhoud" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed." +msgstr "Voeg een achtergrondafbeelding toe aan dit paneel door een uitgelichte afbeelding te kiezen voor de pagina. Als je geen pagina selecteert, zal dit paneel niet getoond worden." + +#: inc/customizer.php:39 +msgid "Add an anchor menu to the front page." +msgstr "Voeg een ankermenu toe aan de voorpagina." + +#: inc/customizer.php:30 +msgid "This replaces your custom menu—on the front page only—with an automatically-generated menu that links to each of your panels." +msgstr "Dit vervangt het aangepaste menu op de voorpagina door een automatisch menu met links naar elk paneel." + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "Menu instellingen" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "Lees verder %s" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "100%" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "75%" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "50%" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "25%" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "Transparantie van de uitgelichte afbeelding" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "Achtergrondkleur" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "Configureer je thema-instellingen" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "Beoordelingen" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "Raster pagina" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-full-width.php +msgid "Full-width Page" +msgstr "\"Volledige breedte\"-pagina" + +#. Description of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "A one-page scrolling theme for small businesses." +msgstr "Een \"one-page scroll\"-thema voor kleine ondernemingen" + +#: single.php:19 +msgid "Next" +msgstr "Volgende" + +#: single.php:18 +msgid "Previous" +msgstr "Vorige" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "Zoekresultaten voor: %s" + +#. translators: %s: Name of current post +#: inc/template-tags.php:86 +msgid "Edit %1$s %2$s" +msgstr "Wijzig %1$s %2$s" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "Bericht" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "Pagina" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "% reacties" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "1 reactie" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "Een reactie plaatsen" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "Getagd %1$s" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "Geplaatst in %1$s" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr ", " + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "door %s" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "Paneel 8" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "Paneel 7" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "Paneel 6" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "Paneel 5" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "Paneel 4" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "Paneel 3" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "Paneel 2" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "Paneel 1" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "Thema opties" + +#: header.php:24 +msgid "Skip to content" +msgstr "Naar de inhoud springen" + +#. Translators: If there are characters in your language that are not +#. * supported by Karla, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:179 +msgctxt "Karla font: on or off" +msgid "on" +msgstr "aan" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "aan" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "Derde footer widgetruimte" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "Tweede voettekst widgetruimte" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "Eerste voettekst widgetruimte" + +#: functions.php:122 +msgid "Sidebar" +msgstr "Sidebar" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "Secundair menu" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "Hoofdmenu" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "Thema: %1$s door %2$s." + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "Ondersteund door %s" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "http://wordpress.org/" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "Bewerken" + +#: components/content-none.php:29 +msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." +msgstr "Het lijkt erop dat wij niet kunnen vinden wat jij zoekt. Wellicht helpt de zoekfunctie." + +#: components/content-none.php:24 +msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." +msgstr "Helaas, er waren geen overeenkomsten met jouw zoekterm. Probeer het opnieuw met enkele andere zoekwoorden." + +#: components/content-none.php:20 +msgid "Ready to publish your first post? Get started here." +msgstr "Klaar om je eerste bericht te publiceren? Start hier." + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "Niets gevonden" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "Pagina's:" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "Lees verder %s " + +#: comments.php:76 +msgid "Comments are closed." +msgstr "Reacties zijn gesloten." + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "Nieuwere reacties" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "Oudere reacties" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "Reactienavigatie" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "Een gedachte over “%2$s”" +msgstr[1] "%1$s gedachten over “%2$s”" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "Probeer eens te zoeken in het maandelijks archief. %1$s" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "Meest gebruikte categorieën" + +#: 404.php:19 +msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" +msgstr "Het lijkt erop dat niets werd gevonden op deze locatie. Probeer dan misschien een van de links hieronder of een zoekopdracht?" + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "Oeps! Die pagina kon niet worden gevonden." diff --git a/pique/languages/no.mo b/pique/languages/no.mo new file mode 100644 index 000000000..a15f1c4f2 Binary files /dev/null and b/pique/languages/no.mo differ diff --git a/pique/languages/no.po b/pique/languages/no.po new file mode 100644 index 000000000..3328968b6 --- /dev/null +++ b/pique/languages/no.po @@ -0,0 +1,354 @@ +# Translation of WordPress.com - Themes - Pique in Norwegian +# This file is distributed under the same license as the WordPress.com - Themes - Pique package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-12-12 13:10:15+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: no\n" +"Project-Id-Version: WordPress.com - Themes - Pique\n" + +#. translators: number of items in the mini cart. +#: inc/woocommerce.php:255 +msgid "%d item" +msgid_plural "%d items" +msgstr[0] "%d gjenstand" +msgstr[1] "%d gjenstander" + +#: inc/woocommerce.php:252 +msgid "View your shopping cart" +msgstr "Vis handlevognen din" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "Sekundær aksent" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "Hovedaksent" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "Alternativ panelbakgrunn" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "Panel- og meny-bakgrunn" + +#: functions.php:134 functions.php:144 functions.php:154 +msgid "Add widgets here to appear in your footer" +msgstr "Legg til moduler her som skal dukke opp i bunnområdet ditt" + +#: functions.php:124 +msgid "Add widgets here to appear in your sidebar" +msgstr "Legg til moduler her som skal vises i sidelinjen din" + +#. Theme URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "https://wordpress.com/themes/pique/" +msgstr "https://wordpress.com/themes/pique/" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "Panelinnhold" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed." +msgstr "Legg til et bakgrunnsbilde til panelet ditt ved å velge et fremhevet bilde i sideredigereren. Hvis du ikke velger et bilde, vil panelet ikke bli vist." + +#: inc/customizer.php:39 +msgid "Add an anchor menu to the front page." +msgstr "Legg til en ankermeny på forsiden." + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "Menyinnstillinger" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "Les mer %s" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "100%" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "75%" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "50%" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "25%" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "Det fremhevede bildets fasthet" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "Bakgrunnsfarge" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "Konfigurer dine temainnstillinger" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "Tilbakemeldinger" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "Rutenettside" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-full-width.php +msgid "Full-width Page" +msgstr "Fullbredde-side" + +#. Description of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "A one-page scrolling theme for small businesses." +msgstr "En én-siders rullende tema for små firmaer." + +#: single.php:19 +msgid "Next" +msgstr "Neste" + +#: single.php:18 +msgid "Previous" +msgstr "Forrige" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "Søkeresultater for: %s" + +#. translators: %s: Name of current post +#: inc/template-tags.php:86 +msgid "Edit %1$s %2$s" +msgstr "Rediger %1$s %2$s" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "Innlegg" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "Side" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "% kommentarer" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "1 kommentar" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "Legg igjen en kommentar" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "Stikkord %1$s" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "Publisert i %1$s" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr ", " + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "av %s" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "Panel 8" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "Panel 7" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "Panel 6" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "Panel 5" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "Panel 4" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "Panel 3" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "Panel 2" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "Panel 1" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "Temainnstillinger" + +#: header.php:24 +msgid "Skip to content" +msgstr "Gå til innhold" + +#. Translators: If there are characters in your language that are not +#. * supported by Karla, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:179 +msgctxt "Karla font: on or off" +msgid "on" +msgstr "on" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "on" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "Tredje bunnområde for widgeter" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "Andre bunnområde for widgeter" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "Første bunnområde for widgeter" + +#: functions.php:122 +msgid "Sidebar" +msgstr "Sidekolonnen" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "Sekundærmeny" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "Primærmeny" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "Tema: %1$s av %2$s." + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "Stolt drevet av %s" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "https://wordpress.org/" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "endre" + +#: components/content-none.php:29 +msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." +msgstr "Vi klarer ikke å finne det du leter etter. Prøv å søke." + +#: components/content-none.php:24 +msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." +msgstr "Beklager, men intet passet med dine søkeord. Vennligst prøv igjen med andre søkeord." + +#: components/content-none.php:20 +msgid "Ready to publish your first post? Get started here." +msgstr "Klar for å publisere ditt første innlegg? Kom i gang her." + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "Ingenting funnet" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "Sider:" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "Les mer %s " + +#: comments.php:76 +msgid "Comments are closed." +msgstr "Kommentarer er stengt." + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "Nyere kommentarer" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "Eldre kommentarer" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "Kommentarnavigasjon" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "En kommentar om “%2$s”" +msgstr[1] "%1$s kommentarer om “%2$s”" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "Forsøk de månedlige arkivene. %1$s" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "Mest brukte kategorier" + +#: 404.php:19 +msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" +msgstr "Det ble tydeligvis ikke funnet noe her. Kanskje forsøke en av lenkene under eller et søk?" + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "Auda! Den siden finnes ikke." diff --git a/pique/languages/pique.pot b/pique/languages/pique.pot new file mode 100644 index 000000000..1da817ee4 --- /dev/null +++ b/pique/languages/pique.pot @@ -0,0 +1,385 @@ +# Copyright (C) 2017 Automattic +# This file is distributed under the GNU General Public License v2 or later. +msgid "" +msgstr "" +"Project-Id-Version: Pique 1.4.0-wpcom\n" +"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/pique\n" +"POT-Creation-Date: 2017-10-26 03:34:42+00:00\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "" + +#: 404.php:19 +msgid "" +"It looks like nothing was found at this location. Maybe try one of the links " +"below or a search?" +msgstr "" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "" +msgstr[1] "" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "" + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "" + +#: comments.php:76 +msgid "Comments are closed." +msgstr "" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "" + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "" + +#: components/content-none.php:20 +msgid "" +"Ready to publish your first post? Get started here." +msgstr "" + +#: components/content-none.php:24 +msgid "" +"Sorry, but nothing matched your search terms. Please try again with some " +"different keywords." +msgstr "" + +#: components/content-none.php:29 +msgid "" +"It seems we can’t find what you’re looking for. Perhaps " +"searching can help." +msgstr "" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "" + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "" + +#: functions.php:122 +msgid "Sidebar" +msgstr "" + +#: functions.php:124 +msgid "Add widgets here to appear in your sidebar" +msgstr "" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "" + +#: functions.php:134 functions.php:144 functions.php:154 +msgid "Add widgets here to appear in your footer" +msgstr "" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "" + +#. Translators: If there are characters in your language that are not +#. * supported by Karla, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:179 +msgctxt "Karla font: on or off" +msgid "on" +msgstr "" + +#: header.php:24 +msgid "Skip to content" +msgstr "" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "" + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "" + +#: inc/customizer.php:30 +msgid "" +"This replaces your custom menu—on the front page only—with an " +"automatically-generated menu that links to each of your panels." +msgstr "" + +#: inc/customizer.php:39 +msgid "Add an anchor menu to the front page." +msgstr "" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "" +"Add a background image to your panel by setting a featured image in the page " +"editor. If you don’t select a page, this panel will not be displayed." +msgstr "" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "" + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr "" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "" + +#. translators: %s: Name of current post +#: inc/template-tags.php:86 +msgid "Edit %1$s %2$s" +msgstr "" + +#: inc/woocommerce.php:252 +msgid "View your shopping cart" +msgstr "" + +#. translators: number of items in the mini cart. +#: inc/woocommerce.php:255 +msgid "%d item" +msgid_plural "%d items" +msgstr[0] "" +msgstr[1] "" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "" + +#: single.php:18 +msgid "Previous" +msgstr "" + +#: single.php:19 +msgid "Next" +msgstr "" + +#. Theme Name of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "Pique" +msgstr "" + +#. Theme URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "https://wordpress.com/themes/pique/" +msgstr "" + +#. Description of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "A one-page scrolling theme for small businesses." +msgstr "" + +#. Author of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "Automattic" +msgstr "" + +#. Author URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "http://wordpress.com/themes/" +msgstr "" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-full-width.php +msgid "Full-width Page" +msgstr "" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "" diff --git a/pique/languages/pt-br.mo b/pique/languages/pt-br.mo new file mode 100644 index 000000000..e86b7fe4b Binary files /dev/null and b/pique/languages/pt-br.mo differ diff --git a/pique/languages/pt-br.po b/pique/languages/pt-br.po new file mode 100644 index 000000000..c479541b2 --- /dev/null +++ b/pique/languages/pt-br.po @@ -0,0 +1,358 @@ +# Translation of WordPress.com - Themes - Pique in Portuguese (Brazil) +# This file is distributed under the same license as the WordPress.com - Themes - Pique package. +msgid "" +msgstr "" +"PO-Revision-Date: 2018-02-06 19:36:15+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: pt_BR\n" +"Project-Id-Version: WordPress.com - Themes - Pique\n" + +#. translators: number of items in the mini cart. +#: inc/woocommerce.php:255 +msgid "%d item" +msgid_plural "%d items" +msgstr[0] "%d item" +msgstr[1] "%d itens" + +#: inc/woocommerce.php:252 +msgid "View your shopping cart" +msgstr "Visualize seu carrinho" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "Realce Secundário" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "Cor principal" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "Alternar plano de fundo do painel" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "Plano de fundo do menu e painel" + +#: functions.php:134 functions.php:144 functions.php:154 +msgid "Add widgets here to appear in your footer" +msgstr "Adicione widgets aqui para aparecer em seu rodapé" + +#: functions.php:124 +msgid "Add widgets here to appear in your sidebar" +msgstr "Adicione widgets aqui para aparecer em sua barra lateral" + +#. Theme URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "https://wordpress.com/themes/pique/" +msgstr "http://wordpress.com/themes/pique" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "Painel de conteúdo" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed." +msgstr "Adicionar uma imagem de fundo ao seu painel configurando uma imagem destacada na página do editor. Se você não selecionar uma página, este painel não será exibido." + +#: inc/customizer.php:39 +msgid "Add an anchor menu to the front page." +msgstr "Adicione um menu âncora na página inicial" + +#: inc/customizer.php:30 +msgid "This replaces your custom menu—on the front page only—with an automatically-generated menu that links to each of your panels." +msgstr "Isso substitui seu menu customizado na página de frente somente, com um menu gerado automaticamente que faz links a cada um de seus painéis." + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "Configurações do menu" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "Leia Mais %s" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "100%" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "75%" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "50%" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "25%" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "Opacidade da Imagem Destacada" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "Cor de fundo" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "Configure seu tema" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "Depoimentos" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "Pagina de grade" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-full-width.php +msgid "Full-width Page" +msgstr "Página de largura cheia" + +#. Description of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "A one-page scrolling theme for small businesses." +msgstr "Um tema de página-única rolante para pequenos negócios." + +#: single.php:19 +msgid "Next" +msgstr "Avançar" + +#: single.php:18 +msgid "Previous" +msgstr "Anterior" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "Resultados da busca por: %s" + +#. translators: %s: Name of current post +#: inc/template-tags.php:86 +msgid "Edit %1$s %2$s" +msgstr "Editar %1$s %2$s" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "Post" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "Página" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "% Comentários" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "1 Comentário" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "Deixe um comentário" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "Marcado %1$s" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "Publicado em %1$s" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr ", " + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "por %s" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "Painel 8" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "Painel 7" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "Painel 6" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "Painel 5" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "Painel 4" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "Painel 3" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "Painel 2" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "Painel 1" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "Opções do tema" + +#: header.php:24 +msgid "Skip to content" +msgstr "Ir para conteúdo" + +#. Translators: If there are characters in your language that are not +#. * supported by Karla, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:179 +msgctxt "Karla font: on or off" +msgid "on" +msgstr "on" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "ligada" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "Terceira área de widgets do rodapé" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "Segunda área de widgets do rodapé" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "Primeira área de widgets do rodapé" + +#: functions.php:122 +msgid "Sidebar" +msgstr "Lateral" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "Menu Secundário" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "Menu Principal" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "Tema: %1$s por %2$s " + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "Mantido com %s" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "http://br.wordpress.org/" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "Editar" + +#: components/content-none.php:29 +msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." +msgstr "Parece que não encontramos o que você está procurando. Talvez a ferramenta de pesquisa possa ajudar." + +#: components/content-none.php:24 +msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." +msgstr "Não encontramos nada para estes termos de busca. Tente novamente com palavras-chave diferentes." + +#: components/content-none.php:20 +msgid "Ready to publish your first post? Get started here." +msgstr "Pronto para publicar seu primeiro post? Comece aqui." + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "Nenhum resultado" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "Páginas:" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "Continuar lendo %s " + +#: comments.php:76 +msgid "Comments are closed." +msgstr "Os comentários estão encerrados." + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "Comentários mais recentes" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "Comentários mais antigos" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "Navegação dos comentários" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "Um comentário em “%2$s”" +msgstr[1] "%1$s comentários em “%2$s”" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "Tente olhar nos arquivos mensais. %1$s" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "Categorias mais Usadas" + +#: 404.php:19 +msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" +msgstr "Parece que nada foi encontrado neste lugar. Quem sabe você possa tentar um dos links abaixo ou uma busca?" + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "Ops! Essa página não pode ser encontrada." diff --git a/pique/languages/readme.txt b/pique/languages/readme.txt new file mode 100644 index 000000000..b4065b3fe --- /dev/null +++ b/pique/languages/readme.txt @@ -0,0 +1,7 @@ +Place your theme language files in this directory. + +Please visit the following links to learn more about translating WordPress themes: + +http://codex.wordpress.org/WordPress_in_Your_Language +https://developer.wordpress.org/themes/functionality/localization/ +http://codex.wordpress.org/Function_Reference/load_theme_textdomain diff --git a/pique/languages/ro.mo b/pique/languages/ro.mo new file mode 100644 index 000000000..d5c6078f8 Binary files /dev/null and b/pique/languages/ro.mo differ diff --git a/pique/languages/ro.po b/pique/languages/ro.po new file mode 100644 index 000000000..98d42378d --- /dev/null +++ b/pique/languages/ro.po @@ -0,0 +1,360 @@ +# Translation of WordPress.com - Themes - Pique in Romanian +# This file is distributed under the same license as the WordPress.com - Themes - Pique package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-10-27 09:48:51+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: ro\n" +"Project-Id-Version: WordPress.com - Themes - Pique\n" + +#. translators: number of items in the mini cart. +#: inc/woocommerce.php:255 +msgid "%d item" +msgid_plural "%d items" +msgstr[0] "%d element" +msgstr[1] "%d elemente" +msgstr[2] "%d de elemente" + +#: inc/woocommerce.php:252 +msgid "View your shopping cart" +msgstr "Vezi coșul tău de cumpărături" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "Accent secundar" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "Accent principal" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "Fundal panou alternativ" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "Fundal panou și meniu" + +#: functions.php:134 functions.php:144 functions.php:154 +msgid "Add widgets here to appear in your footer" +msgstr "Adaugă piese aici ca să apară în subsol" + +#: functions.php:124 +msgid "Add widgets here to appear in your sidebar" +msgstr "Adaugă piese aici ca să apară în bara laterală" + +#. Theme URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "https://wordpress.com/themes/pique/" +msgstr "http://wordpress.com/themes/pique" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "Conținut panou" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed." +msgstr "Adaugă o imagine de fundal în panoul tău prin setarea unei imagini reprezentative în editorul de pagină. Dacă nu selectezi o pagină, acest panou nu va fi afișat." + +#: inc/customizer.php:39 +msgid "Add an anchor menu to the front page." +msgstr "Adaugă un meniu ancoră la pagina din față." + +#: inc/customizer.php:30 +msgid "This replaces your custom menu—on the front page only—with an automatically-generated menu that links to each of your panels." +msgstr "Acest lucru înlocuiește meniul tău personalizat—numai în pagina din față— cu un meniu generat automat care se leagă la fiecare dintre panourile tale." + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "Setări meniu" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "Citește mai mult pe %s" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "100%" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "75%" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "50%" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "25%" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "Opacitate imagine reprezentativă" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "Culoare fundal" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "Configurează setările temei" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "Testimoniale" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "Pagină grilă" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-full-width.php +msgid "Full-width Page" +msgstr "Pagină în lățime completă" + +#. Description of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "A one-page scrolling theme for small businesses." +msgstr "O temă cu derulare pe o singură pagină pentru afaceri mici." + +#: single.php:19 +msgid "Next" +msgstr "Următor" + +#: single.php:18 +msgid "Previous" +msgstr "Precedent" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "Rezultatele căutării pentru: %s" + +#. translators: %s: Name of current post +#: inc/template-tags.php:86 +msgid "Edit %1$s %2$s" +msgstr "Editează %1$s %2$s" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "Articol" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "Pagină" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "% comentarii" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "1 comentariu" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "Lasă un comentariu" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "Etichetat %1$s" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "Publicat în %1$s" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr ", " + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "de %s" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "Panou 8" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "Panou 7" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "Panou 6" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "Panou 5" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "Panou 4" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "Panou 3" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "Panou 2" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "Panou 1" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "Opțiuni temă" + +#: header.php:24 +msgid "Skip to content" +msgstr "Sari la conținut" + +#. Translators: If there are characters in your language that are not +#. * supported by Karla, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:179 +msgctxt "Karla font: on or off" +msgid "on" +msgstr "on" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "on" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "A treia zonă asamblabilă din subsol" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "A doua zonă asamblabilă din subsol" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "Prima zonă asamblabilă din subsol" + +#: functions.php:122 +msgid "Sidebar" +msgstr "Bară laterală" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "Meniu secundar" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "Meniu principal" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "Tema: %1$s de %2$s." + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "Propulsat cu mândrie de %s" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "http://wordpress.org/" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "Editare" + +#: components/content-none.php:29 +msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." +msgstr "Se pare că nu putem găsi ceea ce cauți tu. Poate o căutare ar fi de ajutor." + +#: components/content-none.php:24 +msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." +msgstr "Regret, dar nimic nu se potrivește termenilor căutării tale. Te rog încearcă din nou cu cuvinte cheie diferite." + +#: components/content-none.php:20 +msgid "Ready to publish your first post? Get started here." +msgstr "Gata să publici primul tău articol? Poți începe aici." + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "Nimic găsit" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "Pagini:" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "Citește în continuare %s " + +#: comments.php:76 +msgid "Comments are closed." +msgstr "Comentariile sunt închise." + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "Comentarii mai noi" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "Comentarii mai vechi" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "Navigare în comentarii" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "Un gând despre „%2$s”" +msgstr[1] "%1$s gânduri despre „%2$s”" +msgstr[2] "%1$s de gânduri despre „%2$s”" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "Încearcă să cauți în arhivele lunare. %1$s" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "Cele mai folosite categorii" + +#: 404.php:19 +msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" +msgstr "Se pare că nu a fost găsit nimic la această locație. Poate încerci una din legăturile de mai jos sau o căutare?" + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "Hopa! Acea pagină nu poate fi găsită." diff --git a/pique/languages/ru.mo b/pique/languages/ru.mo new file mode 100644 index 000000000..a924b893f Binary files /dev/null and b/pique/languages/ru.mo differ diff --git a/pique/languages/ru.po b/pique/languages/ru.po new file mode 100644 index 000000000..ed1d19482 --- /dev/null +++ b/pique/languages/ru.po @@ -0,0 +1,329 @@ +# Translation of WordPress.com - Themes - Pique in Russian +# This file is distributed under the same license as the WordPress.com - Themes - Pique package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-10-26 05:33:50+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: ru\n" +"Project-Id-Version: WordPress.com - Themes - Pique\n" + +#: inc/wpcom-colors.php:334 +msgid "Secondary Accent" +msgstr "Вторичный акцент" + +#: inc/wpcom-colors.php:281 +msgid "Main Accent" +msgstr "Основной акцент" + +#: inc/wpcom-colors.php:85 +msgid "Alternate Panel Background" +msgstr "Альтернативный фон панели" + +#: inc/wpcom-colors.php:78 +msgid "Panel & Menu Background" +msgstr "Панель и фон меню" + +#: functions.php:134 functions.php:144 functions.php:154 +msgid "Add widgets here to appear in your footer" +msgstr "Добавьте виджеты тут чтобы они отображались в подвале" + +#: functions.php:124 +msgid "Add widgets here to appear in your sidebar" +msgstr "Добавьте виджеты тут чтобы они отображались на боковой панели" + +#. Theme URI of the plugin/theme +#: wp-content/themes/pub/pique/style.css +msgid "https://wordpress.com/themes/pique/" +msgstr "http://wordpress.com/themes/pique" + +#: inc/customizer.php:58 inc/customizer.php:109 inc/customizer.php:160 +#: inc/customizer.php:211 inc/customizer.php:262 inc/customizer.php:313 +#: inc/customizer.php:364 inc/customizer.php:415 +msgid "Panel Content" +msgstr "Содержимое панели" + +#: inc/customizer.php:49 inc/customizer.php:100 inc/customizer.php:151 +#: inc/customizer.php:202 inc/customizer.php:253 inc/customizer.php:304 +#: inc/customizer.php:355 inc/customizer.php:406 +msgid "Add a background image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed." +msgstr "Добавьте фоновое изображение к вашей панели путем установки избранного изображения в редакторе страницы. Если вы не выберете страницу, эта панель не будет показываться." + +#: inc/customizer.php:30 +msgid "This replaces your custom menu—on the front page only—with an automatically-generated menu that links to each of your panels." +msgstr "Это заменяет пользовательское меню (только на главной странице) автоматически сгенерированным меню, которое ссылается на все Ваши панели." + +#: inc/customizer.php:28 +msgid "Menu Settings" +msgstr "Настройки меню" + +#: inc/extras.php:224 +msgid "Read more %s" +msgstr "Читать дальше %s" + +#: inc/customizer.php:90 inc/customizer.php:141 inc/customizer.php:192 +#: inc/customizer.php:243 inc/customizer.php:294 inc/customizer.php:345 +#: inc/customizer.php:396 inc/customizer.php:447 +msgid "100%" +msgstr "100%" + +#: inc/customizer.php:89 inc/customizer.php:140 inc/customizer.php:191 +#: inc/customizer.php:242 inc/customizer.php:293 inc/customizer.php:344 +#: inc/customizer.php:395 inc/customizer.php:446 +msgid "75%" +msgstr "75%" + +#: inc/customizer.php:88 inc/customizer.php:139 inc/customizer.php:190 +#: inc/customizer.php:241 inc/customizer.php:292 inc/customizer.php:343 +#: inc/customizer.php:394 inc/customizer.php:445 +msgid "50%" +msgstr "50%" + +#: inc/customizer.php:87 inc/customizer.php:138 inc/customizer.php:189 +#: inc/customizer.php:240 inc/customizer.php:291 inc/customizer.php:342 +#: inc/customizer.php:393 inc/customizer.php:444 +msgid "25%" +msgstr "25%" + +#: inc/customizer.php:82 inc/customizer.php:133 inc/customizer.php:184 +#: inc/customizer.php:235 inc/customizer.php:286 inc/customizer.php:337 +#: inc/customizer.php:388 inc/customizer.php:439 +msgid "Featured Image Opacity" +msgstr "Прозрачность избранного изображения" + +#: inc/customizer.php:70 inc/customizer.php:121 inc/customizer.php:172 +#: inc/customizer.php:223 inc/customizer.php:274 inc/customizer.php:325 +#: inc/customizer.php:376 inc/customizer.php:427 inc/wpcom-colors.php:25 +msgid "Background Color" +msgstr "Цвет фона" + +#: inc/customizer.php:23 +msgid "Configure your theme settings" +msgstr "Измените настройки вашей темы" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-testimonials.php +msgid "Testimonials" +msgstr "Отзывы" + +#. Template Name of the plugin/theme +#: wp-content/themes/pub/pique/page-templates/template-grid.php +msgid "Grid Page" +msgstr "Страница-сетка" + +#: single.php:19 +msgid "Next" +msgstr "Далее" + +#: single.php:18 +msgid "Previous" +msgstr "Назад" + +#: search.php:17 +msgid "Search Results for: %s" +msgstr "Результаты поиска для: %s" + +#: inc/template-tags.php:81 +msgid "Post" +msgstr "Публикация" + +#: inc/template-tags.php:79 +msgid "Page" +msgstr "Страница" + +#: inc/template-tags.php:62 +msgid "% Comments" +msgstr "Комментарии (%)" + +#: inc/template-tags.php:62 +msgid "1 Comment" +msgstr "1 комментарий" + +#: inc/template-tags.php:62 +msgid "Leave a comment" +msgstr "Оставить комментарий" + +#: inc/template-tags.php:57 +msgid "Tagged %1$s" +msgstr "Метки: %1$s" + +#: inc/template-tags.php:51 +msgid "Posted in %1$s" +msgstr "Рубрика: %1$s" + +#. translators: used between list items, there is a space after the comma +#: inc/template-tags.php:49 inc/template-tags.php:55 +msgid ", " +msgstr ", " + +#: inc/template-tags.php:30 +msgctxt "post author" +msgid "by %s" +msgstr "автором %s" + +#: inc/customizer.php:403 +msgid "Panel 8" +msgstr "Панель 8" + +#: inc/customizer.php:352 +msgid "Panel 7" +msgstr "Панель 7" + +#: inc/customizer.php:301 +msgid "Panel 6" +msgstr "Панель 6" + +#: inc/customizer.php:250 +msgid "Panel 5" +msgstr "Панель 5" + +#: inc/customizer.php:199 +msgid "Panel 4" +msgstr "Панель 4" + +#: inc/customizer.php:148 +msgid "Panel 3" +msgstr "Панель 3" + +#: inc/customizer.php:97 +msgid "Panel 2" +msgstr "Панель 2" + +#: inc/customizer.php:46 +msgid "Panel 1" +msgstr "Панель 1" + +#: inc/customizer.php:22 +msgid "Theme Options" +msgstr "Настройки темы" + +#: header.php:24 +msgid "Skip to content" +msgstr "Перейти к содержимому" + +#. Translators: If there are characters in your language that are not +#. * supported by Karla, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:179 +msgctxt "Karla font: on or off" +msgid "on" +msgstr "off" + +#. Translators: If there are characters in your language that are not +#. * supported by Lora, translate this to 'off'. Do not translate +#. * into your own language. +#: functions.php:173 +msgctxt "Lora font: on or off" +msgid "on" +msgstr "on" + +#: functions.php:152 +msgid "Third Footer Widget Area" +msgstr "Третья область подвала" + +#: functions.php:142 +msgid "Second Footer Widget Area" +msgstr "Вторая область подвала" + +#: functions.php:132 +msgid "First Footer Widget Area" +msgstr "Первая область подвала" + +#: functions.php:122 +msgid "Sidebar" +msgstr "Боковая колонка" + +#: functions.php:50 +msgid "Secondary Menu" +msgstr "Вторичное меню" + +#: functions.php:49 +msgid "Primary Menu" +msgstr "Основное меню" + +#: footer.php:27 +msgid "Theme: %1$s by %2$s." +msgstr "Тема: %1$s, автор: %2$s." + +#: footer.php:25 +msgid "Proudly powered by %s" +msgstr "Сайт работает на %s" + +#: footer.php:25 +msgid "http://wordpress.org/" +msgstr "http://wordpress.org/" + +#: components/content-page.php:13 components/content-testimonial.php:22 +#: inc/template-tags.php:36 +msgid "Edit" +msgstr "Изменить" + +#: components/content-none.php:29 +msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." +msgstr "Запрошенную информацию найти не удалось. Возможно, будет полезен поиск по сайту." + +#: components/content-none.php:24 +msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." +msgstr "Извините, по вашему запросу ничего не найдено. Попробуйте другие ключевые слова." + +#: components/content-none.php:20 +msgid "Ready to publish your first post? Get started here." +msgstr "Готовы опубликовать свою первую запись? Начните отсюда." + +#: components/content-none.php:14 +msgid "Nothing Found" +msgstr "Ничего не найдено" + +#: components/content-front.php:101 components/content-page.php:22 +#: components/content-single.php:22 components/content.php:46 +msgid "Pages:" +msgstr "Страницы:" + +#. translators: %s: Name of current post +#: components/content-front.php:34 components/content-hero.php:22 +msgid "Continue reading %s " +msgstr "Читать далее %s " + +#: comments.php:76 +msgid "Comments are closed." +msgstr "Комментарии запрещены." + +#: comments.php:43 comments.php:65 +msgid "Newer Comments" +msgstr "Следующие комментарии" + +#: comments.php:42 comments.php:64 +msgid "Older Comments" +msgstr "Предыдущие комментарии" + +#: comments.php:39 comments.php:61 +msgid "Comment navigation" +msgstr "Навигация по комментариям" + +#: comments.php:30 +msgctxt "comments title" +msgid "One thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "%2$s: Один комментарий" +msgstr[1] "%2$s: %1$s комментария" +msgstr[2] "%2$s: %1$s комментариев" + +#. translators: %1$s: smiley +#: 404.php:47 +msgid "Try looking in the monthly archives. %1$s" +msgstr "Попробуйте поискать в ежемесячных архивах. %1$s" + +#: 404.php:30 +msgid "Most Used Categories" +msgstr "Самые используемые рубрики" + +#: 404.php:19 +msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" +msgstr "По этому адресу ничего не найдено. Воспользуйтесь одной из следующих ссылок или поиском." + +#: 404.php:15 +msgid "Oops! That page can’t be found." +msgstr "Ой! Страница не найдена." diff --git a/pique/page-templates/template-full-width.php b/pique/page-templates/template-full-width.php new file mode 100644 index 000000000..41a9dfcca --- /dev/null +++ b/pique/page-templates/template-full-width.php @@ -0,0 +1,29 @@ + + +
+
+ + + + + + + + + +
+
+ + diff --git a/pique/page-templates/template-grid.php b/pique/page-templates/template-grid.php new file mode 100644 index 000000000..2f1793041 --- /dev/null +++ b/pique/page-templates/template-grid.php @@ -0,0 +1,32 @@ + + +
+
+ + + + + + + + + + + +
+
+ + + diff --git a/pique/page-templates/template-testimonials.php b/pique/page-templates/template-testimonials.php new file mode 100644 index 000000000..b6700f59a --- /dev/null +++ b/pique/page-templates/template-testimonials.php @@ -0,0 +1,51 @@ + + +
+
+ + + + + + 'jetpack-testimonial', + 'order' => 'ASC', + 'orderby' => 'order', + 'posts_per_page' => 24, + 'no_found_rows' => true, + ) ); + ?> + + have_posts() ) : ?> +
+ have_posts() ) : $testimonials->the_post(); + get_template_part( 'components/content', 'testimonial' ); + endwhile; + wp_reset_postdata(); + ?> +
+ + + + + + +
+
+ + + diff --git a/pique/page.php b/pique/page.php new file mode 100644 index 000000000..658c96d0b --- /dev/null +++ b/pique/page.php @@ -0,0 +1,35 @@ + + +
+
+ + + + + + + + + +
+
+ + + + diff --git a/pique/readme.txt b/pique/readme.txt new file mode 100644 index 000000000..8020714cf --- /dev/null +++ b/pique/readme.txt @@ -0,0 +1,131 @@ +=== Pique === + +Contributors: automattic +Requires at least: 4.0 +Tested up to: 4.6.1 +License: GPLv2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html + +== Description == + +Want to give your business a little pep? Pique is the theme for you! Designed to help you quickly build a one-page scrolling website, Pique is perfect for small businesses like cafes, bakeries, hair salons, and independent shops. + +For more in-depth support, please visit http://wordpress.com/themes/pique + +== Installation == + +1. In your admin panel, go to Appearance > Themes and click the Add New button. +2. Click Upload and Choose File, then select the theme's .zip file. Click Install Now. +3. Click Activate to use your new theme right away. + +== Frequently Asked Questions == + += Does this theme support any plugins? = + +Pique includes support for Infinite Scroll, Site Logo, and Testimonials in Jetpack (jetpack.com). + += How do I set up my front page? = + +When you first activate Pique, your homepage will display posts in a traditional blog format. To set up your one-page template as the homepage, follow these steps: + +* Create a page. +* Go to Settings → Reading and set "Front page displays" to "A static page." +* Select the page created in Step One as “Front page,” and choose another page as “Posts page” to display your blog posts. + +Good news! This theme doesn't need a front-page template—just set a static page as your front page, and you're good to go. On its own, it displays a single panel with a full-screen featured image, your site logo and navigation, and your page content. + +To get your one-page site set up, you'll want to add some more panels. + += How do I add more panels to the front page? = + +Each "panel" is a page. To add additional panels to your Front Page, follow these steps: + +* Create or edit a page. +* Navigate to Customize → Theme Options. From the drop-down, select the page you'd like to appear in the panel. + += How do I set the background image of my panels? = + +To set the background image of a panel, assign a Featured Image to the page. You can also adjust the background color and the opacity of your featured image on top of it, allowing you fine-grained control over the appearance of your page. + +The footer widget uses your Custom Header Image as its background. + += Does this theme come with page templates? = + +Pique comes with three page templates, designed to give you flexibility in the way you arrange your content. To use a page template, edit your page and select the template you'd like under Page Attributes. + +* Grid Template +* Full-Width Template +* Testimonials Template + +You can also show a panel of the four most recent blog posts by adding the page you selected as your “Posts page” as a panel in the Customizer. + += How do I use icons? = + +Pique comes packaged with the Font Awesome icon library so that you have easy access to hundreds of icons. To use an icon, find the icon you're looking for on Font Awesome's website (http://fortawesome.github.io/Font-Awesome/icons/) and copy the code provided. + += How do I use call-to-action buttons? = + +You can add call-to-action buttons to your site by using the following code: +Learn more +Try it out + += How do I add an overlay? = + +Sometimes, you may want to show a smaller area of content with a solid background. This is especially useful if you'd like to show a map in the background, with your content information overlaid on top. This works particularly nicely when combined with a Full-Width Template. + +
This overlay will be aligned to the right-hand side of its panel. You can add any content you'd like here.
+ += How do I add my logo? = + +Site logo functionality requires the Jetpack plugin. +To add your logo, go to Customize → Site Title. Your logo will appear above the site navigation on every page. + += Where can I add menus? = + +Pique allows you to have two meus: one in the theme’s header and one in the footer. To set up your menus, go to Appearance → Menus. + +* Primary Menu * +The primary menu will display at the top of your page. To add links to panels of your Front Page, just add the page to your menu. The theme will handle the rest and make sure it links to the right spot! + +* Dynamic Menu * +If you'd like your front page to automatically show a menu of your panels, you can do this by navigating to Customizer → Theme Options → General Settings and checking "Use a dynamically-generated menu on the front page." Pique will then automatically create a menu for the front page only that will link to each panel. + +* Secondary Menu * +The secondary menu has been designed to provide quick links for your visitors. It only supports top-level links—if you have a child menu item, it won’t be displayed. This secondary menu will be displayed in the footer of your site. It's a good place to put Terms & Conditions and a Privacy Policy, or quick links to important pages on your site. Alternatively, you could use this area to add your social media links. + += How do I display customer testimonials? = +Testimonial functionality requires the Jetpack plugin active on your site. + +There are two ways Pique can show testimonials: + +* The dedicated testimonial archive page displays all testimonials in reverse chronological order, with the newest displayed first. Your testimonial archive page can be found at http://mygroovysite.wordpress.com/testimonial/ +* The Testimonials page template displays two testimonials at random. This allows you to display testimonials as a panel on your Front Page. + +== Credits == + +* Based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) +* normalize.css http://necolas.github.io/normalize.css/, (C) 2012-2016 Nicolas Gallagher and Jonathan Neal, [MIT](http://opensource.org/licenses/MIT) + +== Licensing == + +Pique WordPress theme, Copyright 2016 Automattic +Distributed under the GNU GPL + +Pique WordPress theme bundles the following third-party resources: + +Waypoints library, Copyright 2011-2016 Caleb Troughton +Licensed under the MIT license +Source: https://github.com/imakewebthings/waypoints/blob/master/licenses.txt + +ScrollTo library, Copyright 2007-2016 Ariel Flesler +Licensed under the MIT license +Source: https://github.com/flesler/jquery.scrollTo/blob/master/LICENSE + +Font Awesome, Copyright Dave Gandy +Fonts licensed under the SIL OFL 1.1 license +Code licensed under the MIT license +Source: http://fortawesome.github.io/Font-Awesome/license/ + +Genericons icon font, Copyright 2016 Automattic +Licensed under the terms of the GNU GPL, Version 2 (or later) +Source: http://www.genericons.com diff --git a/pique/rtl.css b/pique/rtl.css new file mode 100644 index 000000000..1cca46485 --- /dev/null +++ b/pique/rtl.css @@ -0,0 +1,157 @@ +/* +Theme Name: Pique + +Adding support for language written in a Right To Left (RTL) direction is easy - +it's just a matter of overwriting all the horizontal positioning attributes +of your CSS stylesheet in a separate stylesheet file named rtl.css. + +http://codex.wordpress.org/Right_to_Left_Language_Support + +*/ + +body { + direction: rtl; + unicode-bidi: embed; +} + +/* Swap around menu elements */ +.main-navigation ul ul { + text-align: right; +} + +/* Hide stuff to the right, rather than left */ +.main-navigation ul ul{ + left: auto; + right: -999em; +} + +.main-navigation li.focus > ul { + left: auto; + right: 0; +} + +/* Adjust teeny menu */ +@media (max-width: 767px) { + .main-navigation a { + padding-right: 10px; + padding-left: 0; + } + + .main-navigation ul ul ul { + padding-left: 0; + padding-right: 25px; + } +} + +/* Swap around direction of menu fly-outs */ +@media (min-width: 768px) { + + .main-navigation ul ul::before { + left: auto; + right: 15px; + } + + .main-navigation ul ul::before { + left: auto; + right: 15px; + } + + .main-navigation #primary-menu > li:nth-last-child(1):hover > ul, + .main-navigation #primary-menu > li:nth-last-child(2):hover > ul { + left: 0; + right: auto; + } + + .main-navigation #primary-menu > li:nth-last-child(1):hover ul::before, + .main-navigation #primary-menu > li:nth-last-child(2):hover ul::before { + left: 15px; + right: auto; + } + + .main-navigation #primary-menu > li:nth-last-child(1) li:hover ul, .main-navigation #primary-menu > li:nth-last-child(2) li:hover u { + left: 103%; + right: auto; + } + +} + +/* Right-align content within panels */ +.pique-grid-three p, +.overlay, +label, +form, +.pique-panel-content .entry-content, +#pique-hero .pique-panel-content .entry-content p, +blockquote p, +.pique-template-testimonials .pique-testimonials article .entry-content p { + text-align: right; +} + +h3, +blockquote cite, +.pique-template-testimonials .pique-testimonials article .entry-content cite, +blockquote p, .pique-template-testimonials .pique-testimonials article .entry-content p, +.widget-title { + text-align: right; +} + +.pique-template-testimonials .pique-testimonials .attachment-pique-thumbnail-avatar { + float: right; + margin-right: 0; + margin-left: 20px; +} + +.pique-template-testimonials .pique-testimonials h2 { + float: right; + text-align: right; +} + +/* Adjust padding on post format icons */ +.sticky .entry-title::before { + margin-left: 0.5em; + margin-right: 0; +} + +/* Swap direction of arrows in read more buttons */ +.archive .read-more a::after, .blog .read-more a::after, .search-results .read-more a::after { + content: '\f060'; +} + +.archive .read-more a:hover, .blog .read-more a:hover, .search-results .read-more a:hover { + padding-left: calc(3em - 40px); + padding-right: 3em; +} + +.archive .read-more a:hover::after, .blog .read-more a:hover::after, .search-results .read-more a:hover::after { + padding-right: 20px; +} + +/* Adjust padding on taxonomy icons */ +.cat-links::before, .tags-links::before { + margin-left: 5px; + margin-right: 0; +} + +/* Float nav arrows */ +.comment-navigation .nav-previous span::before, .posts-navigation .nav-previous span::before, .post-navigation .nav-previous span::before { + float: left; +} + +.comment-navigation .nav-next span::after, .posts-navigation .nav-next span::after, .post-navigation .nav-next span::after { + float: right; +} + +/* Right-align entry meta */ +.entry-meta, .widget_rss .rss-date, .widget_rss cite { + text-align: right; +} + +/* Rearrange comments */ +.comment-author .avatar { + float: right; + margin-right: 0; + margin-left: 0.5em; +} +.reply { + float: left; +} diff --git a/pique/screenshot.png b/pique/screenshot.png new file mode 100644 index 000000000..cb0c412b7 Binary files /dev/null and b/pique/screenshot.png differ diff --git a/pique/search.php b/pique/search.php new file mode 100644 index 000000000..0bc761736 --- /dev/null +++ b/pique/search.php @@ -0,0 +1,45 @@ + + +
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+ + diff --git a/pique/sidebar-footer.php b/pique/sidebar-footer.php new file mode 100644 index 000000000..eed9a9a79 --- /dev/null +++ b/pique/sidebar-footer.php @@ -0,0 +1,30 @@ + + + diff --git a/pique/sidebar.php b/pique/sidebar.php new file mode 100644 index 000000000..408e5f0e0 --- /dev/null +++ b/pique/sidebar.php @@ -0,0 +1,12 @@ + + + diff --git a/pique/single.php b/pique/single.php new file mode 100644 index 000000000..03a760748 --- /dev/null +++ b/pique/single.php @@ -0,0 +1,36 @@ + + +
+
+ + + + + + '' . esc_html__( 'Previous', 'pique' ) . ' %title', + 'next_text' => '' . esc_html__( 'Next', 'pique' ) . ' %title', + ) ); ?> + + + + + +
+
+ + + + diff --git a/pique/style.css b/pique/style.css new file mode 100644 index 000000000..d383d159f --- /dev/null +++ b/pique/style.css @@ -0,0 +1,3844 @@ +/* +Theme Name: Pique +Theme URI: https://wordpress.com/themes/pique/ +Author: Automattic +Author URI: http://wordpress.com/themes/ +Description: A one-page scrolling theme for small businesses. +Version: 1.4.1-wpcom +License: GNU General Public License v2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html +Text Domain: pique +Tags: blog-excerpts, blue, brown, business, classic-menu, clean, contemporary, custom-background, custom-colors, custom-header, custom-menu, dark, dark, featured-image-header, featured-images, fixed-menu, flexible-header, food, full-width-template, infinite-scroll, left-sidebar, light, minimal, modern, multiple-menus, one-column, one-page, post-formats, responsive-layout, rtl-language-support, site-logo, sticky-post, tan, testimonials, theme-options, threaded-comments, translation-ready, two-columns + +This theme, like WordPress, is licensed under the GPL. +Use it to make something cool, have fun, and share what you've learned with others. + +Pique is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc. +Underscores is distributed under the terms of the GNU GPL v2 or later. + +Normalizing styles have been helped along thanks to the fine work of +Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/ +*/ + +/*-------------------------------------------------------------- +>>> TABLE OF CONTENTS: +---------------------------------------------------------------- +# Normalize +# Typography +# Elements +# Forms +# Navigation + ## Links + ## Menus +# Accessibility +# Alignments +# Clearings +# Widgets +# Content + ## Posts and pages + ## Asides + ## Comments +# Infinite scroll +# Media + ## Captions + ## Galleries +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +# Normalize +--------------------------------------------------------------*/ +html { + font-family: sans-serif; + + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +body { + margin: 0; +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +main, +menu, +nav, +section, +summary { + display: block; +} + +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} + +audio:not([controls]) { + display: none; + height: 0; +} + +[hidden], +template { + display: none; +} + +a { + background-color: transparent; +} + +a:active, +a:hover { + outline: 0; +} + +abbr[title] { + border-bottom: 1px dotted; +} + +b, +strong { + font-weight: bold; +} + +dfn { + font-style: italic; +} + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +mark { + background: #ff0; + color: #000; +} + +small { + font-size: 80%; +} + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + border: 0; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 1em 40px; +} + +hr { + box-sizing: content-box; + height: 0; +} + +pre { + overflow: auto; +} + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +button, +.archive .read-more a, +.blog .read-more a, +.search-results .read-more a, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; +} + +button, +.archive .read-more a, +.blog .read-more a, +.search-results .read-more a { + overflow: visible; +} + +button, +.archive .read-more a, +.blog .read-more a, +.search-results .read-more a, +select { + text-transform: none; +} + +button, +.archive .read-more a, +.blog .read-more a, +.search-results .read-more a, +html input[type='button'], +input[type='reset'], +input[type='submit'] { + cursor: pointer; + + -webkit-appearance: button; +} + +button[disabled], +.archive .read-more a[disabled], +.blog .read-more a[disabled], +.search-results .read-more a[disabled], +html input[disabled] { + cursor: default; +} + +button::-moz-focus-inner, +.archive .read-more a::-moz-focus-inner, +.blog .read-more a::-moz-focus-inner, +.search-results .read-more a::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +input { + line-height: normal; +} + +input[type='checkbox'], +input[type='radio'] { + box-sizing: border-box; + padding: 0; +} + +input[type='number']::-webkit-inner-spin-button, +input[type='number']::-webkit-outer-spin-button { + height: auto; +} + +input[type='search'] { + -webkit-appearance: textfield; +} + +input[type='search']::-webkit-search-cancel-button, +input[type='search']::-webkit-search-decoration { + -webkit-appearance: none; +} + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +legend { + border: 0; + padding: 0; +} + +textarea { + overflow: auto; +} + +optgroup { + font-weight: bold; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} + +/*-------------------------------------------------------------- +# Typography +--------------------------------------------------------------*/ +body, +button, +.archive .read-more a, +.blog .read-more a, +.search-results .read-more a, +input, +select, +textarea { + color: #726b60; + font-family: Lora, Georgia, serif; + font-size: 18px; + font-size: 1.125rem; + line-height: 1.5; +} + +h1, +h2, +h3, +blockquote cite, +.pique-template-testimonials .pique-testimonials article .entry-content cite, +.site-branding .site-title, +.widget-title, +h4, +h5, +h6 { + clear: both; + color: #83b6cc; + font-family: Karla, Arial, sans-serif; + font-weight: 400; + line-height: 1.2; +} +h1 a:hover, +h1 a:focus, +h1 a:active, +h2 a:hover, +h2 a:focus, +h2 a:active, +h3 a:hover, +blockquote cite a:hover, +.pique-template-testimonials .pique-testimonials article .entry-content cite a:hover, +.site-branding .site-title a:hover, +.widget-title a:hover, +h3 a:focus, +blockquote cite a:focus, +.pique-template-testimonials .pique-testimonials article .entry-content cite a:focus, +.site-branding .site-title a:focus, +.widget-title a:focus, +h3 a:active, +blockquote cite a:active, +.pique-template-testimonials .pique-testimonials article .entry-content cite a:active, +.site-branding .site-title a:active, +.widget-title a:active, +h4 a:hover, +h4 a:focus, +h4 a:active, +h5 a:hover, +h5 a:focus, +h5 a:active, +h6 a:hover, +h6 a:focus, +h6 a:active { + border-bottom: none; +} + +h1 { + font-family: Lora, Georgia, serif; + font-size: 38.4px; + font-size: 2.4rem; + font-style: italic; +} + +h2 { + font-size: 25.6px; + font-size: 1.6rem; + font-weight: 600; + letter-spacing: 2px; + text-transform: uppercase; +} + +h3, +blockquote cite, +.pique-template-testimonials .pique-testimonials article .entry-content cite, +.site-branding .site-title, +.widget-title { + font-family: Karla, Arial, sans-serif; + font-size: 1.2em; + font-weight: 700; + letter-spacing: 1px; + margin-bottom: 20px; + padding-bottom: 10px; + text-align: left; + text-transform: uppercase; +} + +h4 { + font-size: 1.999em; +} + +h5 { + font-size: 1.414em; +} + +h6 { + font-size: 1em; +} + +p { + margin-bottom: 1.5em; +} + +dfn, +cite, +em, +i { + font-style: italic; +} + +blockquote, +.pique-template-testimonials .pique-testimonials article .entry-content { + border-top: 2px solid; + color: #909090; + font-size: 1.3em; + font-style: italic; + margin: 3em auto; + max-width: 933.33333px; + text-align: center; +} +blockquote:before, +.pique-template-testimonials .pique-testimonials article .entry-content:before { + content: '\201c'; + display: block; + font-family: Georgia, serif; + font-size: 4em; + font-style: normal; + font-weight: bolder; + line-height: 0.25em; + margin: 4px auto 0; + text-shadow: none; +} +blockquote p, +.pique-template-testimonials .pique-testimonials article .entry-content p { + margin: 0; + text-align: left; +} +blockquote cite, +.pique-template-testimonials .pique-testimonials article .entry-content cite { + border: none; + display: block; + font-size: 0.5em; + font-style: normal; + margin-top: 1.5rem; + text-align: right; +} +blockquote cite::before, +.pique-template-testimonials .pique-testimonials article .entry-content cite::before { + content: '—'; +} + +address { + margin: 0 0 1.5em; +} + +pre { + font-family: 'Courier 10 Pitch', Courier, monospace; + font-size: 15px; + font-size: 0.9375rem; + line-height: 1.6; + margin-bottom: 1.6em; + max-width: 100%; + overflow: auto; + padding: 1.6em; +} + +code, +kbd, +tt, +var { + font-family: Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace; + font-size: 15px; + font-size: 0.9375rem; +} + +abbr, +acronym { + border-bottom: 1px dotted #444; + cursor: help; +} + +mark, +ins { + background: #f4f4f4; + text-decoration: none; +} + +big { + font-size: 125%; +} + +/*-------------------------------------------------------------- +# Elements +--------------------------------------------------------------*/ +html { + box-sizing: border-box; +} + +*, +*:before, +*:after { + /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ + box-sizing: inherit; +} + +body { + background: #fff; + /* Fallback for when there is no custom background color defined. */ +} + +blockquote, +.pique-template-testimonials .pique-testimonials article .entry-content, +q { + quotes: '' ''; +} + +hr { + background-color: #e9d5c0; + border: 0; + height: 1px; + margin-bottom: 1.5em; +} + +ul, +ol { + margin: 0 0 1.5em 1.5em; + padding: 0; +} + +ul { + list-style: disc; +} + +ol { + list-style: decimal; +} + +.entry-content ul, +.entry-content ol { + margin-top: 0.5em; +} + +.entry-content li { + margin-bottom: 0.5em; +} + +li > ul, +li > ol { + margin-bottom: 0; + margin-left: 1em; +} + +dt { + color: #909090; + font-weight: bold; +} + +dd { + margin: 0 0 0.5em; +} + +img { + height: auto; + /* Make sure images are scaled correctly. */ + max-width: 100%; + /* Adhere to container width. */ +} + +table { + margin: 0 0 1.5em; + width: 100%; +} + +/*-------------------------------------------------------------- +# Forms +--------------------------------------------------------------*/ +/* Overall form */ +form { + color: #726b60; + text-align: left; +} + +/* Labels */ +label { + color: #5d5d5d; + font-family: Karla, Arial, sans-serif; + font-size: 0.8em; + font-weight: 500; + letter-spacing: 1px; + text-align: left; + text-transform: uppercase; +} + +/* Text inputs */ +input[type='tel'], +input[type='text'], +input[type='email'], +input[type='url'], +input[type='password'], +input[type='search'], +textarea { + background: rgba(255, 255, 255, 0.75); + border: 2px solid #909090; + border-radius: 0; + box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.25); + color: #767676; + font-size: 16px; + font-size: 1rem; + transition: all 0.2s ease-in-out 0s; + width: 100%; +} +input[type='tel']:focus, +input[type='text']:focus, +input[type='email']:focus, +input[type='url']:focus, +input[type='password']:focus, +input[type='search']:focus, +textarea:focus { + background-color: #fff; + border-color: #83b6cc; + color: #83b6cc; + outline: 0; +} + +input[type='tel'], +input[type='text'], +input[type='email'], +input[type='url'], +input[type='password'], +input[type='search'] { + font-style: italic; + padding: 0.5em; +} + +textarea { + padding: 0.5em 0.5em; + width: 100%; +} + +/* Buttons */ +button, +.archive .read-more a, +.blog .read-more a, +.search-results .read-more a, +.button, +input[type='button'], +input[type='reset'], +input[type='submit'] { + background-color: #83b6cc; + border: 2px solid transparent; + border-radius: 2em; + color: #eff6f9; + display: inline-block; + font-family: Karla, Arial, sans-serif; + font-size: 15.2px; + font-size: 0.95rem; + font-weight: bold; + letter-spacing: 1px; + line-height: 1; + padding: 1em 3em; + text-shadow: none; + text-transform: uppercase; + transition: background-color 0.125s ease-in; + + -webkit-appearance: none; +} +@media (max-width: 767px) { + button, + .archive .read-more a, + .blog .read-more a, + .search-results .read-more a, + .button, + input[type='button'], + input[type='reset'], + input[type='submit'] { + width: 75%; + } +} +button:hover, +.archive .read-more a:hover, +.blog .read-more a:hover, +.search-results .read-more a:hover, +.button:hover, +input[type='button']:hover, +input[type='reset']:hover, +input[type='submit']:hover { + background-color: transparent; + border-color: #83b6cc; + color: #83b6cc; +} +button:active, +.archive .read-more a:active, +.blog .read-more a:active, +.search-results .read-more a:active, +button:focus, +.archive .read-more a:focus, +.blog .read-more a:focus, +.search-results .read-more a:focus, +.button:active, +.button:focus, +input[type='button']:active, +input[type='button']:focus, +input[type='reset']:active, +input[type='reset']:focus, +input[type='submit']:active, +input[type='submit']:focus { + background-color: #4488a5; + border-color: #83b6cc; + color: #83b6cc; +} +button.minimal, +.archive .read-more a.minimal, +.blog .read-more a.minimal, +.search-results .read-more a.minimal, +.button.minimal, +input[type='button'].minimal, +input[type='reset'].minimal, +input[type='submit'].minimal { + background-color: #eff6f9; + color: #83b6cc; +} +button.minimal:active, +.archive .read-more a.minimal:active, +.blog .read-more a.minimal:active, +.search-results .read-more a.minimal:active, +button.minimal:focus, +.archive .read-more a.minimal:focus, +.blog .read-more a.minimal:focus, +.search-results .read-more a.minimal:focus, +button.minimal:hover, +.archive .read-more a.minimal:hover, +.blog .read-more a.minimal:hover, +.search-results .read-more a.minimal:hover, +.button.minimal:active, +.button.minimal:focus, +.button.minimal:hover, +input[type='button'].minimal:active, +input[type='button'].minimal:focus, +input[type='button'].minimal:hover, +input[type='reset'].minimal:active, +input[type='reset'].minimal:focus, +input[type='reset'].minimal:hover, +input[type='submit'].minimal:active, +input[type='submit'].minimal:focus, +input[type='submit'].minimal:hover { + background-color: transparent; + border-color: #eff6f9; + color: #eff6f9; +} + +@media (max-width: 767px) { + button + button, + .archive .read-more a + button, + .blog .read-more a + button, + .search-results .read-more a + button, + .archive .read-more button + a, + .archive .read-more a + a, + .blog .read-more button + a, + .blog .read-more a + a, + .search-results .read-more button + a, + .search-results .read-more a + a, + .button + .button { + margin-top: 1em; + } +} + +@media (min-width: 768px) { + button + button, + .archive .read-more a + button, + .blog .read-more a + button, + .search-results .read-more a + button, + .archive .read-more button + a, + .archive .read-more a + a, + .blog .read-more button + a, + .blog .read-more a + a, + .search-results .read-more button + a, + .search-results .read-more a + a, + .button + .button { + margin-left: 0.5em; + } +} + +/* MailChimp-embed-specific */ +#mce-responses + p { + display: none; +} + +/* Comment form-specific */ +.contact-form textarea { + width: 100% !important; + /* Because 80% looks silly */ +} + +/* Search form specific */ +.search-form { + margin-top: 20px; +} +@media (max-width: 767px) { + .search-form { + text-align: center; + } + .search-form .search-submit { + margin-top: 20px; + } +} +@media (min-width: 768px) { + .search-form .search-field { + width: 77%; + } + .search-form .search-submit { + display: inline-block; + } +} + +/*-------------------------------------------------------------- +# Navigation +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## Links +--------------------------------------------------------------*/ +a { + color: #83b6cc; + text-decoration: none; + transition: all 0.2s ease-in-out; +} +a:hover, +a:focus, +a:active { + color: #e9d5c0; +} +a:focus { + outline: thin dotted; +} +a:hover, +a:active { + outline: 0; +} + +/* Make sure lengthy URLs wrap properly */ +.entry-content a, +.widget a { + word-break: break-word; + word-wrap: break-word; +} + +/*-------------------------------------------------------------- +## Menus +--------------------------------------------------------------*/ +#masthead { + background-color: #2d2a26; + height: 240px; + position: relative; + text-align: center; + z-index: 5; +} +#masthead .pique-header { + bottom: 0; + left: 0; + overflow: hidden; + position: absolute; + right: 0; + top: 0; + z-index: -1; +} + +.site-branding { + left: 50%; + position: absolute; + top: 40%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} +.site-branding .site-logo-link { + display: inline-block; + margin: 1rem auto 0; +} +.site-branding .site-logo-link img { + max-height: 75px; + width: auto; +} +@media (min-width: 768px) { + .site-branding .site-logo-link img { + max-height: 100px; + } +} +.site-branding .site-logo-link:hover { + -webkit-transform: scale(5%); + -ms-transform: scale(5%); + transform: scale(5%); +} +.site-branding .site-title { + font-style: normal; + margin: 40px 0 0; + padding: 0; + text-align: center; + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75); +} +.site-branding .site-title a { + color: #fcfbf9; +} +.site-branding .site-logo-link + .site-title { + margin-top: 20px; +} +.site-branding .site-description { + color: #fcfbf9; + font-style: italic; + margin: 0; + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75); +} + +@media (max-width: 767px) { + #masthead { + min-height: 160px; + } + .site-logo-link + .site-title, + .site-description { + display: none; + } + .site-branding { + top: 30%; + } +} + +/* Navigation menu */ +#site-navigation-wrapper { + bottom: 0; + position: absolute; + width: 100%; +} + +.main-navigation { + background: #2d2a26; + border-bottom: 1px solid #49443d; + border-top: 1px solid #49443d; + clear: both; + display: block; + font-family: Karla, Arial, sans-serif; + width: 100%; + z-index: 10000; + /* Current page highlight */ + /* Priority+ menu */ +} +.main-navigation li { + display: inline-block; +} +.main-navigation a { + color: #fcfbf9; + display: inline-block; + font-size: 12.8px; + font-size: 0.8rem; + letter-spacing: 1px; + padding: 12px 15px; + text-transform: uppercase; +} +.main-navigation a:hover { + color: #a7cbdb; +} +.main-navigation .current_page_item > a, +.main-navigation .current-menu-item > a, +.main-navigation .current_page_ancestor > a { + color: #e9d5c0; +} +.main-navigation ul { + display: block; + list-style: none; + margin: 0; + /* Sub-nav */ +} +.main-navigation ul ul { + background: #11100f; + left: -999em; + position: absolute; + text-align: left; + z-index: 99999; +} +.main-navigation ul ul li { + display: block; +} +.main-navigation ul ul a { + border-top: 1px solid rgba(233, 213, 192, 0.1); + color: #e9d5c0; + display: block; + width: 100%; +} +.main-navigation #more-menu { + display: none; +} +.main-navigation #more-menu.visible { + display: inline-block; +} +.main-navigation #more-menu > a::before { + content: '\f476'; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +/* Mobile menu */ +@media (max-width: 767px) { + .main-navigation { + /* Show mobile menus when "focus" class is added via JS */ + /* Sub-menus */ + /* Sub-sub-menus */ + } + .main-navigation a { + padding-left: 10px; + } + .main-navigation li.focus > ul { + left: 0; + } + .main-navigation ul ul { + border-bottom: 1px solid #49443d; + width: 100%; + } + .main-navigation ul ul ul { + border-bottom: none; + left: 0; + padding-left: 25px; + position: relative; + } + .main-navigation ul ul ul a { + padding-left: 0; + } +} + +/* Regular menu */ +@media (min-width: 768px) { + .main-navigation { + left: 50%; + max-width: 1400px; + position: relative; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); + /* Sub-nav */ + /* Sub-sub-menu */ + /* Show sub-menus on hover */ + /* Menu items on the right-hand side of the screen should display to the left, so they don't run off the screen */ + /* Adjust position of arrow for our last two menu items */ + /* Adjust position of sub-nav for these final two menu items also */ + } + .main-navigation ul { + display: block; + list-style: none; + margin: 0; + } + .main-navigation li { + position: relative; + } + .main-navigation ul ul { + left: -999em; + min-width: 200px; + position: absolute; + top: 37px; + /* This is just here to make it easier to scroll down to the drop-down */ + } + .main-navigation ul ul::before { + border-color: transparent transparent #11100f transparent; + border-style: solid; + border-width: 0 7px 7px 7px; + content: ''; + display: block; + height: 0; + left: 15px; + position: absolute; + top: -5px; + width: 0; + } + .main-navigation ul ul::after { + content: ''; + display: block; + height: 20px; + left: 0; + position: absolute; + top: -10px; + width: 100%; + } + .main-navigation ul ul li:first-of-type > a { + border-top: none; + /* Remove border for first child element */ + } + .main-navigation ul ul ul { + left: -999em; + top: 0; + } + .main-navigation ul ul ul::before { + border-color: transparent #11100f transparent transparent; + border-width: 7px 7px 7px 0; + left: -5px; + position: absolute; + top: 15px; + } + .main-navigation ul ul ul::after { + height: 100%; + left: -15px; + top: 0; + width: 20px; + } + .main-navigation li:hover > ul { + left: auto; + } + .main-navigation ul ul li:hover > ul { + left: 103%; + left: calc(100% + 5px); + } + .main-navigation #primary-menu > li:nth-last-child(1):hover > ul, + .main-navigation #primary-menu > li:nth-last-child(2):hover > ul { + left: auto; + right: 5%; + } + .main-navigation #primary-menu > li:nth-last-child(1):hover ul::before, + .main-navigation #primary-menu > li:nth-last-child(2):hover ul::before { + left: auto; + right: 15px; + } + .main-navigation #primary-menu > li:nth-last-child(1) li:hover ul, + .main-navigation #primary-menu > li:nth-last-child(2) li:hover ul { + left: auto; + right: 103%; + right: calc(100% + 5px); + } + .main-navigation #primary-menu > li:nth-last-child(1) li:hover ul::before, + .main-navigation #primary-menu > li:nth-last-child(2) li:hover ul::before { + left: auto; + right: -8px; + } + .main-navigation #primary-menu > li:nth-last-child(1) li:hover ul::after, + .main-navigation #primary-menu > li:nth-last-child(2) li:hover ul::after { + left: auto; + right: -15px; + } + /* Sticky menu */ + .sticky { + bottom: auto; + position: fixed; + top: 0; + } +} + +/* Account for the admin bar */ +@media screen and (min-width: 600px) and (max-width: 782px) { + .admin-bar .main-navigation.sticky { + top: 46px; + } +} + +@media screen and (min-width: 782px) { + .admin-bar .main-navigation.sticky { + top: 32px; + } +} + +.secondary-links ul { + margin: 0; + padding: 0; +} +.secondary-links ul li { + display: inline; +} +.secondary-links ul li a::after { + content: ' · '; + display: inline; +} +.secondary-links ul li:last-child a::after { + display: none; +} + +.comment-navigation, +.posts-navigation, +.post-navigation { + border-bottom: 2px solid #a7cbdb; + border-top: 1px solid #a7cbdb; + clear: both; +} +.site-main .comment-navigation, +.site-main + .posts-navigation, +.site-main + .post-navigation { + margin: 20px 0; + overflow: hidden; +} +.comment-navigation .nav-previous a, +.comment-navigation .nav-next a, +.posts-navigation .nav-previous a, +.posts-navigation .nav-next a, +.post-navigation .nav-previous a, +.post-navigation .nav-next a { + color: #a7cbdb; + display: block; + font-size: 18.4px; + font-size: 1.15rem; + font-style: italic; + line-height: 1.2; + padding: 20px 0; +} +.comment-navigation .nav-previous a span, +.comment-navigation .nav-next a span, +.posts-navigation .nav-previous a span, +.posts-navigation .nav-next a span, +.post-navigation .nav-previous a span, +.post-navigation .nav-next a span { + color: #71abc5; + display: block; + font-family: Karla, Arial, sans-serif; + font-size: 12px; + font-size: 0.75rem; + font-style: normal; + font-weight: bold; + letter-spacing: 1px; + padding-bottom: 5px; + text-transform: uppercase; +} +.comment-navigation .nav-previous a:hover, +.comment-navigation .nav-next a:hover, +.posts-navigation .nav-previous a:hover, +.posts-navigation .nav-next a:hover, +.post-navigation .nav-previous a:hover, +.post-navigation .nav-next a:hover { + color: #3c7993; +} +.comment-navigation .nav-previous, +.posts-navigation .nav-previous, +.post-navigation .nav-previous { + text-align: left; +} +.comment-navigation .nav-previous span::before, +.posts-navigation .nav-previous span::before, +.post-navigation .nav-previous span::before { + content: '\2190'; + display: inline-block; + display: inline-block; + font-family: FontAwesome; + font-size: 12px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 5px; + text-decoration: none; + vertical-align: 1px; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} +.comment-navigation .nav-next, +.posts-navigation .nav-next, +.post-navigation .nav-next { + text-align: right; +} +.comment-navigation .nav-next span::after, +.posts-navigation .nav-next span::after, +.post-navigation .nav-next span::after { + content: '\2192'; + display: inline-block; + display: inline-block; + font-family: FontAwesome; + font-size: 14px; + font-size: 12px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-left: 5px; + text-decoration: none; + vertical-align: 1px; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} +@media (min-width: 768px) { + .comment-navigation .nav-previous, + .posts-navigation .nav-previous, + .post-navigation .nav-previous { + float: left; + text-align: left; + width: 50%; + } + .comment-navigation .nav-next, + .posts-navigation .nav-next, + .post-navigation .nav-next { + float: right; + text-align: right; + width: 50%; + } +} + +.site-main .posts-navigation { + border: none; + margin: 20px 40px; +} +@media (max-width: 767px) { + .site-main .posts-navigation { + margin: 10px 20px; + } + .site-main .posts-navigation .nav-previous { + float: left; + text-align: left; + width: 50%; + } + .site-main .posts-navigation .nav-next { + float: right; + text-align: right; + width: 50%; + } +} + +.widget.jetpack_widget_social_icons, +.widget.widget_wpcom_social_media_icons_widget { + margin: 0 auto; + padding: 0; +} +.widget.jetpack_widget_social_icons ul, +.widget.widget_wpcom_social_media_icons_widget ul { + list-style: none; + margin: 0 0 20px 0; + padding: 0; +} +.widget.jetpack_widget_social_icons ul li, +.widget.widget_wpcom_social_media_icons_widget ul li { + display: inline-block; + list-style: none; + margin: 0 10px 10px 0; + padding: 0; +} +.widget.jetpack_widget_social_icons ul a, +.widget.widget_wpcom_social_media_icons_widget ul a { + background: #2d2a26; + border: 2px solid #e9d5c0; + border-radius: 50%; + display: inline-block; + padding: 0; + text-decoration: none; +} +.widget.jetpack_widget_social_icons ul a { + color: #e9d5c0; +} +.widget.widget_wpcom_social_media_icons_widget ul a::before { + color: #e9d5c0; + display: inline-block; + display: block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + height: 32px; + line-height: 1; + line-height: 1; + padding: 8px; + text-align: center; + text-decoration: none; + transition: 0.2s all ease-in-out; + vertical-align: text-bottom; + width: 32px; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} +.widget.jetpack_widget_social_icons ul a:hover, +.widget.widget_wpcom_social_media_icons_widget ul a:hover { + background: #e9d5c0; + border: 2px solid; + border-color: #2d2a26; +} +.widget.jetpack_widget_social_icons ul a:hover, +.widget.widget_wpcom_social_media_icons_widget ul a:hover::before { + color: #2d2a26; +} +.widget.jetpack_widget_social_icons ul.size-small a { + height: 40px; + padding: 6px; + width: 40px; +} +.widget.jetpack_widget_social_icons ul.size-small svg { + height: 24px; + width: 24px; +} +.widget.jetpack_widget_social_icons ul.size-medium a { + height: 52px; + padding: 8px; + width: 52px; +} +.widget.jetpack_widget_social_icons ul.size-medium svg { + height: 32px; + width: 32px; +} +.widget.jetpack_widget_social_icons ul.size-large a { + height: 72px; + padding: 10px; + width: 72px; +} +.widget.jetpack_widget_social_icons ul.size-large svg { + height: 48px; + width: 48px; +} + +.secondary-links li a[href*='wordpress.org'], +.secondary-links li a[href*='facebook.com'], +.secondary-links li a[href*='twitter.com'], +.secondary-links li a[href*='dribbble.com'], +.secondary-links li a[href*='plus.google.com'], +.secondary-links li a[href*='pinterest.com'], +.secondary-links li a[href*='github.com'], +.secondary-links li a[href*='tumblr.com'], +.secondary-links li a[href*='youtube.com'], +.secondary-links li a[href*='flickr.com'], +.secondary-links li a[href*='vimeo.com'], +.secondary-links li a[href*='instagram.com'], +.secondary-links li a[href*='codepen.io'], +.secondary-links li a[href*='linkedin.com'], +.secondary-links li a[href*='foursquare.com'], +.secondary-links li a[href*='reddit.com'], +.secondary-links li a[href*='digg.com'], +.secondary-links li a[href*='getpocket.com'], +.secondary-links li a[href*='path.com'], +.secondary-links li a[href*='stumbleupon.com'], +.secondary-links li a[href*='spotify.com'], +.secondary-links li a[href*='twitch.tv'], +.secondary-links li a[href*='dropbox.com'], +.secondary-links li a[href*='/feed'], +.secondary-links li a[href*='skype'], +.secondary-links li a[href*='mailto'] { + display: inline-block; + height: 32px; + margin-right: 5px; + overflow: hidden; + vertical-align: middle; + width: 32px; +} +.secondary-links li a[href*='wordpress.org']::before, +.secondary-links li a[href*='facebook.com']::before, +.secondary-links li a[href*='twitter.com']::before, +.secondary-links li a[href*='dribbble.com']::before, +.secondary-links li a[href*='plus.google.com']::before, +.secondary-links li a[href*='pinterest.com']::before, +.secondary-links li a[href*='github.com']::before, +.secondary-links li a[href*='tumblr.com']::before, +.secondary-links li a[href*='youtube.com']::before, +.secondary-links li a[href*='flickr.com']::before, +.secondary-links li a[href*='vimeo.com']::before, +.secondary-links li a[href*='instagram.com']::before, +.secondary-links li a[href*='codepen.io']::before, +.secondary-links li a[href*='linkedin.com']::before, +.secondary-links li a[href*='foursquare.com']::before, +.secondary-links li a[href*='reddit.com']::before, +.secondary-links li a[href*='digg.com']::before, +.secondary-links li a[href*='getpocket.com']::before, +.secondary-links li a[href*='path.com']::before, +.secondary-links li a[href*='stumbleupon.com']::before, +.secondary-links li a[href*='spotify.com']::before, +.secondary-links li a[href*='twitch.tv']::before, +.secondary-links li a[href*='dropbox.com']::before, +.secondary-links li a[href*='/feed']::before, +.secondary-links li a[href*='skype']::before, +.secondary-links li a[href*='mailto']::before { + background: #2d2a26; + border: 2px solid #e9d5c0; + border-radius: 50%; + color: #e9d5c0; + display: inline-block; + display: block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + height: 32px; + line-height: 1; + line-height: 1; + padding: 6px; + text-align: center; + text-decoration: none; + transition: 0.2s all ease-in-out; + vertical-align: text-bottom; + width: 32px; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} +.secondary-links li a[href*='wordpress.org']:hover::before, +.secondary-links li a[href*='facebook.com']:hover::before, +.secondary-links li a[href*='twitter.com']:hover::before, +.secondary-links li a[href*='dribbble.com']:hover::before, +.secondary-links li a[href*='plus.google.com']:hover::before, +.secondary-links li a[href*='pinterest.com']:hover::before, +.secondary-links li a[href*='github.com']:hover::before, +.secondary-links li a[href*='tumblr.com']:hover::before, +.secondary-links li a[href*='youtube.com']:hover::before, +.secondary-links li a[href*='flickr.com']:hover::before, +.secondary-links li a[href*='vimeo.com']:hover::before, +.secondary-links li a[href*='instagram.com']:hover::before, +.secondary-links li a[href*='codepen.io']:hover::before, +.secondary-links li a[href*='linkedin.com']:hover::before, +.secondary-links li a[href*='foursquare.com']:hover::before, +.secondary-links li a[href*='reddit.com']:hover::before, +.secondary-links li a[href*='digg.com']:hover::before, +.secondary-links li a[href*='getpocket.com']:hover::before, +.secondary-links li a[href*='path.com']:hover::before, +.secondary-links li a[href*='stumbleupon.com']:hover::before, +.secondary-links li a[href*='spotify.com']:hover::before, +.secondary-links li a[href*='twitch.tv']:hover::before, +.secondary-links li a[href*='dropbox.com']:hover::before, +.secondary-links li a[href*='/feed']:hover::before, +.secondary-links li a[href*='skype']:hover::before, +.secondary-links li a[href*='mailto']:hover::before { + background: #e9d5c0; + border-color: #2d2a26; + color: #2d2a26; +} +.secondary-links li a[href*='wordpress.org']::after, +.secondary-links li a[href*='facebook.com']::after, +.secondary-links li a[href*='twitter.com']::after, +.secondary-links li a[href*='dribbble.com']::after, +.secondary-links li a[href*='plus.google.com']::after, +.secondary-links li a[href*='pinterest.com']::after, +.secondary-links li a[href*='github.com']::after, +.secondary-links li a[href*='tumblr.com']::after, +.secondary-links li a[href*='youtube.com']::after, +.secondary-links li a[href*='flickr.com']::after, +.secondary-links li a[href*='vimeo.com']::after, +.secondary-links li a[href*='instagram.com']::after, +.secondary-links li a[href*='codepen.io']::after, +.secondary-links li a[href*='linkedin.com']::after, +.secondary-links li a[href*='foursquare.com']::after, +.secondary-links li a[href*='reddit.com']::after, +.secondary-links li a[href*='digg.com']::after, +.secondary-links li a[href*='getpocket.com']::after, +.secondary-links li a[href*='path.com']::after, +.secondary-links li a[href*='stumbleupon.com']::after, +.secondary-links li a[href*='spotify.com']::after, +.secondary-links li a[href*='twitch.tv']::after, +.secondary-links li a[href*='dropbox.com']::after, +.secondary-links li a[href*='/feed']::after, +.secondary-links li a[href*='skype']::after, +.secondary-links li a[href*='mailto']::after { + display: none; +} + +.secondary-links li a[href*='wordpress.org']:before { + content: '\f205'; +} + +.secondary-links li a[href*='facebook.com']:before { + content: '\f204'; +} + +.secondary-links li a[href*='twitter.com']:before { + content: '\f202'; +} + +.secondary-links li a[href*='dribbble.com']:before { + content: '\f201'; +} + +.secondary-links li a[href*='plus.google.com']:before { + content: '\f206'; +} + +.secondary-links li a[href*='pinterest.com']:before { + content: '\f209'; +} + +.secondary-links li a[href*='github.com']:before { + content: '\f200'; +} + +.secondary-links li a[href*='tumblr.com']:before { + content: '\f214'; +} + +.secondary-links li a[href*='youtube.com']:before { + content: '\f213'; +} + +.secondary-links li a[href*='flickr.com']:before { + content: '\f211'; +} + +.secondary-links li a[href*='vimeo.com']:before { + content: '\f212'; +} + +.secondary-links li a[href*='instagram.com']:before { + content: '\f215'; +} + +.secondary-links li a[href*='codepen.io']:before { + content: '\f216'; +} + +.secondary-links li a[href*='linkedin.com']:before { + content: '\f207'; +} + +.secondary-links li a[href*='foursquare.com']:before { + content: '\f226'; +} + +.secondary-links li a[href*='reddit.com']:before { + content: '\f222'; +} + +.secondary-links li a[href*='digg.com']:before { + content: '\f221'; +} + +.secondary-links li a[href*='getpocket.com']:before { + content: '\f224'; +} + +.secondary-links li a[href*='path.com']:before { + content: '\f219'; +} + +.secondary-links li a[href*='stumbleupon.com']:before { + content: '\f223'; +} + +.secondary-links li a[href*='spotify.com']:before { + content: '\f515'; +} + +.secondary-links li a[href*='twitch.tv']:before { + content: '\f516'; +} + +.secondary-links li a[href*='dropbox.com']:before { + content: '\f225'; +} + +.secondary-links li a[href*='/feed']:before { + content: '\f413'; +} + +.secondary-links li a[href*='skype']:before { + content: '\f220'; +} + +.secondary-links li a[href*='mailto']:before { + content: '\f410'; +} + +/*-------------------------------------------------------------- +# Accessibility +--------------------------------------------------------------*/ +/* Text meant only for screen readers. */ +.screen-reader-text { + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + overflow: hidden; + position: absolute !important; + width: 1px; +} +.screen-reader-text:hover, +.screen-reader-text:active, +.screen-reader-text:focus { + background-color: #f4f4f4; + border-radius: 3px; + box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); + clip: auto !important; + color: #2d2a26; + display: block; + font-size: 14px; + font-size: 0.875rem; + font-weight: bold; + height: auto; + left: 5px; + line-height: normal; + padding: 15px 23px 14px; + text-decoration: none; + top: 5px; + width: auto; + z-index: 100000; + /* Above WP toolbar. */ +} + +/*-------------------------------------------------------------- +# Alignments +--------------------------------------------------------------*/ +.alignleft { + display: inline; + float: left; + margin-right: 1.5em; +} + +.alignright { + display: inline; + float: right; + margin-left: 1.5em; +} + +.aligncenter { + display: block; + margin-left: auto; + margin-right: auto; +} + +/*-------------------------------------------------------------- +# Clearings +--------------------------------------------------------------*/ +.clear:before, +.clear:after, +.entry-content:before, +.entry-content:after, +.comment-content:before, +.comment-content:after, +.site-header:before, +.site-header:after, +.site-content:before, +.site-content:after, +.site-footer:before, +.site-footer:after { + content: ''; + display: table; + table-layout: fixed; +} + +.clear:after, +.entry-content:after, +.comment-content:after, +.site-header:after, +.site-content:after, +.site-footer:after { + clear: both; +} + +/*-------------------------------------------------------------- +# Widgets +--------------------------------------------------------------*/ +.widget { + border-top: 2px solid #83b6cc; + font-family: Karla, Arial, sans-serif; + margin: 0 0 1.5em; + /* Make sure select elements fit in nicely with their friends. */ + /* Consistency across header elements within widgets */ +} +.widget select { + font-family: Karla, Arial, sans-serif; + font-size: 15.2px; + font-size: 0.95rem; + max-width: 100%; +} +.widget h2:not(.widget-title), +.widget h3:not(.widget-title), +.widget blockquote cite:not(.widget-title), +blockquote + .widget cite:not(.widget-title), +.widget .pique-template-testimonials .pique-testimonials article .entry-content cite:not(.widget-title), +.pique-template-testimonials .pique-testimonials article .entry-content + .widget cite:not(.widget-title), +.widget .site-branding .site-title:not(.widget-title), +.site-branding + .widget .site-title:not(.widget-title), +.widget .widget-title:not(.widget-title), +.widget h4:not(.widget-title) { + font-family: Lora, Georgia, serif; + font-size: 28.8px; + font-size: 1.8rem; + font-style: italic; + font-weight: normal; + letter-spacing: 0; + text-transform: none; +} + +/* Search widget */ +.widget_search .search-form .search-field { + width: 100%; +} + +.widget_search .search-submit { + display: none; +} + +/* Lists in widgets (pages, categories, comments, etc) */ +.widget ul { + list-style-type: none; + margin: 0; + padding: 0; +} +.widget ul a { + border-top: 1px solid rgba(233, 213, 192, 0.5); + color: #2d2a26; + display: block; + padding: 7px 0; +} +.widget ul a:hover { + background-color: rgba(233, 213, 192, 0.15); + border-bottom: none; +} +.widget ul .sub-menu { + margin-left: 1em; + padding: 0; +} + +/* Archive widgets */ +.widget_archive ul li, +.widget_categories ul li { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + + -webkit-align-items: baseline; + align-items: baseline; + -ms-flex-align: baseline; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} +.widget_archive ul li a, +.widget_categories ul li a { + border: none; + display: inline-block; + + -ms-flex-order: 1; + -webkit-order: 1; + order: 1; +} +.widget_archive ul li::before, +.widget_categories ul li::before { + border-bottom: 1px dotted #d5af87; + content: ''; + margin: 0.25em 3px; + + -webkit-flex-grow: 1; + flex-grow: 1; + -ms-flex-order: 2; + -ms-flex-positive: 1; + -webkit-order: 2; + order: 2; +} +.widget_archive ul li .post-count, +.widget_categories ul li .post-count { + padding-top: 0.5em; + + -ms-flex-order: 3; + -webkit-order: 3; + order: 3; +} +.widget_archive ul li ul, +.widget_categories ul li ul { + margin-left: 1em; + + -webkit-flex-basis: 100%; + flex-basis: 100%; + -webkit-flex-grow: 0; + flex-grow: 0; + -ms-flex-order: 4; + -ms-flex-positive: 0; + -ms-flex-preferred-size: 100%; + -webkit-order: 4; + order: 4; +} + +/* Comment widget */ +.widget_recent_comments li { + border-top: 1px solid rgba(233, 213, 192, 0.5); + font-family: Lora, Georgia, serif; + font-style: italic; + padding: 7px 0; + /*.comment-author-link::after, + > a::before { + display: inline; + content: "—"; + }*/ +} +.widget_recent_comments li a { + border: 0; + display: inline-block; + font-family: Karla, Arial, sans-serif; + font-style: normal; +} + +/* RSS widget */ +.widget_rss .rsswidget { + margin-bottom: -7px; +} + +.widget_rss .rssSummary { + font-family: Lora, Georgia, serif; + font-style: italic; +} + +.widget_rss cite { + display: block; + font-style: normal; + padding-bottom: 7px; + text-align: right; +} + +/* Text widget */ +.textwidget { + font-family: Lora, Georgia, serif; + font-size: 1.2em; + font-style: italic; +} + +/* Tag cloud widget */ +.widget_tag_cloud .tagcloud { + font-family: Lora, Georgia, serif; + font-style: italic; +} + +/* Calendar widget */ +.widget_calendar { + line-height: 2.4; +} +.widget_calendar #calendar-wrap { + margin-left: auto; + margin-right: auto; + max-width: 500px; +} +.widget_calendar caption { + font-family: Lora, Georgia, serif; + font-style: italic; + margin-bottom: 5px; +} +.widget_calendar thead { + border-bottom: 1px solid rgba(233, 213, 192, 0.5); +} +.widget_calendar td { + text-align: center; +} +.widget_calendar #prev { + text-align: left; +} +.widget_calendar #next { + text-align: right; +} + +/*-------------------------------------------------------------- +# Structure +--------------------------------------------------------------*/ +.site { + background: rgba(252, 251, 249, 0.9); + box-shadow: 0 0 6px rgba(0, 0, 0, 0.1); + margin: 0 auto; + max-width: 1400px; +} + +.site-content { + margin: 0 auto; + padding: 20px; +} + +.content-area { + content: ''; + display: table; + table-layout: fixed; + /* Prevent stuff from getting spilly on mobile */ + width: 100%; + + overflow-wrap: break-word; +} + +/* On smaller devices, give the sidebar a bit of breathing room at the top */ +@media (max-width: 1023px) { + #secondary { + margin-top: 40px; + } +} + +/* On desktop devices, we'll show a sidebar next to our content */ +@media (min-width: 1024px) { + .site-content { + margin-bottom: 20px; + margin-top: 40px; + } + .site-content .content-area { + margin-left: auto; + margin-right: auto; + padding-left: 20px; + padding-right: 20px; + width: 66%; + } + .pique-sidebar .content-area { + float: right; + padding-left: 40px; + padding-right: 0; + } + .pique-sidebar .widget-area { + display: block; + float: right; + font-size: 15.2px; + font-size: 0.95rem; + padding-right: 40px; + width: 33%; + } + .page-template-template-full-width .content-area { + float: none; + padding-left: 0; + padding-right: 0; + width: 100%; + } +} + +/* Grid structures for tablet devices and larger */ +@media (min-width: 768px) { + .pique-grid-two article, + .error-404 .widget { + float: left; + font-size: 0.85em; + text-align: left; + width: 46.5%; + } + .pique-grid-two article:nth-of-type(odd), + .error-404 .widget:nth-of-type(odd) { + clear: left; + margin-right: 3.5%; + } + .pique-grid-two article:nth-of-type(even), + .error-404 .widget:nth-of-type(even) { + margin-left: 3.5%; + } + .pique-grid-three article { + float: left; + width: 31%; + } + .pique-grid-three article:nth-of-type(1), + .pique-grid-three article:nth-of-type(3n+1) { + clear: left; + margin-right: 3.5%; + } + .pique-grid-three article:nth-of-type(3n) { + margin-left: 3.5%; + } +} + +/* Footer */ +.site-footer { + background-position: bottom center; + background-repeat: no-repeat; + background-size: cover; + clear: both; + color: #fcfbf9; + margin: 0 auto; + max-width: 1400px; + padding: 15px 20px 0; + position: relative; +} + +body:not(.no-background-fixed) .site-footer { + background-attachment: fixed; +} + +.site-footer::before { + background: rgba(31, 29, 26, 0.875); + bottom: 0; + display: block; + left: 0; + position: absolute; + right: 0; + top: 0; + z-index: 1; +} +.site-footer a { + color: #e9d5c0; +} +.site-footer .secondary-links, +.site-footer .site-info { + font-size: 12.8px; + font-size: 0.8rem; + font-style: italic; + margin-bottom: 10px; + position: relative; + text-align: center; + z-index: 1; +} +.site-footer .secondary-links a, +.site-footer .site-info a { + color: #fcfbf9; +} +@media (min-width: 1024px) { + .site-footer .secondary-links { + float: left; + font-size: 14.4px; + font-size: 0.9rem; + text-align: left; + } + .site-footer .site-info { + font-size: 14.4px; + font-size: 0.9rem; + margin-bottom: 15px; + text-align: center; + } + .site-footer .secondary-links + .site-info { + float: right; + text-align: right; + } + .site-footer .secondary-links + .site-info::after { + content: ''; + display: table; + table-layout: fixed; + } +} + +/* Footer sidebar */ +#tertiary { + border-bottom: 1px solid rgba(233, 213, 192, 0.25); + clear: both; + content: ''; + display: table; + margin-bottom: 10px; + padding: 10px 0; + position: relative; + table-layout: fixed; + table-layout: fixed; + width: 100%; + z-index: 2; +} +#tertiary .widget { + border-top: none; +} +#tertiary .widget:not(.widget_wpcom_social_media_icons_widget):not(.jetpack_widget_social_icons) ul a { + color: #fcfbf9; +} +#tertiary .widget:not(.widget_wpcom_social_media_icons_widget):not(.jetpack_widget_social_icons) ul a:hover { + background-color: rgba(45, 42, 38, 0.95); +} +#tertiary .widget_archive ul li::before, +#tertiary .widget_categories ul li::before { + border-color: rgba(233, 213, 192, 0.25); +} +@media (min-width: 768px) { + #tertiary { + margin-bottom: 15px; + } + #tertiary .widget-area { + float: left; + font-size: 15.2px; + font-size: 0.95rem; + padding: 0 20px; + } + #tertiary .widget-area:first-of-type { + padding-left: 0; + } + #tertiary .widget-area:last-of-type { + padding-right: 0; + } + #tertiary .widget-area:nth-child(1):nth-last-child(1) { + float: none; + margin-left: auto; + margin-right: auto; + max-width: 466.66667px; + } + #tertiary .widget-area:nth-child(1):nth-last-child(2), + #tertiary .widget-area:nth-child(2):nth-last-child(1) { + width: 50%; + } + #tertiary .widget-area:nth-child(1):nth-last-child(3), + #tertiary .widget-area:nth-child(2):nth-last-child(2), + #tertiary .widget-area:nth-child(3):nth-last-child(1) { + width: 33.3333%; + } + #tertiary .widget-area:nth-child(2):nth-last-child(2) { + padding: 0 10px; + } +} + +/*-------------------------------------------------------------- +# Content +--------------------------------------------------------------*/ +/* Header rules specific to the front page only */ +.pique-frontpage #masthead { + background: none; + left: 0; + padding-top: 1em; + position: absolute; + right: 0; + top: 0; + width: 100%; + z-index: 10000; +} +.pique-frontpage #masthead .site-branding { + left: auto; + position: relative; + top: auto; + -webkit-transform: none; + -ms-transform: none; + transform: none; +} + +.pique-frontpage #site-navigation-wrapper { + position: relative; +} + +.pique-frontpage .main-navigation:not(.sticky) { + margin-top: 1em; + position: relative; +} + +@media (min-width: 768px) { + .pique-frontpage #site-navigation:not(.sticky) { + background: none; + border: none; + } +} + +/* If we don't have any panels set, set the hero panel to full-height */ +.pique-no-panels #pique-hero { + min-height: 95vh; +} + +/* Re-set some structural elements on these pages. This allows us to have 'panel' style pages. */ +.pique-frontpage .site-content, +.pique-frontpage .content-area, +.archive .site-content, +.archive .content-area, +.blog .site-content, +.blog .content-area, +.search-results .site-content, +.search-results .content-area { + margin: 0; + max-width: none; + padding: 0; + width: 100%; +} + +.pique-frontpage .page-header, +.archive .page-header, +.blog .page-header, +.search-results .page-header { + text-align: center; +} + +/* Panels */ +.pique-panel { + background-color: #293940; + margin: 0; + min-height: 60vh; + position: relative; + width: 100%; +} +.pique-panel:nth-of-type(even) { + background-color: #2d2a26; +} +.pique-panel .entry-meta, +.pique-panel .widget_rss .rss-date, +.widget_rss .pique-panel .rss-date, +.pique-panel .widget_rss cite, +.widget_rss .pique-panel cite { + display: none; + /* Hide for most post formats */ +} +.pique-panel .entry-header, +.pique-panel .entry-content { + position: relative; + z-index: 1; + /* Make sure these aren't covered by their backgrounds! */ +} + +/* Panel background (featured) image */ +.pique-panel-background { + background-attachment: scroll; + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: cover; + bottom: 0; + height: 100%; + left: 0; + opacity: 0.5; + position: absolute; + right: 0; + top: 0; + width: 100%; +} +@media (min-width: 768px) { + .pique-panel-background { + background-position: top center; + background-repeat: repeat; + } + body:not(.no-background-fixed) .pique-panel-background { + background-attachment: fixed; + } +} +.pique-panel-background:before { + background: rgba(0, 0, 0, 0.5); + content: ""; + display: block; + height: 100%; + position: absolute; + right: 0; + top: 0; + width: 100%; +} + +/* Edit panel content links */ +.pique-panel .edit-link { + bottom: 15px; + left: 10px; + position: absolute; + z-index: 1; +} +.pique-panel .edit-link::before { + display: none; +} +.pique-panel .edit-link a { + color: #fcfbf9; + font-family: Karla, Arial, sans-serif; + font-size: .9rem; + letter-spacing: 1px; + opacity: 0.9; + padding: 1rem 1rem; + text-transform: uppercase; + width: auto; +} +.pique-panel .edit-link a:hover { + border: none; + opacity: 1; +} + +/* Panel content */ +.pique-panel-content { + color: #fcfbf9; + margin: 0 auto; + max-width: 1400px; + padding: 20px; + text-align: center; + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75); +} +@media (min-width: 768px) { + .pique-panel-content { + padding: 40px; + } +} +.pique-panel-content h2 { + border: 2px solid #fcfbf9; + border-bottom: 0; + color: #fcfbf9; + display: inline-block; + max-width: 100%; + padding: 0.75rem 1.5rem 0.85rem; + position: relative; + text-transform: uppercase; + word-break: break-word; + word-wrap: break-word; +} +.pique-panel-content h2::before, +.pique-panel-content h2::after { + border-bottom: 2px solid #fcfbf9; + bottom: 0; + content: ''; + display: block; + height: 0; + position: absolute; + width: 50px; +} +.pique-panel-content h2::before { + left: 0; +} +.pique-panel-content h2::after { + right: 0; +} +.pique-panel-content h2 a { + color: #fcfbf9; +} +.pique-panel-content h2 a:hover { + border: none; +} +.pique-panel-content .entry-content { + margin: 3em auto 1em; + max-width: 700px; + text-align: left; +} +.pique-panel-content form { + background: #fcfbf9; + border-top: 4px solid #83b6cc; + margin-left: auto; + margin-right: auto; + max-width: 700px; + padding: 20px; + text-shadow: none; +} +.pique-panel-content blockquote, +.pique-panel-content .pique-template-testimonials .pique-testimonials article .entry-content, +.pique-template-testimonials .pique-testimonials article .pique-panel-content .entry-content { + color: #fcfbf9; +} +@media (min-width: 768px) { + .pique-panel-content blockquote, + .pique-panel-content .pique-template-testimonials .pique-testimonials article .entry-content, + .pique-template-testimonials .pique-testimonials article .pique-panel-content .entry-content { + font-size: 1.5em; + } + + .pique-panel-content .entry-content { + margin: 1em auto; + } +} + +@media (min-width: 768px) { + .pique-panel-content h2 { + max-width: 700px; + } +} + +.format-aside .pique-panel-content .entry-content, +.format-status .pique-panel-content .entry-content { + font-size: 1.2em; + font-style: italic; +} + +.format-quote .read-more, +.format-aside .read-more, +.format-status .read-more, +.format-link .read-more, +.format-audio .read-more { + display: none; +} + +.format-quote .entry-meta, +.format-quote .widget_rss .rss-date, +.widget_rss .format-quote .rss-date, +.format-quote .widget_rss cite, +.widget_rss .format-quote cite, +.format-aside .entry-meta, +.format-aside .widget_rss .rss-date, +.widget_rss +.format-aside .rss-date, +.format-aside .widget_rss cite, +.widget_rss +.format-aside cite, +.format-status .entry-meta, +.format-status .widget_rss .rss-date, +.widget_rss +.format-status .rss-date, +.format-status .widget_rss cite, +.widget_rss +.format-status cite, +.format-link .entry-meta, +.format-link .widget_rss .rss-date, +.widget_rss +.format-link .rss-date, +.format-link .widget_rss cite, +.widget_rss +.format-link cite, +.format-audio .entry-meta, +.format-audio .widget_rss .rss-date, +.widget_rss +.format-audio .rss-date, +.format-audio .widget_rss cite, +.widget_rss +.format-audio cite { + display: block; + font-style: normal; + text-align: left; +} +.format-quote .entry-meta .edit-link, +.format-quote .widget_rss .rss-date .edit-link, +.widget_rss .format-quote .rss-date .edit-link, +.format-quote .widget_rss cite .edit-link, +.widget_rss .format-quote cite .edit-link, +.format-aside .entry-meta .edit-link, +.format-aside .widget_rss .rss-date .edit-link, +.widget_rss + .format-aside .rss-date .edit-link, +.format-aside .widget_rss cite .edit-link, +.widget_rss + .format-aside cite .edit-link, +.format-status .entry-meta .edit-link, +.format-status .widget_rss .rss-date .edit-link, +.widget_rss + .format-status .rss-date .edit-link, +.format-status .widget_rss cite .edit-link, +.widget_rss + .format-status cite .edit-link, +.format-link .entry-meta .edit-link, +.format-link .widget_rss .rss-date .edit-link, +.widget_rss + .format-link .rss-date .edit-link, +.format-link .widget_rss cite .edit-link, +.widget_rss + .format-link cite .edit-link, +.format-audio .entry-meta .edit-link, +.format-audio .widget_rss .rss-date .edit-link, +.widget_rss + .format-audio .rss-date .edit-link, +.format-audio .widget_rss cite .edit-link, +.widget_rss + .format-audio cite .edit-link { + display: none; +} + +.format-quote .entry-title, +.format-aside .entry-title, +.format-status .entry-title, +.format-link .entry-title { + display: none; +} + +.format-quote .entry-content, +.format-aside .entry-content, +.format-status .entry-content, +.format-link .entry-content { + margin-top: 40px; +} + +.format-image .pique-panel-content .entry-content, +.format-video .pique-panel-content .entry-content, +.format-gallery .pique-panel-content .entry-content { + text-align: center; +} + +/* Read more links on archive pages */ +.archive .read-more, +.blog .read-more, +.search-results .read-more { + display: block; + margin: 2em auto 1em; + text-align: center; +} +@media (min-width: 768px) { + .archive .read-more, + .blog .read-more, + .search-results .read-more { + margin-top: 4em; + } +} +.archive .read-more a, +.blog .read-more a, +.search-results .read-more a { + text-shadow: none; +} +.archive .read-more a::after, +.blog .read-more a::after, +.search-results .read-more a::after { + content: ''; + display: inline-block; + display: inline-block; + font-family: FontAwesome; + font-size: 14px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} +.archive .read-more a:hover, +.blog .read-more a:hover, +.search-results .read-more a:hover { + padding-right: calc(3em - 20px); +} +.archive .read-more a:hover::after, +.blog .read-more a:hover::after, +.search-results .read-more a:hover::after { + margin-left: 20px; +} + +/* Hero area (the "home" page, as it were) */ +#pique-hero .pique-panel-content { + padding-top: 8em; +} +#pique-hero .pique-panel-content .entry-content { + text-align: center; +} +#pique-hero .pique-panel-content .entry-content p { + text-align: left; +} +#pique-hero .pique-panel-content .entry-content p:first-of-type { + font-size: 2em; + font-style: italic; + text-align: center; +} +#pique-hero .pique-panel-content .entry-content em { + color: #83b6cc; +} +@media (min-width: 768px) { + #pique-hero .pique-panel-content .entry-content { + padding-top: 2em; + } +} + +/* Content-heavy pages */ +.pique-template-grid .pique-panel-content .entry-content, +.pique-template-testimonials .pique-panel-content .entry-content, +.pique-template-recent-posts .pique-panel-content .entry-content { + max-width: none; +} + +.pique-template-grid .pique-panel-content > .entry-content > p, +.pique-template-testimonials .pique-panel-content > .entry-content > p, +.pique-template-recent-posts .pique-panel-content > .entry-content > p { + font-size: 1.2em; + font-style: italic; + margin: 0 auto 1em; + max-width: 700px; + text-align: center; +} + +.pique-template-grid .pique-panel-content h3, +.pique-template-grid .pique-panel-content blockquote cite, +blockquote .pique-template-grid .pique-panel-content cite, +.pique-template-grid .pique-panel-content .pique-template-testimonials .pique-testimonials article .entry-content cite, +.pique-template-testimonials .pique-testimonials article .entry-content .pique-template-grid .pique-panel-content cite, +.pique-template-grid .pique-panel-content .site-branding .site-title, +.site-branding .pique-template-grid .pique-panel-content .site-title, +.pique-template-grid .pique-panel-content .widget-title, +.pique-template-grid .pique-panel-content h3 a, +.pique-template-grid .pique-panel-content blockquote cite a, +blockquote +.pique-template-grid .pique-panel-content cite a, +.pique-template-grid .pique-panel-content .pique-template-testimonials .pique-testimonials article .entry-content cite a, +.pique-template-testimonials .pique-testimonials article .entry-content +.pique-template-grid .pique-panel-content cite a, +.pique-template-grid .pique-panel-content .site-branding .site-title a, +.site-branding +.pique-template-grid .pique-panel-content .site-title a, +.pique-template-grid .pique-panel-content .widget-title a, +.pique-template-testimonials .pique-panel-content h3, +.pique-template-testimonials .pique-panel-content blockquote cite, +blockquote +.pique-template-testimonials .pique-panel-content cite, +.pique-template-testimonials .pique-panel-content .pique-testimonials article .entry-content cite, +.pique-template-testimonials .pique-testimonials article .entry-content .pique-panel-content cite, +.pique-template-testimonials .pique-panel-content .site-branding .site-title, +.site-branding +.pique-template-testimonials .pique-panel-content .site-title, +.pique-template-testimonials .pique-panel-content .widget-title, +.pique-template-testimonials .pique-panel-content h3 a, +.pique-template-testimonials .pique-panel-content blockquote cite a, +blockquote +.pique-template-testimonials .pique-panel-content cite a, +.pique-template-testimonials .pique-panel-content .pique-testimonials article .entry-content cite a, +.pique-template-testimonials .pique-testimonials article .entry-content .pique-panel-content cite a, +.pique-template-testimonials .pique-panel-content .site-branding .site-title a, +.site-branding +.pique-template-testimonials .pique-panel-content .site-title a, +.pique-template-testimonials .pique-panel-content .widget-title a, +.pique-template-recent-posts .pique-panel-content h3, +.pique-template-recent-posts .pique-panel-content blockquote cite, +blockquote +.pique-template-recent-posts .pique-panel-content cite, +.pique-template-recent-posts .pique-panel-content .pique-template-testimonials .pique-testimonials article .entry-content cite, +.pique-template-testimonials .pique-testimonials article .entry-content +.pique-template-recent-posts .pique-panel-content cite, +.pique-template-recent-posts .pique-panel-content .site-branding .site-title, +.site-branding +.pique-template-recent-posts .pique-panel-content .site-title, +.pique-template-recent-posts .pique-panel-content .widget-title, +.pique-template-recent-posts .pique-panel-content h3 a, +.pique-template-recent-posts .pique-panel-content blockquote cite a, +blockquote +.pique-template-recent-posts .pique-panel-content cite a, +.pique-template-recent-posts .pique-panel-content .pique-template-testimonials .pique-testimonials article .entry-content cite a, +.pique-template-testimonials .pique-testimonials article .entry-content +.pique-template-recent-posts .pique-panel-content cite a, +.pique-template-recent-posts .pique-panel-content .site-branding .site-title a, +.site-branding +.pique-template-recent-posts .pique-panel-content .site-title a, +.pique-template-recent-posts .pique-panel-content .widget-title a { + color: #83b6cc; +} + +/* Grid template panel */ +.pique-grid-three article { + font-size: 0.9em; + text-align: center; +} + +.pique-grid-three img.size-pique-square { + border-radius: 50%; + margin: 0 auto; + max-width: 60%; +} + +.pique-grid-three p { + text-align: left; +} + +/* Testimonial panel */ +.pique-template-testimonials .pique-testimonials article { + font-size: 0.85em; + text-align: left; +} +.pique-template-testimonials .pique-testimonials article .entry-content { + color: #fcfbf9; + margin-bottom: 0; +} + +.pique-template-testimonials .pique-testimonials .entry-footer { + content: ''; + display: table; + margin-top: 20px; + table-layout: fixed; +} + +.pique-template-testimonials .pique-testimonials .attachment-pique-thumbnail-avatar { + border-radius: 50%; + float: left; + margin: 0 20px 0 0; + max-width: 50%; +} + +.pique-template-testimonials .pique-testimonials h2 { + border: none; + clear: none; + color: #e9d5c0; + float: left; + font-size: 16px; + font-size: 1rem; + padding: 10px 0; +} +.pique-template-testimonials .pique-testimonials h2::before, +.pique-template-testimonials .pique-testimonials h2::after { + display: none; +} +.pique-template-testimonials .pique-testimonials h2 em { + display: block; + font-style: normal; + font-weight: normal; + letter-spacing: 0; + text-transform: none; +} + +/* Recent blog posts panel */ +.pique-template-recent-posts .entry-title { + margin-bottom: 0; +} + +.pique-template-recent-posts article .entry-content { + margin-top: 0; +} + +.pique-template-recent-posts .read-more a { + display: inline; + font-family: Karla, Arial, sans-serif; + font-size: 12.8px; + font-size: 0.8rem; + font-weight: bold; + letter-spacing: 1px; + text-transform: uppercase; + white-space: nowrap; +} +.pique-template-recent-posts .read-more a::after { + content: ''; + display: inline-block; + display: inline-block; + font-family: FontAwesome; + font-size: 14px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +/* Full-width panel */ +.pique-template-full-width .entry-content { + max-width: none; +} + +/* Overlay elements (used to show content on top of the background image in cases where you want a fully opaque image) */ +.overlay { + background: #2d2a26; + border-top: 4px solid #83b6cc; + font-family: Karla, Arial, sans-serif; + font-size: 0.8em; + max-width: 700px; + padding: 0 20px; + text-align: left; + text-shadow: none; +} +@media (max-width: 767px) { + .overlay { + width: 100%; + } +} +@media (min-width: 768px) { + .overlay { + width: 60%; + } +} +@media (min-width: 1024px) { + .overlay { + width: 40%; + } +} +.overlay h3, +.overlay blockquote cite, +blockquote .overlay cite, +.overlay .pique-template-testimonials .pique-testimonials article .entry-content cite, +.pique-template-testimonials .pique-testimonials article .entry-content .overlay cite, +.overlay .site-branding .site-title, +.site-branding .overlay .site-title, +.overlay .widget-title { + margin-bottom: 0; +} +.overlay p { + margin-top: 0; +} + +/* Some elements shouldn't use a text-shadow, because it looks weird. */ +.wp-playlist { + text-shadow: none; +} + +/* Simplify our styles a smidge so the Customizer doesn't have a panic attack */ +.pique-customizer .pique-panel-background { + background-attachment: inherit !important; +} + +/* Add some user-friendly hints/overlays in the Customizer */ +.pique-customizer.pique-frontpage .edit-link { + bottom: 20px; +} + +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero) { + /* Colour-code all panels (add 1 to account for #pique-hero, so 2 is actually panel 1)*/ +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero)::after { + border: 2px dashed; + bottom: 20px; + content: ''; + display: block; + left: 20px; + position: absolute; + right: 20px; + top: 20px; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero) .pique-panel-title { + color: #fcfbf9; + font-family: Karla, Arial, sans-serif; + font-size: 12.8px; + font-size: 0.8rem; + letter-spacing: 1px; + padding: 5px 10px; + position: absolute; + right: 15px; + text-transform: uppercase; + top: 15px; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(2) .pique-panel-title { + background: #a64b55; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(2)::after { + border-color: #a64b55; + color: #a64b55; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(3) .pique-panel-title { + background: #b569a2; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(3)::after { + border-color: #b569a2; + color: #b569a2; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(4) .pique-panel-title { + background: #8f68bd; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(4)::after { + border-color: #8f68bd; + color: #8f68bd; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(5) .pique-panel-title { + background: #575ebd; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(5)::after { + border-color: #575ebd; + color: #575ebd; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(6) .pique-panel-title { + background: #55a1bd; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(6)::after { + border-color: #55a1bd; + color: #55a1bd; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(7) .pique-panel-title { + background: #7dbd8f; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(7)::after { + border-color: #7dbd8f; + color: #7dbd8f; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(8) .pique-panel-title { + background: #c8b247; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(8)::after { + border-color: #c8b247; + color: #c8b247; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(9) .pique-panel-title { + background: #bd7555; +} +.pique-customizer.pique-frontpage .pique-panel:not(#pique-hero):nth-of-type(9)::after { + border-color: #bd7555; + color: #bd7555; +} + +/* Add a highlight class to improve Customizer behaviour */ +@-webkit-keyframes flash { + 0%, + 20%, + 40%, + 60%, + 80%, + 100% { + opacity: 1; + } + 10%, + 30%, + 50%, + 70%, + 90% { + opacity: 0; + } +} +@keyframes flash { + 0%, + 20%, + 40%, + 60%, + 80%, + 100% { + opacity: 1; + } + 10%, + 30%, + 50%, + 70%, + 90% { + opacity: 0; + } +} + +.pique-highlight::after { + -webkit-animation-duration: 2s; + animation-duration: 2s; + -webkit-animation-name: flash; + animation-name: flash; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} + +/* Account for the admin bar */ +.admin-bar.pique-frontpage #masthead { + top: 32px; +} +@media screen and (max-width: 782px) { + .admin-bar.pique-frontpage #masthead { + top: 46px; + } +} + +.entry-content { + margin: 0 0 1.5em; +} +.entry-content a:not(.button):hover { + border-bottom: 2px solid; +} + +.format-image .entry-content a:hover, +.format-gallery .entry-content a:hover, +.format-video .entry-content a:hover { + border-bottom: none; +} + +/* Sticky posts */ +.sticky .entry-title a::before { + content: '\f512'; + display: inline-block; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-aside .entry-title a::before, +.archive .format-aside .entry-title a::before, +.search-results .format-aside .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-aside .entry-meta::before, +.format-aside .widget_rss .rss-date::before, +.widget_rss .format-aside .rss-date::before, +.format-aside .widget_rss cite::before, +.widget_rss .format-aside cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-audio .entry-title a::before, +.archive .format-audio .entry-title a::before, +.search-results .format-audio .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-audio .entry-meta::before, +.format-audio .widget_rss .rss-date::before, +.widget_rss .format-audio .rss-date::before, +.format-audio .widget_rss cite::before, +.widget_rss .format-audio cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-chat .entry-title a::before, +.archive .format-chat .entry-title a::before, +.search-results .format-chat .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-chat .entry-meta::before, +.format-chat .widget_rss .rss-date::before, +.widget_rss .format-chat .rss-date::before, +.format-chat .widget_rss cite::before, +.widget_rss .format-chat cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-gallery .entry-title a::before, +.archive .format-gallery .entry-title a::before, +.search-results .format-gallery .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-gallery .entry-meta::before, +.format-gallery .widget_rss .rss-date::before, +.widget_rss .format-gallery .rss-date::before, +.format-gallery .widget_rss cite::before, +.widget_rss .format-gallery cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-image .entry-title a::before, +.archive .format-image .entry-title a::before, +.search-results .format-image .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-image .entry-meta::before, +.format-image .widget_rss .rss-date::before, +.widget_rss .format-image .rss-date::before, +.format-image .widget_rss cite::before, +.widget_rss .format-image cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-link .entry-title a::before, +.archive .format-link .entry-title a::before, +.search-results .format-link .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-link .entry-meta::before, +.format-link .widget_rss .rss-date::before, +.widget_rss .format-link .rss-date::before, +.format-link .widget_rss cite::before, +.widget_rss .format-link cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-status .entry-title a::before, +.archive .format-status .entry-title a::before, +.search-results .format-status .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-status .entry-meta::before, +.format-status .widget_rss .rss-date::before, +.widget_rss .format-status .rss-date::before, +.format-status .widget_rss cite::before, +.widget_rss .format-status cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-quote .entry-title a::before, +.archive .format-quote .entry-title a::before, +.search-results .format-quote .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-quote .entry-meta::before, +.format-quote .widget_rss .rss-date::before, +.widget_rss .format-quote .rss-date::before, +.format-quote .widget_rss cite::before, +.widget_rss .format-quote cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.blog .format-video .entry-title a::before, +.archive .format-video .entry-title a::before, +.search-results .format-video .entry-title a::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 0.5em; + text-decoration: none; + text-shadow: none; + vertical-align: text-bottom; + vertical-align: 0; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.format-video .entry-meta::before, +.format-video .widget_rss .rss-date::before, +.widget_rss .format-video .rss-date::before, +.format-video .widget_rss cite::before, +.widget_rss .format-video cite::before { + content: ''; + display: inline-block; + font-family: Genericons; + font-size: 16px; + font-style: normal; + font-weight: normal; + line-height: 1; + text-decoration: none; + vertical-align: text-bottom; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +/* Entry meta */ +.entry-meta, +.widget_rss .rss-date, +.widget_rss cite { + color: #c3c3c3; + font-family: Karla, Arial, sans-serif; + font-size: 13.6px; + font-size: 0.85rem; + font-weight: bold; + letter-spacing: 0.05rem; + text-transform: uppercase; +} +.entry-meta a, +.widget_rss .rss-date a, +.widget_rss cite a { + color: darkgray; +} +.entry-meta + .entry-title, +.widget_rss .rss-date + .entry-title, +.widget_rss cite + .entry-title { + margin-top: 0.2rem; +} + +.byline, +.updated:not(.published) { + display: none; +} + +.single .byline, +.group-blog .byline { + display: inline; +} + +time + .updated { + display: none; +} + +.edit-link::before { + content: ' · '; + display: inline; +} + +.page .edit-link::before { + display: none; +} + +/* Content */ +.page-content, +.entry-content, +.entry-summary { + margin: 1.5em 0 0; +} + +.page-links { + clear: both; + font-family: Karla, Arial, sans-serif; + font-size: 14.4px; + font-size: 0.9rem; + letter-spacing: 1px; + margin: 0 0 1.5em; + text-transform: uppercase; +} + +/* Categories & tags */ +.cat-links, +.tags-links { + color: darkgray; + display: block; + font-family: Lora, Georgia, serif; + font-size: 14.4px; + font-size: 0.9rem; + font-style: italic; + margin-top: 0.25rem; +} +.cat-links a, +.tags-links a { + color: #909090; +} +.cat-links::before, +.tags-links::before { + display: inline-block; + display: inline-block; + font-family: FontAwesome; + font-size: 14px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 5px; + text-decoration: none; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} + +.cat-links::before { + content: ''; +} + +.tags-links::before { + content: ''; +} + +/* 404 page */ +.error-404 .page-title { + margin-top: 0; +} + +.error-404 .search-form { + margin-bottom: 40px; +} + +/* Nothing here yet? */ +.pique-get-started { + font-size: 1.2em; + margin: 80px 40px; + text-align: center; +} + +/* Post footers */ +.entry-footer { + padding: 20px 0; +} + +/* Titles */ +#reply-title, +div#jp-relatedposts h3.jp-relatedposts-headline, +div#jp-relatedposts blockquote cite.jp-relatedposts-headline, +blockquote +div#jp-relatedposts cite.jp-relatedposts-headline, +div#jp-relatedposts .pique-template-testimonials .pique-testimonials article .entry-content cite.jp-relatedposts-headline, +.pique-template-testimonials .pique-testimonials article .entry-content +div#jp-relatedposts cite.jp-relatedposts-headline, +div#jp-relatedposts .site-branding .jp-relatedposts-headline.site-title, +.site-branding +div#jp-relatedposts .jp-relatedposts-headline.site-title, +div#jp-relatedposts .jp-relatedposts-headline.widget-title, +div.sharedaddy h3.sd-title, +div.sharedaddy blockquote cite.sd-title, +blockquote +div.sharedaddy cite.sd-title, +div.sharedaddy .pique-template-testimonials .pique-testimonials article .entry-content cite.sd-title, +.pique-template-testimonials .pique-testimonials article .entry-content +div.sharedaddy cite.sd-title, +div.sharedaddy .site-branding .sd-title.site-title, +.site-branding +div.sharedaddy .sd-title.site-title, +div.sharedaddy .sd-title.widget-title { + font-family: Karla, Arial, sans-serif; + font-size: 0.9rem !important; + margin: 20px 0 0 !important; +} + +/* Comment form */ +#respond { + padding-top: 10px; +} + +#commentform { + margin-top: -10px; +} + +#commentform .logged-in-as, +#commentform .comment-notes { + font-size: 16px; + font-size: 1rem; + font-style: italic; +} +#commentform .logged-in-as a, +#commentform .comment-notes a { + color: #b0aaa2; +} + +#form-allowed-tags { + font-size: 14.4px; + font-size: 0.9rem; + font-style: italic; +} +#form-allowed-tags code { + display: block; + font-size: 12.8px; + font-size: 0.8rem; + font-style: normal; +} + +.comment-list { + list-style-type: none; + margin: 0; + padding: 0; +} +.comment-list .children { + border-left: 2px solid #83b6cc; + list-style-type: none; + margin-left: 0; +} + +.comment-list .children li .comment-body { + padding-left: 20px; +} + +.comment-author .avatar { + border-radius: 50%; + float: left; + height: 75px; + margin: 0 0.5em 0 0; + width: 75px; +} + +.comment-author .fn { + display: inline-block; + font-size: 19.2px; + font-size: 1.2rem; + font-style: italic; + font-weight: normal; + max-width: calc(100% - 100px - 0.5em); + padding-top: 0.25em; +} + +.comment-author .says { + display: none; +} + +/* Comment content */ +.comment-body { + position: relative +} + +.comment-metadata { + color: #c3c3c3; + font-family: Karla, Arial, sans-serif; + font-size: 13.6px; + font-size: 0.85rem; + font-weight: bold; + letter-spacing: 0.05rem; + text-transform: uppercase; +} + +.comment-content { + clear: left; + font-size: 0.9em; +} +.comment-content .comment-content a { + word-wrap: break-word; +} + +/* Reply to comment */ +.reply { + position: absolute; + right: 10px; + bottom: 10px; +} +.reply a { + border: 1px solid; + display: inline-block; + font-family: Karla, Arial, sans-serif; + font-size: 13.6px; + font-size: 0.85rem; + font-weight: bold; + letter-spacing: 0.05rem; + padding: 2px 5px; + text-transform: uppercase; +} +.reply a:hover { + color: #c3c3c3; +} + +#cancel-comment-reply-link { + color: darkgray; +} +#cancel-comment-reply-link::before { + content: '('; + display: inline; +} +#cancel-comment-reply-link::after { + content: ')'; + display: inline; +} + +/* Post author comments */ +.bypostauthor { + background-color: #e9d5c0; + padding: 20px; +} + +/* Pingbacks */ +.pingback, +.trackback { + font-style: italic; + margin: 1em 0; +} + +/*-------------------------------------------------------------- +# Infinite scroll +--------------------------------------------------------------*/ +/* Globally hidden elements when Infinite Scroll is supported and in use. */ +.infinite-scroll .posts-navigation, +.infinite-scroll.neverending .site-footer { + /* Theme Footer (when set to scrolling) */ + display: none; +} + +/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */ +.infinity-end.neverending .site-footer { + display: block; +} + +#infinite-footer { + font-family: Karla, Arial, sans-serif; + width: 100%; + z-index: 1000000; +} +#infinite-footer .container { + width: 100%; +} +#infinite-footer #infinity-blog-title { + font-weight: normal; +} + +/* Center the loading graphic */ +.infinite-loader { + margin: 1.45em 46%; +} + +.infinite-scroll #infinite-handle { + display: block; + text-align: center; +} +.infinite-scroll #infinite-handle span { + background: transparent; +} +.infinite-scroll #infinite-handle button, +.infinite-scroll #infinite-handle .archive .read-more a, +.archive .read-more .infinite-scroll #infinite-handle a, +.infinite-scroll #infinite-handle + .blog .read-more a, +.blog .read-more .infinite-scroll #infinite-handle a, +.infinite-scroll #infinite-handle + .search-results .read-more a, +.search-results .read-more .infinite-scroll #infinite-handle a { + color: #83b6cc; + font-size: 19.2px; + font-size: 1.2rem; + font-style: italic; + letter-spacing: 0; + padding: 1em; + text-transform: none; +} +.infinite-scroll #infinite-handle button::before, +.infinite-scroll #infinite-handle .archive .read-more a::before, +.archive .read-more .infinite-scroll #infinite-handle a::before, +.infinite-scroll #infinite-handle + .blog .read-more a::before, +.blog .read-more .infinite-scroll #infinite-handle a::before, +.infinite-scroll #infinite-handle + .search-results .read-more a::before, +.search-results .read-more .infinite-scroll #infinite-handle a::before { + content: '\2190'; + display: inline-block; + display: inline-block; + font-family: FontAwesome; + font-size: 14px; + font-style: normal; + font-weight: normal; + line-height: 1; + margin-right: 10px; + text-decoration: none; + vertical-align: 2px; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: auto; +} +.infinite-scroll #infinite-handle button:hover, +.infinite-scroll #infinite-handle .archive .read-more a:hover, +.archive .read-more .infinite-scroll #infinite-handle a:hover, +.infinite-scroll #infinite-handle + .blog .read-more a:hover, +.blog .read-more .infinite-scroll #infinite-handle a:hover, +.infinite-scroll #infinite-handle + .search-results .read-more a:hover, +.search-results .read-more .infinite-scroll #infinite-handle a:hover { + color: #3c7993; + font-size: 19.2px; + font-size: 1.2rem; + padding: 1em; +} + +/*-------------------------------------------------------------- +# Media +--------------------------------------------------------------*/ +.page-content .wp-smiley, +.entry-content .wp-smiley, +.comment-content .wp-smiley { + border: none; + margin-bottom: 0; + margin-top: 0; + padding: 0; +} + +/* Make sure embeds and iframes fit their containers. */ +embed, +iframe, +object { + max-width: 100%; +} + +/*-------------------------------------------------------------- +## Captions +--------------------------------------------------------------*/ +.wp-caption { + margin-bottom: 1.5em; + max-width: 100%; +} +.wp-caption img[class*='wp-image-'] { + display: block; + margin-left: auto; + margin-right: auto; +} +.wp-caption .wp-caption-text, +.wp-caption .tiled-gallery-caption { + margin: 0.8075em 0; +} + +.wp-caption-text, +.tiled-gallery-caption { + font-style: italic; + text-align: center; +} + +/*-------------------------------------------------------------- +## Galleries +--------------------------------------------------------------*/ +figure { + margin-left: auto; + margin-right: auto; +} + +.gallery, +.tiled-gallery { + margin-bottom: 1.5em; +} + +.entry-content .gallery a:hover, +.entry-content .tiled-gallery a:hover { + border-bottom: none; +} + +.gallery-item { + display: inline-block; + text-align: center; + vertical-align: top; + width: 100%; +} +.gallery-columns-2 .gallery-item { + max-width: 50%; +} +.gallery-columns-3 .gallery-item { + max-width: 33.33%; +} +.gallery-columns-4 .gallery-item { + max-width: 25%; +} +.gallery-columns-5 .gallery-item { + max-width: 20%; +} +.gallery-columns-6 .gallery-item { + max-width: 16.66%; +} +.gallery-columns-7 .gallery-item { + max-width: 14.28%; +} +.gallery-columns-8 .gallery-item { + max-width: 12.5%; +} +.gallery-columns-9 .gallery-item { + max-width: 11.11%; +} + +.gallery-caption { + display: block; +} + +/* Tiled galleries */ +.tiled-gallery-caption { + text-shadow: none; +} diff --git a/pique/woocommerce.css b/pique/woocommerce.css new file mode 100644 index 000000000..f3ece3532 --- /dev/null +++ b/pique/woocommerce.css @@ -0,0 +1,1536 @@ +/* +Theme Name: Pique + +WooCommerce styles override +*/ +/** + * WooCommerce color variables + */ +/** + * Imports + */ + +/** + * Shop Layout + */ + +.entry-content .woocommerce ul { + list-style-position: inside; +} + +.woocommerce-page .site-content .content-area { + margin: auto; + padding: 20px; + width: 100%; +} + +@media ( min-width: 1024px ) { + + .woocommerce-page .site-content { + margin-bottom: 20px; + margin-top: 40px; + padding: 20px; + } + + .woocommerce-page .site-content .content-area { + float: right; + padding: 20px 20px 20px 40px; + width: 66%; + } +} + +.woocommerce-breadcrumb, +.woocommerce-result-count, +.woocommerce-ordering .orderby { + font-family: Karla, Arial, sans-serif; +} + +.woocommerce-products-header { + display: flex; + flex-wrap: wrap; + margin-bottom: 1.5em; +} + +.woocommerce-products-header > * { + flex: 1 1 auto; +} + +.woocommerce-products-header .woocommerce-result-count, +.woocommerce-products-header .woocommerce-ordering { + margin: 1em 0; +} + +.woocommerce-products-header .woocommerce-ordering { + text-align: right; +} + +.woocommerce-products-header > * > p { + margin: 0; +} + +.woocommerce-products-header .woocommerce-products-header__title { + flex: 1 0 100%; + margin: .5em 0 0; + width: 100%; +} + +/** + * Shop tables + */ + +table.shop_table_responsive, +table.shop_table { + border-top: 1px solid rgba(233, 213, 192, 0.5); +} + +table.shop_table_responsive thead { + display: none; +} + +table.shop_table_responsive tbody th { + display: none; +} + +table.shop_table thead tr, +table.shop_table_responsive thead tr { + border-bottom: 2px solid #83b6cc; +} + +table.shop_table_responsive tr td { + display: block; + text-align: right; + clear: both; +} + +table.shop_table_responsive tr td:before { + content: attr(data-title) ": "; + float: left; +} + +table.shop_table thead tr th, +table.shop_table thead tr td, +table.shop_table tbody tr td, +table.shop_table tfoot tr th, +table.shop_table tfoot tr td, +table.shop_table_responsive thead tr th, +table.shop_table_responsive .woocommerce-cart-form__cart-item td, +table.shop_table_responsive tbody tr > * { + padding: 10px; +} +table.shop_table tbody tr, +table.shop_table_responsive tbody tr, +table.shop_table tfoot tr, +table.shop_table_responsive tfoot tr { + border-bottom: 1px solid rgba(233, 213, 192, 0.5); +} +table.shop_table_responsive tr td.product-remove a { + text-align: left; +} +table.shop_table_responsive tr td.product-remove:before { + display: none; +} +table.shop_table_responsive tr td.actions:before, table.shop_table_responsive tr td.download-actions:before { + display: none; +} +table.shop_table_responsive tbody tr .actions .button, +table.shop_table_responsive tbody tr .woocommerce-orders-table__cell .button { + padding: 10px 12px; +} +table.shop_table_responsive tr td.download-actions .button { + display: block; + text-align: center; +} + +@media screen and (min-width: 48em) { + table.shop_table_responsive thead { + display: table-header-group; + } + table.shop_table_responsive tbody th { + display: table-cell; + } + table.shop_table_responsive tr th, + table.shop_table_responsive tr td { + text-align: left; + } + table.shop_table_responsive tr td { + display: table-cell; + } + table.shop_table_responsive tr td:before { + display: none; + } + table.shop_table_responsive tbody tr .actions { + text-align: right; + } + table.shop_table_responsive tbody tr .coupon { + float: left; + } + table.shop_table_responsive tbody tr .coupon #coupon_code { + width: auto; + } + table.shop_table_responsive .product-thumbnail { + text-align: center; + } + table.shop_table_responsive .product-thumbnail img { + width: 50%; + } + table.shop_table_responsive .product-remove .remove { + font-size: 2em; + width: 1em; + } +} + +/** + * Cart + */ + +.woocommerce-cart .cart-collaterals .products { + width: 100%; +} + +.woocommerce-cart .cart-collaterals .cart_totals { + +} + +/** + * Products + */ +/** + * Products + */ + +ul.products { + content: ""; + display: table; + table-layout: fixed; + margin: 0; + padding: 0; + width: 100%; +} + +ul.products li.product { + list-style: none; + margin-bottom: 2em; + padding-top: 1em; + position: relative; + text-align: center; +} + +.product .onsale { + background-color: transparent; + border: 2px solid #83b6cc; + border-bottom: 0; + color: #83b6cc; + font-family: Karla, Arial, sans-serif; + font-size: 1rem; + font-weight: 700; + letter-spacing: 1px; + padding: .33em .66em .44em; + position: absolute; + left: 50%; + margin-left: -40px; + top: -.1em; + text-align: center; + text-transform: uppercase; + width: 80px; +} + +.product .onsale:after { + border-bottom: 2px solid #83b6cc; + bottom: 0; + content: ''; + display: block; + height: 0; + left: 0; + position: absolute; + width: 15px; +} + +.product .onsale:before { + border-bottom: 2px solid #83b6cc; + bottom: 0; + content: ''; + display: block; + height: 0; + position: absolute; + right: 0; + width: 15px; +} + +ul.products li.product .woocommerce-loop-product__title { + font-size: 1rem; + margin-bottom: .75em; + margin-top: .75em; +} + +ul.products li.product .woocommerce-loop-product__link:hover .woocommerce-loop-product__title { + color: #e9d5c0; +} + +ul.products li.product .star-rating { + margin: .75em auto; +} + +ul.products li.product .price { + display: block; + margin-bottom: .75em; + margin-top: .75em; +} + +ul.products li.product img { + display: block; + margin: 0 auto; +} + +ul.products li.product .woocommerce-loop-product__link { + display: block; + text-align: center; +} + +ul.products li.product .button { + display: inline-block; + margin: 0 auto; +} + +ul.products li.product .added_to_cart { + background-color: #83b6cc; + border: 2px solid transparent; + border-radius: 2em; + color: #eff6f9; + display: inline-block; + font-family: Karla, Arial, sans-serif; + font-size: 12.8px; + font-size: 0.8rem; + font-weight: bold; + letter-spacing: 1px; + line-height: 1; + margin-top: .5em; + padding: 12px 15px; + text-shadow: none; + text-transform: uppercase; + transition: background-color 0.125s ease-in; + -webkit-appearance: none; +} + +ul.products li.product .added_to_cart:hover { + background-color: transparent; + border-color: #83b6cc; + color: #83b6cc; +} + +@media screen and (min-width: 48em) { + ul.products li.product { + width: 30.7966666667%; + float: left; + margin-right: 3.8%; + } + ul.products li.product.first { + clear: both; + } + ul.products li.product.last { + margin-right: 0; + } + .columns-1 ul.products li.product { + float: none; + width: 100%; + } + .columns-2 ul.products li.product { + width: 48.1%; + } + .columns-3 ul.products li.product { + width: 30.7966666667%; + } + .columns-4 ul.products li.product { + width: 22.15%; + } + .columns-5 ul.products li.product { + width: 16.96%; + } + .columns-6 ul.products li.product { + width: 13.4933333333%; + } +} + +/**/ +/* !Pagination */ +/**/ + +.woocommerce-pagination { + font-family: Karla, Arial, sans-serif; + margin: 1em 0; +} + +.woocommerce-pagination .page-numbers { + margin: 0; + padding: 0; + text-align: center; +} + +.woocommerce-pagination .page-numbers li { + display: inline-block; + letter-spacing: 1px; +} + +.woocommerce-pagination .page-numbers li>* { + font-weight: bold; + padding: .3em; +} + +.infinite-scroll .woocommerce-pagination { + display: none; +} + +/** + * Single product + */ +/** + * Single Product + */ +.single-product div.product { + content: ""; + display: block; + margin: 0 auto; + max-width: 700px; + position: relative; +} + +.single-product div.product > .onsale { + display: block; + left: 0; + margin: 2em 0 -2.33em 40px; + position: relative; + top: 0; + z-index: 1; +} + +.single-product div.product .woocommerce-product-gallery { + position: relative; +} + +.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger { + display: block; + padding: 10px; + position: absolute; + top: 1em; + right: 0; + width: 40px; + z-index: 99; +} + +.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image { + background: #f4f4f4; +} + +.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a { + display: block; + line-height: 0; + text-align: center; +} + +.single-product div.product .woocommerce-product-gallery .flex-viewport { + margin-bottom: 1em; +} + +@media ( min-width: 1024px ) { + .single-product div.product { + margin: 0; + } + .single-product div.product .woocommerce-product-gallery .flex-viewport { + width: 100%; + } +} + +.single-product div.product .woocommerce-product-gallery .flex-control-thumbs { + content: ""; + display: table; + margin: 0; + padding: 0; + table-layout: fixed; + width: 100%; +} + +.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li { + list-style: none; + cursor: pointer; + float: left; +} + +.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img { + opacity: .5; +} + +.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active { + opacity: 1; +} + +.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img { + opacity: 1; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li { + width: 48.1%; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) { + margin-right: 0; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) { + clear: both; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li { + width: 30.7966666667%; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) { + margin-right: 0; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) { + clear: both; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li { + width: 22.15%; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) { + margin-right: 0; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) { + clear: both; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li { + width: 16.96%; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) { + margin-right: 0; +} + +.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) { + clear: both; +} + +.stock:empty:before { + display: none; +} + +.stock.in-stock { + color: #0f834d; +} + +.stock.out-of-stock { + color: #e2401c; +} + +.single-product div.product .cart, +.single-product div.product .product_meta { + margin: 2em 0; +} + +.single-product div.product .single_add_to_cart_button { + display: block; +} + +.single-product div.product .product_meta > * { + display: block; +} + +.single-product div.product .reset_variations { + margin: 0 1em; +} + +.single-product div.product .product_meta > * { + display: block; +} + +.single-product div.product .variations tr { + border: 1px solid rgba(233, 213, 192, 0.5); + border-width: 1px 0; +} + +.single-product div.product form.cart .variations { + margin-bottom: 0; +} + +.single-product div.product form.cart, +.single-product div.product form.cart .single_variation_wrap .woocommerce-variation-add-to-cart { + display: flex; + flex-wrap: wrap; + align-items: stretch; + justify-content: space-between; +} + +.single-product div.product form.cart .single_variation_wrap .woocommerce-variation-add-to-cart { + margin: 1.5em 0 0; +} + +.single-product div.product form.cart > * , +.single-product div.product form.cart .single_variation_wrap .woocommerce-variation-add-to-cart > * { + flex: 1 1 auto; +} + +.single-product div.product form.cart .single_variation { + margin: 1.5em 0; +} + +.single-product div.product form.cart .input-text { + background: rgba(255, 255, 255, 0.75); + border: 2px solid #909090; + border-radius: 0; + box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.25); + color: #767676; + font-size: 16px; + font-size: 1rem; + font-style: italic; + transition: all 0.2s ease-in-out 0s; + padding: 0.5em; + width: auto; +} + +.single-product div.product .variations tr td { + padding: 10px 0; +} + +.single-product div.product ins { + padding: 10px; +} + +/** + * Related + */ + +.single-product div.product .related { + border-top: 2px solid #83b6cc; +} + +.single-product div.product .related h2 { + font-family: Karla, Arial, sans-serif; + font-size: 1.2em; + font-weight: 700; + letter-spacing: 1px; + text-transform: uppercase; +} + +/** + * Checkout + */ + +.woocommerce-checkout-payment { + +} +.woocommerce-checkout-payment ul { + list-style: none; +} +.woocommerce-checkout-payment .wc_payment_method { + clear: both; + display: table; +} +.woocommerce-checkout-payment ul .input-radio { + margin: 0 1em 0 0; +} +.woocommerce-checkout-payment ul .payment_box { + display: block; +} +.woocommerce-checkout-payment ul .payment_box p { + font-family: Karla, Arial, sans-serif; + font-size: 0.8em; + font-weight: 500; + letter-spacing: 1px; + text-align: left; + text-transform: uppercase; + margin: 0; +} +.woocommerce-checkout .checkout label { + font-weight: 900; + margin: 0 1em 0 0; +} +.woocommerce-checkout .checkout [for="payment_method_paypal"]>* { + display: inline-block; + vertical-align: baseline; +} +.woocommerce-checkout .checkout [for="payment_method_paypal"]>img { + float: right; + width: 40%; +} +.woocommerce-checkout .checkout .payment_box p, +.woocommerce-checkout .checkout [for="payment_method_paypal"]>a { + font-weight: 400; +} +.woocommerce-account .form-row input[type="email"], +.woocommerce-account .form-row input[type="password"], +.woocommerce-account .form-row input[type="tel"], +.woocommerce-account .form-row input[type="text"], +.woocommerce-checkout .form-row input[type="email"], +.woocommerce-checkout .form-row input[type="password"], +.woocommerce-checkout .form-row input[type="tel"], +.woocommerce-checkout .form-row input[type="text"], +.woocommerce-account .woocommerce-form-row input[type="email"], +.woocommerce-account .woocommerce-form-row input[type="password"], +.woocommerce-account .woocommerce-form-row input[type="tel"], +.woocommerce-account .woocommerce-form-row input[type="text"], +.woocommerce-checkout .woocommerce-form-row input[type="email"], +.woocommerce-checkout .woocommerce-form-row input[type="password"], +.woocommerce-checkout .woocommerce-form-row input[type="tel"], +.woocommerce-checkout .woocommerce-form-row input[type="text"] { + width: 100%; +} +.woocommerce-checkout .checkout .required { + border-bottom: none; +} +.woocommerce-checkout .col-2 { + clear: both; +} +.woocommerce-checkout .col-2 .woocommerce-additional-fields h3 { + margin-bottom: 0; +} + +@media screen and (min-width: 768px) { + .col2-set .form-row-first { + float: left; + margin-right: 3.8%; + } + .col2-set .form-row-last { + float: right; + margin-right: 0; + } + .col2-set .form-row-first, + .col2-set .form-row-last { + width: 48.1%; + } +} + +/** + * Order & Customer Details + */ + +.woocommerce-order-details table.shop_table thead tr th { + text-align: left; +} +.woocommerce-order-details table.shop_table tfoot tr th[scope="row"] { + text-align: right; +} +.woocommerce-order-details table.shop_table tbody tr th { + text-align: left; +} +.woocommerce-order-details h2, +.woocommerce-customer-details h2 { + font-family: Karla, Arial, sans-serif; + font-size: 1.2em; + font-weight: 700; + letter-spacing: 1px; + margin-bottom: 20px; + padding-bottom: 10px; + text-align: left; + text-transform: uppercase; +} + +.woocommerce-checkout-review-order-table .shipping ul, +.shop_table .shipping ul { + list-style: none; + margin: 0; +} + +.woocommerce-checkout-review-order-table .shipping ul li, +.shop_table .shipping ul li, +.shop_table .shipping .woocommerce-shipping-calculator p { + margin: 0; +} + +/** + * General WooCommerce components + */ + +/** + * Header cart + */ +.site-header-cart { + position: relative; + margin: 0; + padding: 0; + content: ""; + display: table; + table-layout: fixed; +} + +.site-header-cart .cart-contents { + text-decoration: none; +} + +.site-header-cart .widget_shopping_cart { + display: none; +} + +.site-header-cart .product_list_widget { + margin: 0; + padding: 0; +} + +.site-header-cart .woocommerce.widget_shopping_cart .product_list_widget li a { + color: #fcfbf9; +} + +.site-header-cart .woocommerce.widget_shopping_cart .product_list_widget li a:hover { + color: #e9d5c0; +} + +.woocommerce-checkout .site-header-cart .sub-menu:before, +.woocommerce-cart .site-header-cart .sub-menu:before { + content: none; +} + +/** + * Star rating + */ +.star-rating { + overflow: hidden; + position: relative; + height: 1.618em; + line-height: 1.618; + font-size: 1em; + width: 5.3em; + font-family: 'star'; + font-weight: 400; +} + +.star-rating:before { + content: "\53\53\53\53\53"; + opacity: .25; + float: left; + top: 0; + left: 0; + position: absolute; +} + +.star-rating span { + overflow: hidden; + float: left; + top: 0; + left: 0; + position: absolute; + padding-top: 1.5em; +} + +.star-rating span:before { + content: "\53\53\53\53\53"; + top: 0; + position: absolute; + left: 0; + color: #83b6cc; +} + +p.stars a { + position: relative; + height: 1em; + width: 1em; + text-indent: -999em; + display: inline-block; + text-decoration: none; + margin-right: 1px; + font-weight: 400; +} + +.entry-content p.stars a:hover { + border-bottom: none; +} + +p.stars a:before { + display: block; + position: absolute; + top: 0; + left: 0; + width: 1em; + height: 1em; + line-height: 1; + font-family: "star"; + content: "\53"; + color: #404040; + text-indent: 0; + opacity: .25; +} + +p.stars a:hover ~ a:before { + content: "\53"; + color: #404040; + opacity: .25; +} + +p.stars:hover a:before { + content: "\53"; + color: #83b6cc; + opacity: 1; +} + +p.stars.selected a.active:before { + content: "\53"; + color: #83b6cc; + opacity: 1; +} + +p.stars.selected a.active ~ a:before { + content: "\53"; + color: #404040; + opacity: .25; +} + +p.stars.selected a:not(.active):before { + content: "\53"; + color: #83b6cc; + opacity: 1; +} + +/**/ +/* !Tabs */ +/**/ + +.woocommerce-tabs { + clear: both; + margin: 2em 0; +} + +.woocommerce-tabs ul.tabs { + border-bottom: 2px solid #83b6cc; + list-style: none; + margin: 0 0 -2px; + padding: 0 0 0 1em; +} + +.woocommerce-tabs .panel h2:first-of-type { + font-family: Karla, Arial, sans-serif; + font-size: 1.2em; + font-weight: 700; + letter-spacing: 1px; + margin-bottom: 20px; + padding-bottom: 10px; + text-align: left; + text-transform: uppercase; +} + +.woocommerce-tabs ul.tabs li { + border-top-left-radius: 1em; + border-top-right-radius: 1em; + border: 2px solid #83b6cc; + border-width: 2px 2px 0; + display: inline-block; + font-size: 15.2px; + font-size: 0.95rem; + margin: -2px calc( .5em - 2px ) 0 -2px; + overflow: hidden; + position: relative; + vertical-align: bottom; +} + +.woocommerce-tabs ul.tabs li:not(.active) { + background: #83b6cc; +} + +.woocommerce-tabs ul.tabs li:not(.active) a { + color: #eff6f9; +} + +.woocommerce-tabs ul.tabs li:not(.active):hover { + background: transparent; +} + +.woocommerce-tabs ul.tabs li:not(.active):hover a { + color: #83b6cc; +} + +.woocommerce-tabs ul.tabs li.active { + border-bottom-color: rgba(252, 251, 249, 1); + border-bottom-width: 2px; + margin-bottom: -2px; +} + +.woocommerce-tabs ul.tabs li a { + display: block; + color: #83b6cc; + font-family: Karla, Arial, sans-serif; + font-weight: 700; + padding: .66em 1.5em .5em; + outline: none; + letter-spacing: 1px; + text-decoration: none; + text-transform: uppercase; +} + +/** + * Reviews + */ + +.single-product div.product .commentlist { +} + +.single-product div.product .commentlist .comment { + border-bottom: 1px solid rgba(233, 213, 192, 0.5); + padding: 1em 0; + margin: 1em 0; + list-style: none; +} + +.single-product div.product .commentlist .avatar { + border-radius: 50%; + float: left; + height: 75px; + margin: 0 1em 0 0; + width: 75px; +} + +.single-product div.product .commentlist .meta, +.single-product div.product .commentlist .description { + margin: 0 0 1em calc(75px + 1em); +} + +.single-product div.product .commentlist .description p { + margin-bottom: 1em; +} + + +/** + * Password strength meter + */ +.woocommerce-password-strength { + text-align: right; +} + +.woocommerce-password-strength.strong { + color: #0f834d; +} + +.woocommerce-password-strength.short { + color: #e2401c; +} + +.woocommerce-password-strength.bad { + color: #e2401c; +} + +.woocommerce-password-strength.good { + color: #3D9CD2; +} + +/** + * Forms + */ +.form-row.woocommerce-validated input.input-text { + box-shadow: inset 2px 0 0 #0f834d; +} + +.form-row.woocommerce-invalid input.input-text { + box-shadow: inset 2px 0 0 #e2401c; +} + +.required { + color: red; +} + +/** + * Notices + */ +.woocommerce-message, +.woocommerce-info, +.woocommerce-error, +.woocommerce-noreviews, +p.no-comments { + color: #83b6cc; + border: 3px solid currentColor; + clear: both; + content: ""; + display: table; + list-style: none; + margin: 1em 0; + table-layout: fixed; +} + +.woocommerce-message, +.woocommerce-info { + padding: .5em; +} + + +.woocommerce-message li, +.woocommerce-info li, +.woocommerce-error li, +.woocommerce-noreviews li, +.woocommerce-Reviews .woocommerce-noreviews { + border-bottom: 3px solid currentColor; + margin: 0 0 -3px; + padding: .5em; +} + +.woocommerce-info, +.woocommerce-noreviews, +p.no-comments { + border-color: currentColor; +} + +.woocommerce-Reviews #reply-title { + display: block; + font-size: 1em; + margin: 0 0 1em !important; +} + +.woocommerce-error { + color: #e2401c; + border-color: currentColor; +} + +.demo_store { + left: 1em; + bottom: 1em; + right: 1em; + background: #83b6cc; + border-radius: 1em; + border-color: currentColor; + color: #fff; + font-size: 16px; + font-size: 1rem; + margin: 0; + opacity: .875; + padding: 1em; + position: fixed; + z-index: 9999; + width: calc(100% - 2em); +} + +.demo_store a { + color: #fff; + font-weight: 800; + text-decoration: underline; +} + +@media screen and (min-width: 768px) { + .demo_store { + width: 33%; + left: 50%; + margin-left: calc( -33% * .5 ); + } +} + +/** + * Header cart + */ + +.site-header-cart .widget_shopping_cart_content { + background: #11100f; + display: table; +} + +.site-header-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__total, +.site-header-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons { + margin: 1em; + padding: 0; +} + +.site-header-cart .widget_shopping_cart_content .woocommerce-mini-cart__empty-message { + margin: 1em; +} + +@media screen and (min-width: 768px) { + + .site-header-cart .widget_shopping_cart { + border: none; + position: absolute; + top: 100%; + width: 100%; + z-index: 999999; + left: -999em; + display: block; + } + + .main-navigation #primary-menu > .site-header-cart:nth-last-child(1) li:hover ul::before, + .main-navigation #primary-menu > .site-header-cart:nth-last-child(2) li:hover ul::before, + .main-navigation #primary-menu > .site-header-cart:nth-last-child(1) li:hover ul::after, + .main-navigation #primary-menu > .site-header-cart:nth-last-child(2) li:hover ul::after { + content: none; + } + + .site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart { + left: 0; + display: block; + } + + .site-header-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a { + border-top-width: 2px; + color: #eff6f9; + display: inline-block; + margin: 0; + width: auto; + } + + .site-header-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:hover { + color: #83b6cc; + } + + .site-header-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:first-of-type { + margin-right: 1em; + } + + .site-header-cart .woocommerce.widget_shopping_cart .product_list_widget { + left: 0; + position: relative; + } + + .site-header-cart .woocommerce.widget_shopping_cart .product_list_widget .mini_cart_item { + padding: 1em calc( 1.5em + 10px ) 1em 1em; + } + + .site-header-cart .woocommerce.widget_shopping_cart .product_list_widget .mini_cart_item img { + width: 20%; + } + + .site-header-cart .woocommerce.widget_shopping_cart .product_list_widget .mini_cart_item a:not(.remove) { + font-size: 1em; + } + + .site-header-cart .woocommerce.widget .amount, + .site-header-cart .woocommerce.widget .reviewer, + .site-header-cart .woocommerce.widget .total, + .site-header-cart .woocommerce.widget .quantity { + color: #e9d5c0; + } + + .main-navigation ul > .site-header-cart .sub-menu { + min-width: 400px; + } + + .main-navigation #primary-menu > .site-header-cart:nth-last-child(1) li:hover ul, + .main-navigation #primary-menu > .site-header-cart:nth-last-child(2) li:hover ul { + left: auto; + right: auto; + } +} + +/* !My Account */ + +.woocommerce-MyAccount-navigation { + border: 1px solid rgba(233, 213, 192, 0.5); + border-width: 1px 0; + clear: both; + display: table; + margin: 0 auto 2em; + width: 100%; +} + +.woocommerce .form-row .woocommerce-form__label { + margin-left: 1em; +} + +.woocommerce-MyAccount-navigation ul { + display: flex; + flex-wrap: wrap; + list-style: none; + margin: 0; + padding-left: 0; +} + +.woocommerce-MyAccount-navigation li { + margin: .5em; +} + +.woocommerce-MyAccount-navigation a { + font-family: Karla, Arial, sans-serif; + font-size: 12px; + font-size: 1.2rem; + font-weight: 700; + letter-spacing: 1px; + text-decoration: none; + text-transform: uppercase; +} + +.woocommerce-MyAccount-navigation li.is-active a { + border-bottom: 2px solid #e9d5c0; + color: #e9d5c0; +} + +.woocommerce-MyAccount-navigation li:hover>a, +.woocommerce-MyAccount-navigation li.focus>a { +} + +.woocommerce-MyAccount-content .woocommerce-info { + color: #83b6cc; + border: none; + padding: 0 1em; + text-align: center; + width: 100%; +} + +/**/ +/* !# Widgets */ +/**/ + +/* !Product List Widgets */ + +.woocommerce.widget_products .product_list_widget, +.woocommerce.widget_recent_reviews .product_list_widget, +.woocommerce.widget_shopping_cart .product_list_widget, +.woocommerce.widget_top_rated_products .product_list_widget, +.woocommerce.widget_recently_viewed_products .product_list_widget { + display: flex; + flex-wrap: wrap; +} + +.woocommerce.widget_products .product_list_widget li, +.woocommerce.widget_recent_reviews .product_list_widget li, +.woocommerce.widget_shopping_cart .product_list_widget li, +.woocommerce.widget_top_rated_products .product_list_widget li, +.woocommerce.widget_recently_viewed_products .product_list_widget li { + border-bottom: 1px solid rgba(233, 213, 192, 0.5); + padding: 1em 0; + width: 100%; +} + +.woocommerce.widget_products .product_list_widget li:last-child, +.woocommerce.widget_recent_reviews .product_list_widget li:last-child, +.woocommerce.widget_top_rated_products .product_list_widget li:last-child, +.woocommerce.widget_recently_viewed_products .product_list_widget li:last-child { + border-bottom: none; +} + +.woocommerce.widget_products .product_list_widget li a, +.woocommerce.widget_recent_reviews .product_list_widget li a, +.woocommerce.widget_shopping_cart .product_list_widget li a, +.woocommerce.widget_top_rated_products .product_list_widget li a, +.woocommerce.widget_recently_viewed_products .product_list_widget li a { + border-top: none; + color: #83b6cc; + display: block; + padding: 0; +} + +.woocommerce.widget_products .product_list_widget li img, +.woocommerce.widget_recent_reviews .product_list_widget li img, +.woocommerce.widget_shopping_cart .product_list_widget li img, +.woocommerce.widget_top_rated_products .product_list_widget li img, +.woocommerce.widget_recently_viewed_products .product_list_widget li img { + float: left; + margin-right: 1em; + width: 25%; +} + +.woocommerce.widget_products .product_list_widget li .product-title, +.woocommerce.widget_recent_reviews .product_list_widget li .product-title, +.woocommerce.widget_recent_reviews .product_list_widget li a, +.woocommerce.widget_shopping_cart .product_list_widget li .product-title, +.woocommerce.widget_top_rated_products .product_list_widget li .product-title, +.woocommerce.widget_recently_viewed_products .product_list_widget li .product-title { + font-size: 1.2em; + line-height: 1em; + font-weight: 700; + letter-spacing: 1px; + text-transform: uppercase; +} + +.woocommerce.widget_products .product_list_widget li .product-title, +.woocommerce.widget_recent_reviews .product_list_widget li .product-title, +.woocommerce.widget_shopping_cart .product_list_widget li .product-title, +.woocommerce.widget_top_rated_products .product_list_widget li .product-title, +.woocommerce.widget_recently_viewed_products .product_list_widget li .product-title { +} + +.woocommerce.widget .amount, +.woocommerce.widget .reviewer, +.woocommerce.widget .total, +.woocommerce.widget .quantity { + color: #726b60; + font-family: Lora, Georgia, serif; + font-size: 18px; + font-size: 1.125rem; + line-height: 1.5; +} + +.footer-widget-area .woocommerce.widget .amount, +.footer-widget-area .woocommerce.widget .reviewer, +.footer-widget-area .woocommerce.widget .total, +.footer-widget-area .woocommerce.widget .quantity { + color: #e9d5c0; +} + +.woocommerce.widget ul a:hover, +#tertiary .woocommerce.widget ul a:hover, +#tertiary .woocommerce.widget:not(.widget_wpcom_social_media_icons_widget):not(.jetpack_widget_social_icons) ul a:hover { + background: transparent; + color: #e9d5c0; +} + +.woocommerce.widget li del { + color: #726b60; + opacity: .5; +} + +.woocommerce.widget li ins { + padding: 5px; +} + +/* !Product Search Widget */ + +.woocommerce.widget_product_search .woocommerce-product-search { + margin-top: 20px; +} + +.woocommerce.widget_product_search .woocommerce-product-search input[type="submit"] { + display: none; +} + +/* !Cart Widget */ + +.woocommerce.widget_shopping_cart .remove { + text-align: center; +} + +.woocommerce.widget_shopping_cart .woocommerce-mini-cart__total { + padding: 0; +} + +.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a { + color: #ffffff; + display: inline-block; + margin-right: 1em; + padding: 12px 15px; +} + +.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:hover { + color: #83b6cc; +} + +.woocommerce.widget_shopping_cart .product_list_widget li a { + font-size: 1.2em; + font-weight: 700; + letter-spacing: 1px; + line-height: 1em; + text-transform: uppercase; +} + +.woocommerce.widget_shopping_cart .product_list_widget li.mini_cart_item { + padding: 1em 1em 1em 0; + position: relative; +} + +.woocommerce.widget_shopping_cart .product_list_widget li a.remove { + font-size: 1.5em; + height: 1.25em; + position: absolute; + right: 0; + top: 10px; + width: 1.25em; +} + +/* !Price & Rating Filter */ + +.woocommerce.widget_price_filter, +.woocommerce.widget_rating_filter, +.woocommerce.widget_layered_nav_filters { + padding-top: 1.5em; +} + +.woocommerce.widget_rating_filter ul a, +.woocommerce.widget_layered_nav_filters ul a { + border-top: none; +} + +.woocommerce.widget_layered_nav_filters .amount { + color: inherit; + font-family: Karla, Arial, sans-serif; + font-size: 16px; + font-size: 1rem; +} + +.woocommerce.widget_layered_nav_filters li a:before { + content: "\00D7"; + margin-right: .5em; +} + +/* !Recent Reviews Widget */ + +.woocommerce.widget_recent_reviews .product_list_widget .star-rating, +.woocommerce.widget_top_rated_products .product_list_widget .star-rating { + margin: 0; +} + +/* !Ratings Widget */ + +.woocommerce.widget_rating_filter .star-rating { + float: left; +} + +/* ! Price Filter Widget */ + +.widget_price_filter .price_slider { + margin-bottom: 1.5em; +} + +.widget_price_filter .price_slider_amount { + text-align: right; + line-height: 2.4em; +} + +.widget_price_filter .price_slider_amount .button { + float: left; +} + +.widget_price_filter .ui-slider { + position: relative; + text-align: left; +} + +.widget_price_filter .ui-slider .ui-slider-handle { + background: #ffffff; + border-radius: 100%; + color: #83b6cc; + box-shadow: 0 0 0 0.25em currentColor; + box-sizing: border-box; + cursor: ew-resize; + height: .75em; + margin-top: -.125em; + opacity: 1; + outline: none; + position: absolute; + width: .75em; + z-index: 2; +} + +.widget_price_filter .ui-slider .ui-slider-handle:last-child { + margin-left: -1em; +} + +.widget_price_filter .ui-slider .ui-slider-handle:hover, +.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active { + color: #83b6cc; + box-shadow: 0 0 0 0.25em currentColor; +} + +.widget_price_filter .ui-slider .ui-slider-range { + background: #2d2a26; + border: 0; + border-radius: 1em; + display: block; + position: absolute; + z-index: 1; +} + +.widget_price_filter .price_slider_wrapper .ui-widget-content { + background: rgba(0, 0, 0, 0.1); + border-radius: 1em; +} + +.widget_price_filter .ui-slider-horizontal { + height: .5em; +} + +.widget_price_filter .ui-slider-horizontal .ui-slider-range { + height: 100%; +} + +@media all and (max-width: 768px) { + + .woocommerce.widget_products .product_list_widget li, + .woocommerce.widget_recent_reviews .product_list_widget li, + .woocommerce.widget_shopping_cart .product_list_widget li, + .woocommerce.widget_top_rated_products .product_list_widget li, + .woocommerce.widget_recently_viewed_products .product_list_widget li { + width: 100%; + } +}