Initial commit of Pique
This commit is contained in:
parent
112af9a4fd
commit
31fd25b9ea
102 changed files with 23079 additions and 0 deletions
68
pique/404.php
Normal file
68
pique/404.php
Normal file
|
@ -0,0 +1,68 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying 404 pages (not found).
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<section class="error-404 not-found">
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'pique' ); ?></h1>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<div class="page-content">
|
||||
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'pique' ); ?></p>
|
||||
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<?php the_widget( 'WP_Widget_Recent_Posts', array( 'number' => 7 ), array(
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) ); ?>
|
||||
|
||||
<?php if ( pique_categorized_blog() ) : // Only show the widget if site has multiple categories. ?>
|
||||
<div class="widget widget_categories">
|
||||
<h2 class="widget-title"><?php esc_html_e( 'Most Used Categories', 'pique' ); ?></h2>
|
||||
<ul>
|
||||
<?php
|
||||
wp_list_categories( array(
|
||||
'orderby' => 'count',
|
||||
'order' => 'DESC',
|
||||
'show_count' => 1,
|
||||
'title_li' => '',
|
||||
'number' => 10,
|
||||
) );
|
||||
?>
|
||||
</ul>
|
||||
</div><!-- .widget -->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
/* translators: %1$s: smiley */
|
||||
$archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'pique' ), convert_smilies( ':)' ) ) . '</p>';
|
||||
the_widget( 'WP_Widget_Archives', array( 'count' => 1 ), array(
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) );
|
||||
?>
|
||||
|
||||
<?php
|
||||
the_widget( 'WP_Widget_Tag_Cloud', '', array(
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) );
|
||||
?>
|
||||
|
||||
</div><!-- .page-content -->
|
||||
</section><!-- .error-404 -->
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
43
pique/archive-jetpack-testimonial.php
Normal file
43
pique/archive-jetpack-testimonial.php
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying the Testimonials archive page.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php $jetpack_options = get_theme_mod( 'jetpack_testimonials' ); ?>
|
||||
<header class="page-header">
|
||||
<?php if ( '' !== $jetpack_options['page-title'] ) : // only display if title not empty ?>
|
||||
<h1 class="page-title">
|
||||
<?php echo esc_html( $jetpack_options['page-title'] ); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php if ( '' !== $jetpack_options['page-content'] ) : // only display if content not empty ?>
|
||||
<div class="taxonomy-description">
|
||||
<?php echo convert_chars( convert_smilies( wptexturize( stripslashes( wp_filter_post_kses( addslashes( $jetpack_options['page-content'] ) ) ) ) ) ); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</header>
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'components/content', get_post_format() ); ?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php
|
||||
the_posts_navigation();
|
||||
endif;
|
||||
?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_footer(); ?>
|
51
pique/archive.php
Normal file
51
pique/archive.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying archive pages.
|
||||
*
|
||||
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="page-header">
|
||||
<?php
|
||||
the_archive_title( '<h1 class="page-title">', '</h1>' );
|
||||
the_archive_description( '<div class="taxonomy-description">', '</div>' );
|
||||
?>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<?php /* Start the Loop */ ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Include the Post-Format-specific template for the content.
|
||||
* If you want to override this in a child theme, then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'components/content', get_post_format() );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php the_posts_navigation(); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'none' ); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
|
||||
<?php get_footer(); ?>
|
BIN
pique/assets/images/default-header.jpg
Normal file
BIN
pique/assets/images/default-header.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 135 KiB |
BIN
pique/assets/images/noise.png
Normal file
BIN
pique/assets/images/noise.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
38
pique/assets/js/background-fix.js
Normal file
38
pique/assets/js/background-fix.js
Normal file
|
@ -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 );
|
253
pique/assets/js/customizer.js
Normal file
253
pique/assets/js/customizer.js
Normal file
|
@ -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( '<span class="pique-panel-title">' + $( this ).data( 'panel-title' ) + '</span>' );
|
||||
});
|
||||
});
|
||||
|
||||
} )( jQuery );
|
89
pique/assets/js/front-page.js
Normal file
89
pique/assets/js/front-page.js
Normal file
|
@ -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 );
|
111
pique/assets/js/header.js
Normal file
111
pique/assets/js/header.js
Normal file
|
@ -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 );
|
209
pique/assets/js/jquery.scrollTo.js
Normal file
209
pique/assets/js/jquery.scrollTo.js
Normal file
|
@ -0,0 +1,209 @@
|
|||
/*!
|
||||
* jQuery.scrollTo
|
||||
* Copyright (c) 2007-2015 Ariel Flesler - aflesler<a>gmail<d>com | 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;
|
||||
});
|
7
pique/assets/js/jquery.scrollTo.min.js
vendored
Normal file
7
pique/assets/js/jquery.scrollTo.min.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
/**
|
||||
* Copyright (c) 2007-2015 Ariel Flesler - aflesler<a>gmail<d>com | 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<b.axis.length;u&&(d/=2);b.offset=h(b.offset);b.over=h(b.over);return this.each(function(){function k(a){var k=$.extend({},b,{queue:!0,duration:d,complete:a&&function(){a.call(q,e,b)}});r.animate(f,k)}if(null!==a){var l=n(this),q=l?this.contentWindow||window:this,r=$(q),e=a,f={},t;switch(typeof e){case "number":case "string":if(/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test(e)){e= h(e);break}e=l?$(e):$(e,q);case "object":if(e.length===0)return;if(e.is||e.style)t=(e=$(e)).offset()}var v=$.isFunction(b.offset)&&b.offset(q,e)||b.offset;$.each(b.axis.split(""),function(a,c){var d="x"===c?"Left":"Top",m=d.toLowerCase(),g="scroll"+d,h=r[g](),n=p.max(q,c);t?(f[g]=t[m]+(l?0:h-r.offset()[m]),b.margin&&(f[g]-=parseInt(e.css("margin"+d),10)||0,f[g]-=parseInt(e.css("border"+d+"Width"),10)||0),f[g]+=v[m]||0,b.over[m]&&(f[g]+=e["x"===c?"width":"height"]()*b.over[m])):(d=e[m],f[g]=d.slice&& "%"===d.slice(-1)?parseFloat(d)/100*n:d);b.limit&&/^\d+$/.test(f[g])&&(f[g]=0>=f[g]?0:Math.min(f[g],n));!a&&1<b.axis.length&&(h===f[g]?f={}:u&&(k(b.onAfterFirst),f={}))});k(b.onAfter)}})};p.max=function(a,d){var b="x"===d?"Width":"Height",h="scroll"+b;if(!n(a))return a[h]-$(a)[b.toLowerCase()]();var b="client"+b,k=a.ownerDocument||a.document,l=k.documentElement,k=k.body;return Math.max(l[h],k[h])-Math.min(l[b],k[b])};$.Tween.propHooks.scrollLeft=$.Tween.propHooks.scrollTop={get:function(a){return $(a.elem)[a.prop]()}, set:function(a){var d=this.get(a);if(a.options.interrupt&&a._last&&a._last!==d)return $(a.elem).stop();var b=Math.round(a.now);d!==b&&($(a.elem)[a.prop](b),a._last=this.get(a))}};return p});
|
644
pique/assets/js/jquery.waypoints.js
Normal file
644
pique/assets/js/jquery.waypoints.js
Normal file
|
@ -0,0 +1,644 @@
|
|||
/*!
|
||||
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'
|
||||
|
||||
var keyCounter = 0
|
||||
var allWaypoints = {}
|
||||
|
||||
/* http://imakewebthings.com/waypoints/api/waypoint */
|
||||
function Waypoint(options) {
|
||||
if ( ! options) {
|
||||
throw new Error( 'No options passed to Waypoint constructor' )
|
||||
}
|
||||
if ( ! options.element) {
|
||||
throw new Error( 'No element option passed to Waypoint constructor' )
|
||||
}
|
||||
if ( ! options.handler) {
|
||||
throw new Error( 'No handler option passed to Waypoint constructor' )
|
||||
}
|
||||
|
||||
this.key = 'waypoint-' + keyCounter
|
||||
this.options = Waypoint.Adapter.extend( {}, Waypoint.defaults, options )
|
||||
this.element = this.options.element
|
||||
this.adapter = new Waypoint.Adapter( this.element )
|
||||
this.callback = options.handler
|
||||
this.axis = this.options.horizontal ? 'horizontal' : 'vertical'
|
||||
this.enabled = this.options.enabled
|
||||
this.triggerPoint = null
|
||||
this.group = Waypoint.Group.findOrCreate({
|
||||
name: this.options.group,
|
||||
axis: this.axis
|
||||
})
|
||||
this.context = Waypoint.Context.findOrCreateByElement( this.options.context )
|
||||
|
||||
if (Waypoint.offsetAliases[this.options.offset]) {
|
||||
this.options.offset = Waypoint.offsetAliases[this.options.offset]
|
||||
}
|
||||
this.group.add( this )
|
||||
this.context.add( this )
|
||||
allWaypoints[this.key] = this
|
||||
keyCounter += 1
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Waypoint.prototype.queueTrigger = function(direction) {
|
||||
this.group.queueTrigger( this, direction )
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Waypoint.prototype.trigger = function(args) {
|
||||
if ( ! this.enabled) {
|
||||
return
|
||||
}
|
||||
if (this.callback) {
|
||||
this.callback.apply( this, args )
|
||||
}
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/destroy */
|
||||
Waypoint.prototype.destroy = function() {
|
||||
this.context.remove( this )
|
||||
this.group.remove( this )
|
||||
delete allWaypoints[this.key]
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/disable */
|
||||
Waypoint.prototype.disable = function() {
|
||||
this.enabled = false
|
||||
return this
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/enable */
|
||||
Waypoint.prototype.enable = function() {
|
||||
this.context.refresh()
|
||||
this.enabled = true
|
||||
return this
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/next */
|
||||
Waypoint.prototype.next = function() {
|
||||
return this.group.next( this )
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/previous */
|
||||
Waypoint.prototype.previous = function() {
|
||||
return this.group.previous( this )
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Waypoint.invokeAll = function(method) {
|
||||
var allWaypointsArray = []
|
||||
for (var waypointKey in allWaypoints) {
|
||||
allWaypointsArray.push( allWaypoints[waypointKey] )
|
||||
}
|
||||
for (var i = 0, end = allWaypointsArray.length; i < end; i++) {
|
||||
allWaypointsArray[i][method]()
|
||||
}
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/destroy-all */
|
||||
Waypoint.destroyAll = function() {
|
||||
Waypoint.invokeAll( 'destroy' )
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/disable-all */
|
||||
Waypoint.disableAll = function() {
|
||||
Waypoint.invokeAll( 'disable' )
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/enable-all */
|
||||
Waypoint.enableAll = function() {
|
||||
Waypoint.invokeAll( 'enable' )
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/refresh-all */
|
||||
Waypoint.refreshAll = function() {
|
||||
Waypoint.Context.refreshAll()
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/viewport-height */
|
||||
Waypoint.viewportHeight = function() {
|
||||
return window.innerHeight || document.documentElement.clientHeight
|
||||
}
|
||||
|
||||
/* Public */
|
||||
/* http://imakewebthings.com/waypoints/api/viewport-width */
|
||||
Waypoint.viewportWidth = function() {
|
||||
return document.documentElement.clientWidth
|
||||
}
|
||||
|
||||
Waypoint.adapters = []
|
||||
|
||||
Waypoint.defaults = {
|
||||
context: window,
|
||||
continuous: true,
|
||||
enabled: true,
|
||||
group: 'default',
|
||||
horizontal: false,
|
||||
offset: 0
|
||||
}
|
||||
|
||||
Waypoint.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 = Waypoint
|
||||
}())
|
||||
;(function() {
|
||||
'use strict'
|
||||
|
||||
function requestAnimationFrameShim(callback) {
|
||||
window.setTimeout( callback, 1000 / 60 )
|
||||
}
|
||||
|
||||
var keyCounter = 0
|
||||
var contexts = {}
|
||||
var Waypoint = window.Waypoint
|
||||
var oldWindowLoad = window.onload
|
||||
|
||||
/* http://imakewebthings.com/waypoints/api/context */
|
||||
function Context(element) {
|
||||
this.element = element
|
||||
this.Adapter = Waypoint.Adapter
|
||||
this.adapter = new this.Adapter( element )
|
||||
this.key = 'waypoint-context-' + keyCounter
|
||||
this.didScroll = false
|
||||
this.didResize = false
|
||||
this.oldScroll = {
|
||||
x: this.adapter.scrollLeft(),
|
||||
y: this.adapter.scrollTop()
|
||||
}
|
||||
this.waypoints = {
|
||||
vertical: {},
|
||||
horizontal: {}
|
||||
}
|
||||
|
||||
element.waypointContextKey = this.key
|
||||
contexts[element.waypointContextKey] = this
|
||||
keyCounter += 1
|
||||
|
||||
this.createThrottledScrollHandler()
|
||||
this.createThrottledResizeHandler()
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Context.prototype.add = function(waypoint) {
|
||||
var axis = waypoint.options.horizontal ? 'horizontal' : 'vertical'
|
||||
this.waypoints[axis][waypoint.key] = waypoint
|
||||
this.refresh()
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Context.prototype.checkEmpty = function() {
|
||||
var horizontalEmpty = this.Adapter.isEmptyObject( this.waypoints.horizontal )
|
||||
var verticalEmpty = this.Adapter.isEmptyObject( this.waypoints.vertical )
|
||||
if (horizontalEmpty && verticalEmpty) {
|
||||
this.adapter.off( '.waypoints' )
|
||||
delete contexts[this.key]
|
||||
}
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Context.prototype.createThrottledResizeHandler = function() {
|
||||
var self = this
|
||||
|
||||
function resizeHandler() {
|
||||
self.handleResize()
|
||||
self.didResize = false
|
||||
}
|
||||
|
||||
this.adapter.on('resize.waypoints', function() {
|
||||
if ( ! self.didResize) {
|
||||
self.didResize = true
|
||||
Waypoint.requestAnimationFrame( resizeHandler )
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Context.prototype.createThrottledScrollHandler = function() {
|
||||
var self = this
|
||||
function scrollHandler() {
|
||||
self.handleScroll()
|
||||
self.didScroll = false
|
||||
}
|
||||
|
||||
this.adapter.on('scroll.waypoints', function() {
|
||||
if ( ! self.didScroll || Waypoint.isTouch) {
|
||||
self.didScroll = true
|
||||
Waypoint.requestAnimationFrame( scrollHandler )
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Context.prototype.handleResize = function() {
|
||||
Waypoint.Context.refreshAll()
|
||||
}
|
||||
|
||||
/* Private */
|
||||
Context.prototype.handleScroll = function() {
|
||||
var triggeredGroups = {}
|
||||
var axes = {
|
||||
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 axisKey in axes) {
|
||||
var axis = axes[axisKey]
|
||||
var isForward = axis.newScroll > 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 )
|
||||
}
|
||||
}())
|
||||
;
|
7
pique/assets/js/jquery.waypoints.min.js
vendored
Normal file
7
pique/assets/js/jquery.waypoints.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
104
pique/assets/js/navigation.js
Normal file
104
pique/assets/js/navigation.js
Normal file
|
@ -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 );
|
74
pique/assets/js/panel-customizer.js
Normal file
74
pique/assets/js/panel-customizer.js
Normal file
|
@ -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 );
|
26
pique/assets/js/skip-link-focus-fix.js
Normal file
26
pique/assets/js/skip-link-focus-fix.js
Normal file
|
@ -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 );
|
||||
}
|
||||
})();
|
21
pique/assets/js/woocommerce.js
Normal file
21
pique/assets/js/woocommerce.js
Normal file
|
@ -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( '<i class="fa fa-search-plus"></i>' );
|
||||
}
|
||||
|
||||
// Initialize init on page load.
|
||||
$( document ).on( 'ready', function() {
|
||||
imageZoomIcon();
|
||||
});
|
||||
|
||||
} )( jQuery );
|
81
pique/comments.php
Normal file
81
pique/comments.php
Normal file
|
@ -0,0 +1,81 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying comments.
|
||||
*
|
||||
* The area of the page that contains both current comments
|
||||
* and the comment form.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
/*
|
||||
* If the current post is protected by a password and
|
||||
* the visitor has not yet entered the password we will
|
||||
* return early without loading the comments.
|
||||
*/
|
||||
if ( post_password_required() ) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="comments" class="comments-area">
|
||||
|
||||
<?php // You can start editing here -- including this comment! ?>
|
||||
|
||||
<?php if ( have_comments() ) : ?>
|
||||
|
||||
<h2 class="comments-title">
|
||||
<?php
|
||||
printf( // WPCS: XSS OK.
|
||||
esc_html( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'pique' ) ),
|
||||
number_format_i18n( get_comments_number() ),
|
||||
'<span>' . get_the_title() . '</span>'
|
||||
);
|
||||
?>
|
||||
</h2>
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
||||
<nav id="comment-nav-above" class="navigation comment-navigation" role="navigation">
|
||||
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'pique' ); ?></h2>
|
||||
<div class="nav-links">
|
||||
|
||||
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'pique' ) ); ?></div>
|
||||
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'pique' ) ); ?></div>
|
||||
|
||||
</div><!-- .nav-links -->
|
||||
</nav><!-- #comment-nav-above -->
|
||||
<?php endif; // Check for comment navigation. ?>
|
||||
|
||||
<ol class="comment-list">
|
||||
<?php
|
||||
wp_list_comments( array(
|
||||
'style' => 'ol',
|
||||
'short_ping' => true,
|
||||
'avatar_size' => 150,
|
||||
) );
|
||||
?>
|
||||
</ol><!-- .comment-list -->
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
||||
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
|
||||
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'pique' ); ?></h2>
|
||||
<div class="nav-links">
|
||||
|
||||
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'pique' ) ); ?></div>
|
||||
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'pique' ) ); ?></div>
|
||||
|
||||
</div><!-- .nav-links -->
|
||||
</nav><!-- #comment-nav-below -->
|
||||
<?php endif; // Check for comment navigation. ?>
|
||||
|
||||
<?php endif; // Check for have_comments(). ?>
|
||||
|
||||
<?php // If comments are closed and there are comments, let's leave a little note, shall we?
|
||||
if ( ! comments_open() && '0' !== get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
|
||||
?>
|
||||
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'pique' ); ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php comment_form(); ?>
|
||||
|
||||
</div><!-- #comments -->
|
27
pique/components/content-excerpt.php
Normal file
27
pique/components/content-excerpt.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* Template part for displaying abbreviated posts as excerpts.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
|
||||
<header class="entry-header">
|
||||
|
||||
<?php the_title( sprintf( '<h3 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
|
||||
|
||||
<?php if ( 'post' === get_post_type() ) : ?>
|
||||
<div class="entry-meta">
|
||||
<?php pique_posted_on(); ?>
|
||||
</div><!-- .entry-meta -->
|
||||
<?php endif; ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_excerpt(); ?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
</article><!-- #post-## -->
|
109
pique/components/content-front.php
Normal file
109
pique/components/content-front.php
Normal file
|
@ -0,0 +1,109 @@
|
|||
<?php
|
||||
/**
|
||||
* Template part for displaying pages on front page.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class( 'pique-panel pique-panel'. esc_attr( $pique_panel ) ); ?> data-panel-title="Panel <?php echo esc_attr( $pique_panel ); ?>" >
|
||||
<?php if ( has_post_thumbnail() ) :
|
||||
$thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'pique-hero' ); ?>
|
||||
<div class="pique-panel-background" style="background-image:url(<?php echo esc_url( $thumbnail[0] ); ?>)"></div>
|
||||
<?php endif; ?>
|
||||
<div class="pique-panel-content">
|
||||
<header class="entry-header">
|
||||
<?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
|
||||
|
||||
<?php if ( 'post' === get_post_type() ) : ?>
|
||||
<div class="entry-meta">
|
||||
<?php pique_posted_on(); ?>
|
||||
</div><!-- .entry-meta -->
|
||||
<?php endif; ?>
|
||||
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php pique_edit_link( get_the_ID() ); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'pique' ), array( 'span' => array( 'class' => array() ) ) ),
|
||||
the_title( '<span class="screen-reader-text">"', '"</span>', false )
|
||||
) );
|
||||
?>
|
||||
|
||||
<?php
|
||||
// Show recent blog posts for blog panel (Note that get_option returns a string, so we're casting the result as an int)
|
||||
if ( get_the_ID() === (int) get_option( 'page_for_posts' ) ) : ?>
|
||||
|
||||
<?php // Show three most recent posts
|
||||
$recent_posts = new WP_Query( array(
|
||||
'posts_per_page' => 3,
|
||||
'post_status' => 'publish',
|
||||
) );
|
||||
?>
|
||||
|
||||
<?php if ( $recent_posts->have_posts() ) : ?>
|
||||
|
||||
<div class="pique-recent-posts pique-grid-three">
|
||||
|
||||
<?php
|
||||
// Since WordPress seem to be ignoring our posts_per_page above, let's just brute-force the limit
|
||||
// Note: it's also ignoring the user settings for posts_per_page and defaulting to 7. Maybe an issue
|
||||
// with Infinite Scroll? At any rate, I don't feel so bad about being brutish when it's also being a jerk.
|
||||
$count = 0;
|
||||
while ( $count < 3 AND $recent_posts->have_posts() ) : $recent_posts->the_post();
|
||||
get_template_part( 'components/content', 'excerpt' );
|
||||
$count++;
|
||||
endwhile;
|
||||
wp_reset_postdata();
|
||||
?>
|
||||
</div><!-- .pique-recent-posts -->
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php // Show sub-pages of grid template page
|
||||
if ( 'page-templates/template-grid.php' === get_page_template_slug() ) :
|
||||
get_template_part( 'components/content', 'grid' );
|
||||
endif;
|
||||
|
||||
// Show testimonials
|
||||
if ( 'page-templates/template-testimonials.php' === get_page_template_slug() ) :
|
||||
// Show two random testimonials
|
||||
$testimonials = pique_get_random_posts( 2, 'jetpack-testimonial' );
|
||||
?>
|
||||
|
||||
<?php if ( ! empty( $testimonials ) ) : ?>
|
||||
<div class="pique-testimonials pique-grid-two">
|
||||
<?php
|
||||
foreach ( $testimonials as $testimonial ) :
|
||||
|
||||
$GLOBALS['post'] =& $testimonial;
|
||||
|
||||
setup_postdata( $testimonial );
|
||||
|
||||
get_template_part( 'components/content', 'testimonial' );
|
||||
|
||||
endforeach;
|
||||
wp_reset_postdata();
|
||||
?>
|
||||
</div><!-- .pique-testimonials -->
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
<?php
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pique' ),
|
||||
'after' => '</div>',
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
</div><!-- .pique-panel-content -->
|
||||
|
||||
</article><!-- #post-## -->
|
46
pique/components/content-grid.php
Normal file
46
pique/components/content-grid.php
Normal file
|
@ -0,0 +1,46 @@
|
|||
<?php
|
||||
/**
|
||||
* Template part for displaying content of grid page templates.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
?>
|
||||
|
||||
<?php
|
||||
$pique_child_pages = new WP_Query( array(
|
||||
'post_type' => 'page',
|
||||
'orderby' => 'menu_order',
|
||||
'order' => 'ASC',
|
||||
'post_parent' => $post->ID,
|
||||
'posts_per_page' => 12,
|
||||
'no_found_rows' => true,
|
||||
) );
|
||||
?>
|
||||
|
||||
<?php if ( $pique_child_pages->have_posts() ) : ?>
|
||||
|
||||
<div class="pique-grid-three">
|
||||
|
||||
<?php while ( $pique_child_pages->have_posts() ) : $pique_child_pages->the_post(); ?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
|
||||
<?php
|
||||
if ( has_post_thumbnail() ) :
|
||||
the_post_thumbnail( 'pique-square' );
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php the_title( '<h3>' , '</h3>' ); ?>
|
||||
|
||||
<?php the_content(); ?>
|
||||
</article>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
</div><!-- .child-pages .grid -->
|
||||
|
||||
<?php
|
||||
endif;
|
||||
wp_reset_postdata();
|
||||
?>
|
34
pique/components/content-hero.php
Normal file
34
pique/components/content-hero.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/**
|
||||
* The template used for displaying hero content in page.php and page-templates.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="pique-hero" <?php post_class( 'pique-panel' ); ?>>
|
||||
<?php if ( has_post_thumbnail() ) :
|
||||
$thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'pique-hero' ); ?>
|
||||
<div class="pique-panel-background" style="background-image:url(<?php echo esc_url( $thumbnail[0] ); ?>)"></div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="pique-panel-content">
|
||||
|
||||
<div class="entry-content">
|
||||
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'pique' ), array( 'span' => array( 'class' => array() ) ) ),
|
||||
the_title( '<span class="screen-reader-text">"', '"</span>', false )
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
</div><!-- .pique-panel-content -->
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php pique_edit_link( get_the_ID() ); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
|
||||
</article><!-- #post-## -->
|
34
pique/components/content-none.php
Normal file
34
pique/components/content-none.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/**
|
||||
* The template part for displaying a message that posts cannot be found.
|
||||
*
|
||||
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<section class="no-results not-found">
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'pique' ); ?></h1>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<div class="page-content">
|
||||
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
|
||||
|
||||
<p class="pique-get-started"><?php printf( wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'pique' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
|
||||
|
||||
<?php elseif ( is_search() ) : ?>
|
||||
|
||||
<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'pique' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'pique' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
</div><!-- .page-content -->
|
||||
</section><!-- .no-results -->
|
27
pique/components/content-page.php
Normal file
27
pique/components/content-page.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* The template used for displaying page content in page.php
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<div class="entry-meta">
|
||||
<?php edit_post_link( esc_html__( 'Edit', 'pique' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
</div>
|
||||
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
<?php
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pique' ),
|
||||
'after' => '</div>',
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-## -->
|
30
pique/components/content-search.php
Normal file
30
pique/components/content-search.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* The template part for displaying results in search pages.
|
||||
*
|
||||
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
|
||||
|
||||
<?php if ( 'post' === get_post_type() ) : ?>
|
||||
<div class="entry-meta">
|
||||
<?php pique_posted_on(); ?>
|
||||
</div><!-- .entry-meta -->
|
||||
<?php endif; ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-summary">
|
||||
<?php the_excerpt(); ?>
|
||||
</div><!-- .entry-summary -->
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php pique_entry_footer(); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
</article><!-- #post-## -->
|
31
pique/components/content-single.php
Normal file
31
pique/components/content-single.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
* Template part for displaying single posts.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<div class="entry-meta">
|
||||
<?php pique_posted_on(); ?>
|
||||
</div><!-- .entry-meta -->
|
||||
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
<?php
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pique' ),
|
||||
'after' => '</div>',
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php pique_entry_footer(); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
</article><!-- #post-## -->
|
23
pique/components/content-testimonial.php
Normal file
23
pique/components/content-testimonial.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
/**
|
||||
* The template used for displaying testimonials.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
?>
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php if ( has_post_thumbnail() ) : ?>
|
||||
<?php the_post_thumbnail( 'pique-thumbnail-avatar' ); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
|
||||
</footer>
|
||||
|
||||
<?php edit_post_link( __( 'Edit', 'pique' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
|
||||
</article><!-- #post-## -->
|
56
pique/components/content.php
Normal file
56
pique/components/content.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
/**
|
||||
* Template part for displaying posts.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<?php
|
||||
// Set the post thumbnail as the background of the panel
|
||||
if ( pique_has_post_thumbnail() ) :
|
||||
$thumbnail = pique_get_attachment_image_src( $post->ID, get_post_thumbnail_id( $post->ID ), 'pique-hero' ); ?>
|
||||
<div class="pique-panel-background" style="background-image:url(<?php echo esc_url( $thumbnail ); ?>)"></div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php //echo get_post_format(); ?>
|
||||
<div class="pique-panel-content">
|
||||
<?php
|
||||
|
||||
$show_title = array( 'image', 'gallery', 'audio', 'video', 'aside', 'status', 'link', 'quote' );
|
||||
if ( in_array( get_post_format(), $show_title ) ) :
|
||||
endif;
|
||||
?>
|
||||
<header class="entry-header">
|
||||
<?php the_title( '<h2 class="entry-title"><a href="'. esc_url( get_the_permalink() ) .'">', '</a></h2>' ); ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php
|
||||
// For certain post types, we're going to display the excerpt
|
||||
if ( ! get_post_format() || 'chat' === get_post_format() ) :
|
||||
the_excerpt();
|
||||
else : // Otherwise, it makes more sense to show the full content
|
||||
the_content();
|
||||
endif;
|
||||
?>
|
||||
|
||||
<div class="entry-meta">
|
||||
<?php pique_posted_on(); ?>
|
||||
</div><!-- .entry-meta -->
|
||||
|
||||
<?php
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pique' ),
|
||||
'after' => '</div>',
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php pique_edit_link( get_the_ID() ); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
</div><!-- .pique-panel-content -->
|
||||
</article><!-- #post-## -->
|
BIN
pique/fonts/FontAwesome.otf
Normal file
BIN
pique/fonts/FontAwesome.otf
Normal file
Binary file not shown.
BIN
pique/fonts/Genericons.eot
Normal file
BIN
pique/fonts/Genericons.eot
Normal file
Binary file not shown.
543
pique/fonts/Genericons.svg
Normal file
543
pique/fonts/Genericons.svg
Normal file
|
@ -0,0 +1,543 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<!--
|
||||
2014-10-3: Created.
|
||||
-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
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)
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="Genericons" horiz-adv-x="2048" >
|
||||
<font-face
|
||||
font-family="Genericons"
|
||||
font-weight="500"
|
||||
font-stretch="normal"
|
||||
units-per-em="2048"
|
||||
panose-1="2 0 6 9 0 0 0 0 0 0"
|
||||
ascent="2048"
|
||||
descent="0"
|
||||
bbox="-0.0140489 0 2048.01 2048"
|
||||
underline-thickness="102.4"
|
||||
underline-position="-204.8"
|
||||
unicode-range="U+F100-F517"
|
||||
/>
|
||||
<missing-glyph />
|
||||
<glyph glyph-name="uniF413" unicode=""
|
||||
d="M256 1280c565.504 0 1024 -458.496 1024 -1024h-256c0 423.552 -344.448 768 -768 768v256zM256 1792c848.256 0 1536 -687.744 1536 -1536h-256c0 705.792 -574.208 1280 -1280 1280v256zM448 640c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192
|
||||
s-192 86.0156 -192 192s85.8877 192 192 192z" />
|
||||
<glyph glyph-name="uniF462" unicode=""
|
||||
d="M618.502 1337l-213.004 142.004l-303.335 -455.002l303.335 -455.002l213.004 142.004l-208.665 312.998zM1642.5 1479l-213.004 -142.004l208.665 -312.998l-208.665 -312.998l213.004 -142.004l303.335 455.002zM771.821 543.045l248.357 -62.0898l256 1024
|
||||
l-248.357 62.0898z" />
|
||||
<glyph glyph-name="uniF457" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.6562 0 128 57.4717 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.4717 -128 -128s57.2158 -128 128 -128z
|
||||
M1342.72 1155.84c24.832 38.9121 37.248 85.1201 37.1201 138.752c0 74.4961 -27.6475 133.504 -83.7119 176.641c-55.9355 43.2637 -133.632 64.7676 -231.936 64.7676c-119.809 0 -234.496 -31.2324 -344.32 -93.9521l91.9043 -180.096
|
||||
c89.2158 47.2314 167.168 70.9121 233.983 70.9121c26.752 0 48.5127 -5.37598 65.2803 -16.2559c17.2803 -10.752 25.4717 -25.4727 25.4717 -44.0322c0 -23.2959 -8.06348 -44.0322 -23.5518 -62.208c-16 -18.0479 -41.4717 -38.4004 -77.1836 -60.9277
|
||||
c-45.1846 -28.1602 -76.416 -57.0889 -94.3359 -87.04c-17.5361 -29.6963 -26.3682 -66.4326 -26.3682 -109.44v-56.96h203.647v34.0479c0 18.6885 5.50391 35.2002 17.2803 48.8965c12.0322 14.0801 40.96 36.0957 86.9121 66.0479
|
||||
c55.04 34.8154 94.5918 71.6797 119.808 110.848z" />
|
||||
<glyph glyph-name="uniF403" unicode=""
|
||||
d="M1541.38 1530.62l506.624 -506.624l-506.624 -506.624c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-202.752 0 -386.048 83.4551 -517.504 217.983l-506.496 506.368v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984
|
||||
c202.752 0 385.92 -83.584 517.376 -217.856zM1404.42 651.776l372.096 372.224l-370.943 370.944c-102.528 104.704 -237.568 161.536 -381.568 161.536c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l370.688 -370.56
|
||||
c102.528 -104.96 237.696 -161.792 381.824 -161.792c144 0 279.168 56.832 380.288 160.128zM1408 1024zM640 1024c0 212.096 172.032 384 384 384s384 -171.904 384 -384c0 -211.968 -172.032 -384 -384 -384s-384 172.032 -384 384zM768 1152
|
||||
c0 -70.6562 57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.3438 -128 -128z" />
|
||||
<glyph glyph-name="uniF505" unicode=""
|
||||
d="M256 1408v256h256v-256h-256zM768 1664h1024v-256h-1024v256zM256 896v256h256v-256h-256zM1408 1152v-256h-640v256h640zM256 384v256h256v-256h-256zM768 384v256h896v-256h-896z" />
|
||||
<glyph glyph-name="uniF50F" unicode=""
|
||||
d="M1920 1024l-384 -384v256h-384v-384h256l-384 -384l-384 384h256v384h-384v-256l-384 384l384 384v-256h384v384h-256l384 384l384 -384h-256v-384h384v256z" />
|
||||
<glyph glyph-name="uniF307" unicode=""
|
||||
d="M768 640v128h128v-128h-128zM768 896v128h128v-128h-128zM768 1152v128h128v-128h-128zM512 640v128h128v-128h-128zM512 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM1408 1664h256v-1280h-1408
|
||||
v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM1024 896v128h128v-128h-128zM1024 640v128h128v-128h-128z
|
||||
" />
|
||||
<glyph glyph-name="uniF460" unicode=""
|
||||
d="M1664 1280h128l-256 -768h-768l256 768h128l86.2725 256h339.455zM1300.86 1280h214.271l-43.1357 128h-128zM809.728 1536l86.2725 -256l-256 -768h-128l-256 768h128l86.2725 256h339.455zM532.864 1280h214.271l-43.1357 128h-128z" />
|
||||
<glyph glyph-name="uniF430" unicode=""
|
||||
d="M1024 1453.31l86.6562 -86.6553l-342.656 -342.656h896v-128h-896l342.656 -342.656l-86.6562 -86.6553l-493.312 493.312z" />
|
||||
<glyph glyph-name="uniF515" unicode=""
|
||||
d="M1024 1920c494.848 0 896 -401.152 896 -896s-401.152 -896 -896 -896s-896 401.152 -896 896s401.152 896 896 896zM1387.52 601.216c29.4404 0 55.6807 23.6807 55.8086 56.0645c0 33.1514 -13.0557 46.4639 -35.4561 59.5195
|
||||
c-150.4 90.1123 -325.12 135.168 -521.216 135.168c-114.433 0 -224.769 -14.4639 -335.36 -39.6797c-27.1357 -5.12012 -48.7676 -23.8076 -48.7676 -61.4404c0 -29.1836 22.6553 -56.3193 56.7041 -56.3193c11.0078 0 29.4395 5.75977 44.1592 8.83203
|
||||
c90.2402 18.6875 186.752 30.9756 282.624 30.9756c171.776 0 333.696 -41.3438 463.616 -119.808c13.5684 -8.32031 23.4238 -13.3125 37.8877 -13.3125zM1485.18 838.4c38.9121 0 69.7607 31.3594 69.8887 70.0156c0 31.8721 -11.0078 53.6318 -40.832 70.7842
|
||||
c-178.433 106.752 -405.376 165.12 -639.872 165.12c-149.76 0 -252.544 -21.248 -353.28 -48.8965c-37.248 -10.624 -55.6797 -36.7354 -55.6797 -74.8799c0 -38.7842 31.3594 -70.1436 69.8877 -70.1436c16.3838 0 26.1123 5.11914 43.5205 10.1113
|
||||
c81.1514 21.5039 179.071 37.376 292.479 37.376c221.185 0 423.168 -57.4717 568.96 -144c13.3125 -7.55176 25.6006 -15.4873 44.9277 -15.4873zM1596.29 1114.24c45.3115 0 84.6084 35.0713 84.3516 83.8398c0 42.752 -18.9434 66.0479 -46.208 81.4082
|
||||
c-202.111 118.912 -478.976 172.928 -742.016 172.928c-155.008 0 -297.472 -17.5361 -425.216 -55.168c-32.5117 -9.59961 -62.7197 -36.9922 -62.7197 -85.6318c0 -47.8721 36.7354 -85.6318 84.4795 -85.6318c16.5117 0 33.0244 6.39941 46.0801 9.72754
|
||||
c113.024 30.5918 236.416 43.0078 357.888 43.0078c243.328 0 495.104 -53.5039 657.28 -150.784c17.0244 -9.34375 27.7764 -13.6953 46.0801 -13.6953z" />
|
||||
<glyph glyph-name="uniF448" unicode=""
|
||||
d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
|
||||
<glyph glyph-name="uniF453" unicode=""
|
||||
d="M1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v1536c0 141.312 114.688 256 256 256h1024zM1024 128c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
|
||||
c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1536 512v1280h-1024v-1280h1024z" />
|
||||
<glyph glyph-name="uniF419" unicode=""
|
||||
d="M0 256v256h2048v-256h-2048zM0 1792h2048v-256h-2048v256zM0 896v256h2048v-256h-2048z" />
|
||||
<glyph glyph-name="uniF423" unicode=""
|
||||
d="M567.936 1440.9l-267.136 -480.896h403.2v-384h-128v256h-492.8l372.864 671.104zM1644.8 960h403.2v-384h-128v256h-492.8l372.864 671.104l112 -62.207zM1088 1344c176.768 0 320 -143.232 320 -320s-143.232 -320 -320 -320s-320 143.232 -320 320
|
||||
s143.232 320 320 320zM1088 832c105.856 0 192 86.1436 192 192s-86.1436 192 -192 192s-192 -86.1436 -192 -192s86.1436 -192 192 -192z" />
|
||||
<glyph glyph-name="uniF512" unicode=""
|
||||
d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312z" />
|
||||
<glyph glyph-name="uniF417" unicode=""
|
||||
d="M960 1792c318.08 0 576 -257.92 576 -576c0 -159.232 -64.6396 -303.36 -169.088 -407.68l-406.912 -407.04l-406.912 407.04c-104.448 104.319 -169.088 248.447 -169.088 407.68c0 318.08 257.92 576 576 576zM960 896c176.64 0 320 143.36 320 320
|
||||
s-143.36 320 -320 320c-176.768 0 -320 -143.36 -320 -320s143.232 -320 320 -320z" />
|
||||
<glyph glyph-name="uniF410" unicode=""
|
||||
d="M256 1536h1536v-128l-768 -384l-768 384v128zM256 1216l768 -384l768 384v-704h-1536v704z" />
|
||||
<glyph glyph-name="uniF449" unicode=""
|
||||
d="M512 512v1024h1024v-1024h-1024z" />
|
||||
<glyph glyph-name="uniF467" unicode=""
|
||||
d="M1280 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
|
||||
<glyph glyph-name="uniF224" unicode=""
|
||||
d="M1536 1792c141.312 0 256 -114.688 256 -256v-384c0 -424.064 -343.936 -768 -768 -768s-768 343.936 -768 768v384c0 141.312 114.688 256 256 256h1024zM1498.5 1189.5c50.0479 50.0479 50.0479 131.072 0 180.992c-50.0479 50.0479 -130.944 50.0479 -180.992 0
|
||||
l-293.504 -293.504l-293.504 293.504c-50.0479 50.0479 -131.072 50.0479 -180.992 0c-50.0479 -49.9199 -50.0479 -130.944 0 -180.992l361.984 -361.984l4.22363 4.22461c22.4004 -37.376 61.5684 -63.7441 108.288 -63.7441s85.8877 26.3682 108.288 63.7441
|
||||
l4.22363 -4.22461z" />
|
||||
<glyph glyph-name="uniF203" unicode=""
|
||||
d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-281.856v711.168h269.44l12.416 259.456h-281.984v192.384v0.255859v12.0322c0 71.2959 15.2324 114.432 108.544 114.432c86.6562 0 166.017 -0.639648 166.017 -0.639648
|
||||
l5.8877 242.304s-77.6963 9.98438 -182.528 9.98438c-259.584 0 -372.096 -159.872 -372.096 -333.952v-236.8h-254.336v-259.328h254.336v-711.296h-723.84c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280z" />
|
||||
<glyph glyph-name="uniF502" unicode=""
|
||||
d="M128 2048h1920l-960 -960z" />
|
||||
<glyph glyph-name="uniF412" unicode=""
|
||||
d="M1920 832l-640 -640v448h-1024v704l384 384v-704h640v448z" />
|
||||
<glyph glyph-name="uniF440" unicode=""
|
||||
d="M1152 640v-256h256l-384 -384l-384 384h256v256h256zM1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-384v256h-512v-256h-384c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64
|
||||
c0 176.768 143.232 320 320 320c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
|
||||
<glyph glyph-name="uniF305" unicode=""
|
||||
d="M1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM960 1280
|
||||
c35.3281 0 64 -28.6719 64 -64v-512c0 -35.3281 -28.6719 -64 -64 -64s-64 28.6719 -64 64v448h-64c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h128z" />
|
||||
<glyph glyph-name="uniF443" unicode=""
|
||||
d="M1152 1664l384 -384v-121.472v-6.52832v-768h-1024v1280h512h128zM1408 512v640h-256h-128v128v256h-384v-1024h768z" />
|
||||
<glyph glyph-name="uniF411" unicode=""
|
||||
d="M1280 1728l448 -448l-896 -896h-448v448zM1280 1536l-594.688 -594.688l96 -96l594.688 594.688zM768 512l128 128l-96 96v0l-64 64v0l-96 96l-128 -128zM845.312 781.312l96 -96l594.688 594.688l-96 96z" />
|
||||
<glyph glyph-name="uniF402" unicode=""
|
||||
d="M896 1536v-256h256v-128h-256v-256h-128v256h-256v128h256v256h128zM1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576
|
||||
c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448z" />
|
||||
<glyph glyph-name="uniF420" unicode=""
|
||||
d="M483.2 1564.8l-227.2 227.2h640v-640l-232.32 232.32c-93.0557 -92.1602 -151.68 -218.88 -151.68 -360.32c0 -238.208 163.584 -436.736 384 -493.824v-262.656c-363.008 61.0566 -640 376.064 -640 756.48c0 212.096 88.0645 402.048 227.2 540.8zM1792 1024
|
||||
c0 -212.096 -88.0645 -401.92 -227.2 -540.8l227.2 -227.2h-640v640l18.5596 -18.5596l213.761 -213.761c93.0557 92.1602 151.68 218.88 151.68 360.32c0 238.208 -163.584 436.736 -384 493.824v262.656c363.008 -61.0566 640 -376.064 640 -756.48z" />
|
||||
<glyph glyph-name="uniF425" unicode=""
|
||||
d="M704 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 1280c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 768c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64
|
||||
s-64 28.6719 -64 64s28.6719 64 64 64zM896 896v128h384v-128h-384zM896 640v128h384v-128h-384zM1280 1664h256v-1280h-1152v1280h256c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM832 1664c-35.3281 0 -64 -28.6719 -64 -64s28.6719 -64 64 -64
|
||||
h256c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256zM1408 512v1024h-128v-128h-640v128h-128v-1024h896zM896 1152v128h384v-128h-384z" />
|
||||
<glyph glyph-name="uniF508" unicode=""
|
||||
d="M1450.5 1395.2c45.6963 -69.376 124.288 -115.2 213.504 -115.2c5.50391 0 10.4961 1.28027 15.8721 1.66406l-399.872 -799.872l-256 512l-256 -512l-128 256l-256 -512l-299.776 599.424l228.992 114.561l70.7842 -141.568l256 512l128 -256l256 512l256 -512z
|
||||
M1664 1728c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192s-192 86.0156 -192 192s85.8877 192 192 192z" />
|
||||
<glyph glyph-name="uniF507" unicode=""
|
||||
d="M1792 604.544c76.2881 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.5918 51.7119 176.128 128 220.544v163.456c0 70.7842 -57.2158 128 -128 128h-256v-291.456c76.2881 -44.416 128 -126.08 128 -220.544
|
||||
c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.4639 51.8398 176.128 128 220.544v291.456h-256c-70.6562 0 -128 -57.2158 -128 -128v-163.456c76.1602 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256
|
||||
c0 94.4639 51.8398 176.128 128 220.544v163.456c0 212.096 171.904 384 384 384h256v291.456c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-291.456h256
|
||||
c211.968 0 384 -171.904 384 -384v-163.456zM1024 1792c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM384 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128
|
||||
s57.3438 -128 128 -128zM1024 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128s57.3438 -128 128 -128zM1664 256c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF306" unicode=""
|
||||
d="M1151.87 1219.46c0.12793 -0.511719 0.12793 -0.896484 0.12793 -1.4082v-1.79199v-0.255859c0 -5.12012 -0.639648 -10.3682 -1.91992 -15.4883l-128 -512c-8.57617 -34.1758 -43.2637 -55.04 -77.5684 -46.5918c-34.3037 8.57617 -55.168 43.2637 -46.5918 77.5684
|
||||
l108.16 432.512h-174.08c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h256h1.53613h1.28027c1.02344 -0.12793 1.91992 -0.12793 2.81543 -0.255859h0.255859c30.3359 -2.68848 54.5283 -26.624 57.8564 -56.96v0c0 -0.768555 0.12793 -1.4082 0.12793 -2.04785
|
||||
v-1.28027zM1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128z" />
|
||||
<glyph glyph-name="uniF406" unicode=""
|
||||
d="M2048 1920l-832 -832l832 -832l-128 -128l-832 832l-832 -832l-128 128l832 832l-832 832l128 128l832 -832l832 832z" />
|
||||
<glyph glyph-name="uniF215" unicode=""
|
||||
d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM1024 1408c-212.096 0 -384 -171.904 -384 -384c0 -211.968 171.904 -384 384 -384
|
||||
c211.968 0 384 172.032 384 384c0 212.096 -172.032 384 -384 384zM1792 384v768h-274.176c10.624 -41.0879 18.1758 -83.4561 18.1758 -128c0 -282.752 -229.248 -512 -512 -512s-512 229.248 -512 512c0 44.5439 7.42383 86.9121 18.1758 128h-274.176v-768
|
||||
c0 -70.7842 57.3438 -128 128 -128h1280c70.7842 0 128 57.2158 128 128zM1792 1536v128c0 70.6562 -57.2158 128 -128 128h-128c-70.7842 0 -128 -57.3438 -128 -128v-128c0 -70.6562 57.2158 -128 128 -128h128c70.7842 0 128 57.3438 128 128z" />
|
||||
<glyph glyph-name="uniF202" unicode=""
|
||||
d="M1920 1583.74c-49.2803 -73.7285 -111.744 -138.368 -183.552 -190.208c0.767578 -15.7441 1.2793 -31.6162 1.2793 -47.4883c0 -485.76 -369.92 -1046.02 -1046.27 -1046.02c-207.616 0 -400.768 60.7998 -563.456 165.248
|
||||
c28.7998 -3.45605 58.1123 -5.24805 87.8076 -5.24805c172.032 0 330.752 58.752 456.448 157.439c-160.768 2.81641 -296.576 108.929 -343.424 255.104c22.5283 -3.96777 45.4404 -6.52832 69.248 -6.52832c33.5361 0 65.9199 4.48047 96.7676 12.7998
|
||||
c-168.319 33.792 -294.912 182.272 -294.912 360.448v4.73633c49.6641 -27.5205 106.368 -44.0322 166.528 -45.9521c-98.6875 65.9199 -163.456 178.432 -163.456 305.92c0 67.3281 18.1758 130.688 49.792 184.96c181.376 -222.464 452.353 -368.768 757.889 -384.128
|
||||
c-6.27246 26.8799 -9.60059 54.9121 -9.60059 83.7119c0 203.008 164.608 367.616 367.616 367.616c105.855 0 201.472 -44.6719 268.544 -116.096c83.584 16.5117 162.304 47.1035 233.216 89.2158c-27.3916 -85.8887 -85.7598 -157.952 -161.536 -203.393
|
||||
c74.3682 8.83203 145.152 28.5439 211.072 57.8564z" />
|
||||
<glyph glyph-name="uniF222" unicode=""
|
||||
d="M1223.94 775.936c20.0967 20.0967 52.0967 19.9688 72.0645 0c19.9678 -19.9678 19.9678 -52.9912 0 -72.96c-56.96 -56.96 -145.92 -86.0156 -270.976 -86.0156c-126.977 0 -216.064 29.0557 -273.024 86.0156c-19.9678 19.9688 -19.9678 52.9922 0 72.96
|
||||
c19.9678 19.9688 51.9678 19.9688 71.9355 0c38.0166 -38.0156 103.04 -56.0635 199.04 -56.0635c97.9209 0 162.944 18.0479 200.96 56.0635zM894.976 982.016c0 -61.0557 -49.9199 -112 -112 -112c-60.9277 0 -110.976 50.9443 -110.976 112
|
||||
c0 61.9521 49.9199 112 110.976 112c61.9521 0 112 -50.0479 112 -112zM1265.02 1094.02c61.9512 0 112 -50.0479 112 -112c0 -61.0557 -50.0488 -112 -112 -112c-61.9521 0 -112 50.9443 -112 112c0 61.9521 50.0479 112 112 112zM1698.05 1089.02
|
||||
c24.96 17.9199 43.0078 45.9512 43.1357 78.9756c0 54.0156 -44.0312 98.0479 -98.0479 98.0479c-32 0 -57.9834 -16 -76.0322 -39.04c53.8887 -39.9355 98.9443 -87.04 130.944 -137.983zM1021.06 500.992c347.904 0 631.937 177.023 632.064 393.983
|
||||
c0 219.009 -284.032 396.032 -632.064 396.032c-349.056 0 -632.96 -177.023 -632.96 -395.008s283.904 -395.008 632.96 -395.008zM306.944 1168c0 -30.9756 16 -57.9844 39.9355 -74.8799c32 50.9443 76.9277 97.0234 131.968 136.96
|
||||
c-17.9199 22.0156 -43.0078 35.9678 -72.96 35.9678c-54.9121 0 -98.9434 -44.0322 -98.9434 -98.0479zM1600 1805.06c-41.9844 0 -77.0557 -35.0713 -77.0557 -77.0557s35.0713 -77.0557 77.0557 -77.0557s77.0557 34.9434 77.0557 77.0557
|
||||
s-35.0713 77.0557 -77.0557 77.0557zM1842.94 1168c0 -75.0078 -41.9844 -137.984 -101.889 -173.056c8.95996 -32 13.9521 -64.8965 13.9521 -98.9443c0 -274.944 -329.088 -498.048 -734.08 -498.048s-734.976 222.976 -734.976 497.023
|
||||
c0 35.9688 6.01562 70.0166 16.1279 104.064c-57.9844 34.9443 -97.0244 97.0244 -97.0244 168.96c0 110.976 89.9844 200.96 200.96 200.96c66.0488 0 124.032 -32.8955 160 -82.9443c114.944 60.9287 257.024 99.9688 411.904 105.984l92.0322 456.96
|
||||
c3.07227 14.0801 11.0078 25.9844 23.04 33.0244c12.0322 8.06348 25.9834 9.9834 39.04 7.04004l312.96 -72.0645c30.9756 52.9922 88.96 89.9844 155.008 89.9844c98.9443 0 179.072 -80 179.072 -178.944s-80 -178.944 -178.944 -178.944
|
||||
c-95.1035 0 -172.032 73.9844 -178.048 167.937l-262.016 60.0322l-77.0566 -386.049c148.992 -7.93555 285.952 -46.9756 397.057 -108.031c35.9678 51.9678 94.9756 86.0156 162.943 86.0156c109.952 0 199.937 -89.9844 199.937 -200.96z" />
|
||||
<glyph glyph-name="uniF214" unicode=""
|
||||
d="M1091.2 1920v-452.992h425.216v-281.216h-425.216v-459.52c0 -103.937 5.50391 -170.624 16.6396 -200.192c10.8799 -29.3125 31.4883 -52.8643 61.3125 -70.5283c39.6797 -23.8076 84.8633 -35.7119 135.936 -35.7119c90.624 0 180.864 29.4404 270.72 88.4482v-282.624
|
||||
c-76.6719 -35.9678 -146.048 -61.3125 -208 -75.9043c-61.9512 -14.4639 -129.023 -21.7598 -201.216 -21.7598c-81.9199 0 -154.368 10.3682 -217.344 30.9756c-62.9756 20.6084 -116.608 50.3047 -161.024 88.4482c-44.5439 38.2725 -75.2637 78.9766 -92.416 122.112
|
||||
c-17.1514 43.1357 -25.7275 105.6 -25.7275 187.52v628.736h-198.016v253.568c70.3994 22.9121 130.688 55.6797 180.863 98.4316c50.3047 42.624 90.4961 93.8242 120.832 153.856c30.3359 59.7754 51.2002 135.808 62.7207 228.352h254.72z" />
|
||||
<glyph glyph-name="uniF104" unicode=""
|
||||
d="M512 1664l1152 -640l-1152 -640v1280z" />
|
||||
<glyph glyph-name="uniF50B" unicode=""
|
||||
d="M1408 1152l-384 -384l-384 384h256v512h256v-512h256zM384 640h1280v-256h-1280v256z" />
|
||||
<glyph glyph-name="uniF409" unicode=""
|
||||
d="M1024 1664l640 -512l-128 -128v-512h-1024v512l-128 128zM1152 576v448h-256v-448h256z" />
|
||||
<glyph glyph-name="uniF458" unicode=""
|
||||
d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
|
||||
<glyph glyph-name="uniF218" unicode=""
|
||||
d="M1792 1152h256v-128h-256v-256h-128v256h-256v128h256v256h128v-256zM1301.5 1920l-150.528 -84.7363h-145.792c54.0166 -44.6719 167.04 -138.624 167.04 -317.439c0 -173.952 -98.8154 -256.256 -197.504 -333.952
|
||||
c-30.5918 -30.4639 -65.9199 -63.4883 -65.9199 -115.2s35.3281 -79.8721 61.1846 -101.12l84.7354 -65.792c103.424 -86.9121 197.376 -166.912 197.376 -329.216c0 -221.184 -213.888 -444.544 -618.368 -444.544c-341.119 0 -505.728 162.304 -505.728 336.384
|
||||
c0 84.6084 42.3682 204.544 181.12 286.849c145.792 89.4717 343.424 101.119 449.152 108.159c-32.8965 42.3682 -70.5283 87.04 -70.5283 159.744c0 40.1924 11.7754 63.7441 23.5518 91.7764c-25.9844 -2.04785 -51.7119 -4.6084 -75.2637 -4.6084
|
||||
c-249.216 0 -390.4 185.856 -390.4 369.28c0 108.032 49.4082 227.968 150.528 315.008c134.144 110.592 294.016 129.408 420.864 129.408h484.479zM1094.53 480.768c0 119.809 -77.5684 183.425 -256.385 310.528c-18.8154 2.30371 -30.5918 2.30371 -54.0156 2.30371
|
||||
c-21.1201 0 -148.224 -4.60742 -246.912 -37.6318c-51.8398 -18.8154 -202.368 -75.1357 -202.368 -242.304c0 -166.784 162.305 -286.848 413.952 -286.848c225.792 0 345.729 108.159 345.729 253.951zM906.496 1238.02c54.0156 54.1445 58.752 129.408 58.624 171.648
|
||||
c0 169.344 -101.12 432.768 -296.192 432.768c-61.3115 0 -127.104 -30.5918 -164.735 -77.5674c-39.9365 -49.4082 -51.7119 -112.896 -51.7119 -174.08c0 -157.568 91.6475 -418.561 294.016 -418.561c58.752 0 122.368 28.2881 160 65.792z" />
|
||||
<glyph glyph-name="uniF513" unicode=""
|
||||
d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312zM1024 807.68l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456l-118.016 358.528v-702.849z
|
||||
" />
|
||||
<glyph glyph-name="uniF301" unicode=""
|
||||
d="M704 1152h960l-256 -640h-1024v1024h384l64 -128h448v-128h-640l-128 -256h128z" />
|
||||
<glyph glyph-name="uniF474" unicode=""
|
||||
d="M128 1408v384h384zM640 768v512h768v-512h-768zM1536 1792h384v-384zM128 640l384 -384h-384v384zM1536 256l384 384v-384h-384zM1536 1408l256 384l128 -128zM1536 640l384 -256l-128 -128zM128 384l384 256l-256 -384zM128 1664l128 128l256 -384z" />
|
||||
<glyph glyph-name="uniF438" unicode=""
|
||||
d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v384h128v-128h768v768h-768v-128h-128v128c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128
|
||||
s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM768 896v128h-512v256h512v128l384 -256z" />
|
||||
<glyph glyph-name="uniF451" unicode=""
|
||||
d="M256 384v1280l1024 -640zM1408 1664h384v-1280h-384v1280z" />
|
||||
<glyph glyph-name="uniF404" unicode=""
|
||||
d="M1024 640c-19.8398 0 -39.04 2.43164 -57.8564 5.63184l436.225 436.225c3.2002 -18.8164 5.63184 -38.0166 5.63184 -57.8564c0 -211.968 -172.032 -384 -384 -384zM1696.26 1375.74l351.744 -351.744l-506.624 -506.624
|
||||
c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-117.248 0 -226.944 29.3115 -324.864 79.1035l147.072 146.944c56.7041 -20.6084 115.968 -34.0479 177.92 -34.0479c144 0 279.168 56.832 380.288 160.128l372.096 372.224l-216.063 215.936zM1606.02 1722.11
|
||||
l128.641 -129.024l-1279.87 -1279.87l-128.896 128.769l128 128.128l-453.888 453.888v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984c170.368 0 324.48 -61.8242 448 -160.385zM896 1024c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128
|
||||
c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128zM1229.18 1345.28l105.729 105.728c-90.752 66.8164 -197.12 105.473 -310.912 105.473c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l318.208 -318.336l113.023 113.024
|
||||
c-38.6553 59.5195 -62.8477 129.023 -62.8477 205.312c0 212.096 172.032 384 384 384c76.2881 0 145.792 -24.1924 205.184 -62.7197z" />
|
||||
<glyph glyph-name="uniF209" unicode=""
|
||||
d="M1073.15 2048c481.664 0 798.976 -348.672 798.976 -722.944c0 -495.104 -275.328 -865.151 -680.96 -865.151c-136.32 0 -264.448 73.7275 -308.352 157.439c0 0 -73.2168 -290.943 -88.832 -347.136c-26.8809 -97.2803 -79.2324 -194.56 -127.104 -270.208
|
||||
l-148.992 54.0156c-3.58398 88.3203 -0.639648 194.049 22.0166 289.92c24.1914 102.4 162.304 687.744 162.304 687.744s-40.3203 80.6406 -40.3203 199.809c0 187.008 108.544 326.784 243.456 326.784c114.816 0 170.24 -86.1445 170.24 -189.44
|
||||
c0 -115.328 -73.7275 -288 -111.488 -448c-31.6152 -133.632 67.2002 -242.816 199.168 -242.816c239.232 0 400.128 307.072 400.128 670.977c0 276.607 -186.367 483.712 -525.184 483.712c-382.72 0 -621.312 -285.568 -621.312 -604.544
|
||||
c0 -110.08 32.5117 -187.521 83.1992 -247.424c23.5527 -27.7764 26.624 -38.9121 18.3047 -70.6562c-6.0166 -23.04 -19.9688 -78.9766 -25.7285 -101.248c-8.44824 -32 -34.3037 -43.2637 -63.2314 -31.3604c-176.257 71.6807 -258.433 264.96 -258.433 482.048
|
||||
c0 358.656 302.336 788.48 902.145 788.48z" />
|
||||
<glyph glyph-name="uniF217" unicode=""
|
||||
d="M1024 1920c494.08 0 896 -402.048 896 -896c0 -494.08 -401.92 -896 -896 -896c-493.952 0 -896 401.92 -896 896c0 493.952 402.048 896 896 896zM1112.83 1769.47c-211.2 10.4961 -420.864 -73.4717 -564.608 -220.16
|
||||
c-146.432 -144.256 -216.063 -354.176 -189.695 -551.68c23.4238 -197.248 142.592 -378.496 307.584 -476.032c160.768 -96 365.312 -104.191 530.943 -29.0557c-47.1035 -13.0557 -96.6396 -20.3516 -147.712 -20.3516c-303.487 0 -550.399 246.911 -550.399 550.399
|
||||
c0 143.872 55.6797 274.944 146.304 373.12c1.02441 1.02441 1.91992 1.91992 2.81641 2.94434c4.60742 4.73535 9.08789 9.47168 13.6953 14.208c0.512695 0.383789 0.896484 1.02344 1.4082 1.2793c128 148.353 317.056 242.177 528.256 242.177
|
||||
c221.057 0 418.176 -102.912 546.048 -263.424c-20.8633 33.5352 -44.0312 65.6631 -69.376 95.6152c-137.983 168.832 -343.68 273.408 -555.264 280.96zM1415.04 1006.21c4.35156 -90.3682 -25.3438 -182.912 -80.7676 -257.152
|
||||
c-55.5527 -73.8555 -135.169 -129.664 -225.28 -156.928c-74.8799 -22.7842 -156.544 -25.5996 -234.112 -7.04004c54.0166 -21.6318 112.896 -33.6641 174.464 -33.6641c259.968 0 471.296 211.456 471.296 471.296c0 0.768555 -0.12793 1.66406 -0.12793 2.68848
|
||||
c-13.6953 142.336 -88.1914 276.352 -200.319 359.168c-137.345 104.576 -332.288 116.864 -479.232 38.0156c-73.2158 -38.5273 -136.832 -97.1514 -176.896 -166.912c-40.5762 -69.8877 -58.4961 -151.68 -52.2246 -230.912
|
||||
c10.624 -158.976 124.8 -305.023 271.616 -345.216c146.432 -44.0322 313.344 19.584 391.936 142.849c82.5605 120.447 62.7207 293.119 -36.3516 391.68c-94.0801 104.192 -260.992 115.968 -367.872 36.8643c-54.0156 -38.6562 -92.5439 -94.3359 -105.344 -157.057
|
||||
c-13.3125 -62.0801 -1.66406 -128.64 30.4639 -181.76c32.1279 -53.7598 83.7119 -93.5684 141.952 -108.032c58.2402 -15.1035 121.6 -4.86328 171.52 25.6006c50.5605 30.4639 87.5518 80.1279 97.9199 135.68c11.3926 55.2959 -1.66406 114.432 -34.3037 158.848
|
||||
c-32.1279 45.5684 -82.8164 73.3447 -135.936 76.9287c-52.9922 4.0957 -105.856 -17.2803 -141.568 -54.2725c-36.6084 -35.9678 -52.0957 -89.0879 -44.6719 -137.855c7.55176 -48.6406 38.2715 -93.6963 80 -115.584c26.4961 -14.7207 57.4717 -19.8408 86.9121 -16.3848
|
||||
c-62.0801 1.53613 -114.177 43.2646 -131.456 100.097c-0.512695 0.767578 -1.02441 1.66406 -1.4082 2.6875c-17.9199 41.4717 -13.0557 94.3359 16.1279 133.376c28.416 38.7842 77.5684 63.3604 128.768 60.7998c51.0723 -1.66406 101.376 -33.0234 128 -78.9756
|
||||
c27.3926 -45.8242 32 -106.752 7.80859 -158.336c-24.0645 -51.7119 -73.7285 -90.2402 -131.584 -101.632c-57.4717 -12.416 -122.752 4.73535 -167.68 47.3594c-44.8008 40.96 -72.0645 104.192 -67.4561 168.32c3.83984 133.12 150.911 237.44 287.104 200.96
|
||||
c138.368 -31.6162 226.944 -196.736 173.824 -338.304c-48.6406 -142.72 -224.769 -225.536 -373.888 -166.912c-74.1123 27.5195 -134.784 85.8877 -169.729 157.568c-34.9443 72.1914 -42.2402 158.592 -17.9199 237.695c47.8721 161.664 226.176 269.185 398.848 238.464
|
||||
c175.36 -25.5996 313.217 -192.64 317.568 -374.016zM1024 207.488c319.232 0 595.968 184.319 730.112 451.712c37.248 84.7354 58.8799 175.744 58.8799 265.728c0 318.977 -247.04 554.368 -553.216 607.616c154.496 -64 279.296 -200.32 331.52 -362.496
|
||||
c70.1445 -203.136 20.8643 -447.872 -133.12 -608.896c-148.224 -162.944 -384.384 -245.633 -608.128 -206.208c-226.048 35.584 -422.912 198.271 -517.504 407.936c-97.792 209.408 -90.3682 468.224 26.8799 674.432c116.736 206.337 329.344 354.433 566.272 395.009
|
||||
c11.7754 2.17578 23.6797 3.96777 35.584 5.37598c-420.992 -32.1279 -753.664 -384.641 -753.664 -813.696c0 -450.304 366.208 -816.512 816.384 -816.512z" />
|
||||
<glyph glyph-name="uniF469" unicode=""
|
||||
d="M256 1280h1536v-768h-256v384h-1024v-384h-256v768zM1408 1664v-256h-768v256h768zM1408 640c0 -98.3037 37.5039 -196.48 112.512 -271.488l112.513 -112.512h-768l-112.513 112.512c-75.0078 75.0078 -112.512 173.185 -112.512 271.488v128h768v-128z" />
|
||||
<glyph glyph-name="uniF476" unicode=""
|
||||
d="M384 1248c123.776 0 224 -100.224 224 -224c0 -123.648 -100.224 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.224 224 224 224zM1024 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224c-123.776 0 -224 100.352 -224 224
|
||||
c0 123.776 100.224 224 224 224zM1664 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.352 224 224 224z" />
|
||||
<glyph glyph-name="uniF211" unicode=""
|
||||
d="M1472 1440c229.888 0 416 -186.24 416 -416s-186.112 -416 -416 -416s-416 186.24 -416 416s186.112 416 416 416zM576 1440c229.76 0 416 -186.24 416 -416s-186.24 -416 -416 -416s-416 186.24 -416 416s186.24 416 416 416z" />
|
||||
<glyph glyph-name="uniF456" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896
|
||||
l51.584 640h-281.6l51.2002 -640h178.815z" />
|
||||
<glyph glyph-name="uniF471" unicode=""
|
||||
d="M512 1664h358.656c163.328 0 281.855 -23.2959 355.712 -69.7598c73.7275 -46.4639 110.592 -120.448 110.592 -221.824c0 -68.8643 -16.1279 -125.312 -48.3838 -169.344c-32.3838 -44.1602 -75.2646 -70.6562 -128.769 -79.6162v-7.93652
|
||||
c72.96 -16.2559 125.568 -46.7197 157.952 -91.3916c32.2559 -44.6719 48.5127 -104.063 48.5127 -178.048c0 -105.088 -38.0166 -187.008 -113.921 -245.888c-76.0312 -58.8809 -178.943 -88.1924 -309.248 -88.1924h-431.104v1152zM768 1207.81h130.176
|
||||
c66.3047 0 114.176 10.2402 143.872 30.7207c29.5684 20.4795 44.5439 54.3994 44.5439 101.632c0 44.1602 -16.1279 75.7754 -48.5117 94.9756c-32.3838 19.0723 -83.4561 28.7998 -153.344 28.7998h-116.736v-256.128zM768 1013.89v-300.16h147.456
|
||||
c67.2002 0 116.864 12.9287 148.864 38.6562c32.1279 25.7285 48.1279 65.1523 48.1279 118.145c0 95.6152 -68.3525 143.487 -204.929 143.487h-139.52v-0.12793z" />
|
||||
<glyph glyph-name="uniF433" unicode=""
|
||||
d="M0 896l896 -896h-896v896z" />
|
||||
<glyph glyph-name="uniF447" unicode=""
|
||||
d="M1408 512c70.7842 0 128 -57.2158 128 -128s-57.2158 -128 -128 -128s-128 57.2158 -128 128s57.2158 128 128 128zM640 512c70.6562 0 128 -57.2158 128 -128s-57.3438 -128 -128 -128s-128 57.2158 -128 128s57.3438 128 128 128zM1536 896h-896v-128h896v-128h-1024
|
||||
v1024h-256v128h384v-256h1152z" />
|
||||
<glyph glyph-name="uniF511" unicode=""
|
||||
d="M1024 1510.53l-118.016 -358.528h-371.328l300.288 -209.92l-118.272 -353.28l307.328 218.88l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456zM1024 1920v0l210.688 -640h685.312l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496
|
||||
l212.991 636.032l-555.264 387.968h685.312z" />
|
||||
<glyph glyph-name="uniF427" unicode=""
|
||||
d="M1717.72 1436.21c99.7246 -99.7246 99.7246 -261.281 0 -361.006l-232.861 -232.989c-98.5723 -98.5723 -257.44 -99.3398 -357.421 -2.81543l-455.353 -455.354h-288.036v287.908l455.097 454.969l-0.767578 0.768555c-99.5967 99.5957 -99.5967 261.408 0 361.005
|
||||
l232.989 232.989c99.5957 99.7246 261.408 99.7246 361.005 0zM1344.04 1104.01l160.02 160.021l-256.031 256.031l-160.021 -160.02z" />
|
||||
<glyph glyph-name="uniF219" unicode=""
|
||||
d="M1438.08 1832.7c0 0 563.456 -229.376 370.176 -838.4c-267.264 -554.496 -784.64 -349.056 -784.64 -349.056v-277.504s-19.7119 -153.344 -202.88 -220.288c-183.296 -66.6885 -351.616 59.5195 -351.616 59.5195v279.809
|
||||
c83.584 -85.5039 195.712 -134.272 240.128 -9.98438v945.92h311.68v-537.472s460.416 -138.496 522.368 289.792c9.85645 475.392 -546.944 472.832 -546.944 472.832s-349.184 22.2715 -522.495 -257.536c-131.2 -222.848 37.1191 -423.424 37.1191 -423.424
|
||||
l-225.279 -200.448s-339.2 418.433 -7.42383 871.552c430.848 487.681 1159.81 194.688 1159.81 194.688z" />
|
||||
<glyph glyph-name="uniF100" unicode=""
|
||||
d="M512 1408h1024v-128h-1024v128zM1152 1152v-128h-640v128h640zM1280 1024v128h256v-128h-256zM896 768v128h640v-128h-640zM768 896v-128h-256v128h256zM512 512v128h768v-128h-768z" />
|
||||
<glyph glyph-name="uniF400" unicode=""
|
||||
d="M1792 384l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM384 1216c0 -247.424 200.576 -448 448 -448
|
||||
c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448z" />
|
||||
<glyph glyph-name="uniF439" unicode=""
|
||||
d="M896 1664v-384h-256v384c0 70.7842 57.3438 128 128 128s128 -57.2158 128 -128zM1408 1664v-384h-256v384c0 70.7842 57.2158 128 128 128s128 -57.2158 128 -128zM384 1152h1280c0 -309.632 -219.904 -567.68 -512 -627.072v-268.928h-256v268.928
|
||||
c-292.096 59.2646 -512 317.44 -512 627.072z" />
|
||||
<glyph glyph-name="uniF509" unicode=""
|
||||
d="M1534.21 717.824l147.712 -88.5762c-134.4 -223.36 -378.24 -373.248 -657.92 -373.248c-279.552 0 -523.52 149.888 -657.92 373.248l147.712 88.7041c92.1602 -98.1758 226.816 -168.96 382.208 -194.688v500.736h-128v128h128v163.456
|
||||
c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456h128v-128h-128v-500.864c155.52 25.7285 289.92 96.3838 382.208 194.688zM1024 1664
|
||||
c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128z" />
|
||||
<glyph glyph-name="uniF510" unicode=""
|
||||
d="M1664 1152v-256h-512v-512h-256v512h-512v256h512v512h256v-512h512z" />
|
||||
<glyph glyph-name="uniF445" unicode=""
|
||||
d="M1888 748.032l-57.5996 -139.648l-305.408 21.8887c-31.3604 -39.9365 -66.9443 -75.6484 -106.88 -107.009l21.7598 -305.536l-139.264 -57.5996l-200.704 231.552c-25.2158 -3.07129 -49.9199 -7.67969 -75.9043 -7.67969c-25.7275 0 -50.1758 4.6084 -75.1357 7.67969
|
||||
l-200.96 -231.808l-139.393 57.7275l21.7607 305.408c-39.9365 31.3604 -75.5205 66.9443 -107.009 106.88l-305.536 -21.7598l-57.7275 139.264l231.68 200.832c-3.07129 25.0879 -7.67969 49.792 -7.67969 75.7764c0 25.7275 4.6084 50.1758 7.55176 75.1357
|
||||
l-231.552 200.96l57.7275 139.393l305.28 -21.7607c31.4883 39.9365 67.2002 75.7764 107.265 107.265l-21.7607 305.408l139.137 57.5996l200.96 -231.68c24.96 2.94336 49.5352 7.67969 75.3916 7.67969s50.4316 -4.73633 75.3916 -7.67969l200.96 231.68
|
||||
l139.265 -57.5996l-21.8887 -305.408c39.9365 -31.3604 75.6484 -67.0723 107.137 -107.008l305.408 21.6318l57.5996 -139.136l-231.552 -200.832c3.07129 -25.0889 7.67969 -49.6641 7.67969 -75.6484c0 -25.7275 -4.6084 -50.3037 -7.67969 -75.2637zM1280 1024
|
||||
c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256s256 114.688 256 256z" />
|
||||
<glyph glyph-name="uniF516" unicode=""
|
||||
d="M1024 1452.42v-467.328h-155.776v467.328h155.776zM1408 1452.42v-467.328h-155.776v467.328h155.776zM323.2 1920h1596.8v-1090.82l-467.456 -445.184h-350.464l-233.6 -256h-228.48v256h-512v1224.32zM1764.22 907.136v857.088h-1285.5v-1129.73h350.977v-211.328
|
||||
l233.472 211.328h428.16z" />
|
||||
<glyph glyph-name="uniF435" unicode=""
|
||||
d="M384 512l640 640l640 -640h-1280zM384 1408h1280v-128h-1280v128z" />
|
||||
<glyph glyph-name="uniF300" unicode=""
|
||||
d="M1536 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
|
||||
<glyph glyph-name="uniF514" unicode=""
|
||||
d="M1664 768v128l256 -256l-256 -256v128h-256c-282.752 0 -512 229.248 -512 512c0 141.312 -114.688 256 -256 256h-384v256h384c282.752 0 512 -229.248 512 -512c0 -141.312 114.688 -256 256 -256h256zM1408 1280c-61.8242 0 -117.888 -22.9121 -162.176 -59.3916
|
||||
c-27.3926 83.9678 -70.7842 160 -128 224.768c82.5596 56.96 182.271 90.624 290.176 90.624h256v128l256 -256l-256 -256v128h-256zM640 768c61.8242 0 117.888 22.9121 162.176 59.3916c27.3926 -83.9678 70.7842 -160 128 -224.768
|
||||
c-82.5596 -56.832 -182.271 -90.624 -290.176 -90.624h-384v256h384z" />
|
||||
<glyph glyph-name="uniF102" unicode=""
|
||||
d="M1408 1408l512 -128v-896h-1792v896l512 128l128 256h512zM1024 512.256c247.552 0 448 200.448 448 448c0 247.424 -200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448c0 -247.552 200.576 -448 448 -448zM512 1600v-96.1279l-256 -64v160.128h256z
|
||||
M1024 1280.13c176.768 0 320 -143.231 320 -320c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320c0 176.769 143.232 320 320 320z" />
|
||||
<glyph glyph-name="uniF466" unicode=""
|
||||
d="M640 1344l-320 -320l320 -320v-320l-640 640l640 640v-320zM1408 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
|
||||
<glyph glyph-name="uniF463" unicode=""
|
||||
d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
|
||||
M1920 640v128h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
|
||||
<glyph glyph-name="uniF422" unicode=""
|
||||
d="M384 1536h1152v-1024h-1152v1024zM1408 640v640h-896v-640h896z" />
|
||||
<glyph glyph-name="uniF201" unicode=""
|
||||
d="M1024 128c128 0 256 32 368 80c-16 144 -64 368 -208 688c-288 -96 -560 -304 -704 -576c144 -128 336 -192 544 -192zM1536 288c208 144 352 384 384 640c-192 32 -368 32 -576 0c16 -32 128 -304 192 -640zM128 1088v-64c0 -224 80 -432 224 -592
|
||||
c176 288 496 496 784 592c-16 48 -48 112 -80 176c-368 -112 -592 -144 -928 -112zM1760 1536c-160 -128 -368 -192 -560 -288c48 -64 64 -112 96 -176c208 48 480 32 624 0c-16 176 -64 336 -160 464zM672 1856c-256 -112 -448 -336 -512 -624c288 -32 688 48 832 96
|
||||
c-96 192 -192 352 -320 528zM1024 1920c-64 0 -128 -16 -192 -16c128 -208 192 -320 304 -512c128 48 384 128 528 256c-160 160 -384 272 -640 272zM1024 2048c560 0 1024 -464 1024 -1024s-464 -1024 -1024 -1024s-1024 464 -1024 1024s464 1024 1024 1024z" />
|
||||
<glyph glyph-name="uniF426" unicode=""
|
||||
d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.52832c-4.35254 20.8643 -6.52832 41.9844 -6.52832 64c0 176.768 143.232 320 320 320
|
||||
c89.3438 0 169.984 -36.8643 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
|
||||
<glyph glyph-name="uniF446" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1536 1024c0 282.752 -229.248 512 -512 512c-94.8477 0 -182.528 -27.5195 -258.688 -72.4482l698.368 -698.24
|
||||
c44.8008 76.1602 72.3203 163.969 72.3203 258.688zM512 1024c0 -282.752 229.248 -512 512 -512c94.7197 0 182.4 27.5195 258.56 72.3203l-698.239 698.239c-44.8008 -76.1592 -72.3203 -163.84 -72.3203 -258.56z" />
|
||||
<glyph glyph-name="uniF504" unicode=""
|
||||
d="M1664 1536c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456c0 -282.752 -229.248 -512 -512 -512c-141.312 0 -256 -114.688 -256 -256v-128h-256v1059.46c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256
|
||||
c0 -94.4639 -51.8398 -176.128 -128 -220.544v-490.496c75.5195 44.0322 162.304 71.04 256 71.04c141.312 0 256 114.688 256 256v163.456c-76.2881 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256zM640 1664
|
||||
c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1408 1408c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128s-128 -57.3438 -128 -128s57.2158 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF465" unicode=""
|
||||
d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
|
||||
M1531.52 384l452.48 452.48l-90.4961 90.4951l-361.984 -361.983l-180.991 180.992l-90.4961 -90.4961z" />
|
||||
<glyph glyph-name="uniF424" unicode=""
|
||||
d="M1408 1792l384 -384v-768l-384 -384h-768l-384 384v768l384 384h768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
|
||||
<glyph glyph-name="uniF418" unicode=""
|
||||
d="M1408 1504l128 -96l-512 -768h-128l-288 416l128 128l224 -192z" />
|
||||
<glyph glyph-name="uniF429" unicode=""
|
||||
d="M1024 1453.31l493.312 -493.312l-493.312 -493.312l-86.6562 86.6553l342.656 342.656h-896v128h896l-342.656 342.656z" />
|
||||
<glyph glyph-name="uniF308" unicode=""
|
||||
d="M477.696 568.192l543.104 543.104l90.3682 -90.624l-542.976 -542.976c-100.225 -100.353 -152.32 -115.84 -226.305 -135.809c20.0967 74.1123 35.584 126.08 135.809 226.305zM1189.5 1732.61l180.992 180.991l542.976 -543.104l-180.991 -180.992
|
||||
c-50.0488 50.0479 -130.944 50.0479 -180.992 0l-180.992 -180.992c-50.0479 -50.0479 -50.0479 -130.943 0 -180.992l-180.992 -180.991l-543.104 542.976l180.991 180.992c50.0488 -50.0479 131.072 -50.0479 181.12 0l180.992 181.12
|
||||
c50.0479 50.0479 50.0479 130.943 0 180.992z" />
|
||||
<glyph glyph-name="uniF226" unicode=""
|
||||
d="M1477.76 1792c120.32 0 152.576 -68.6084 126.464 -195.584l-51.8398 -258.688c-40.96 -206.848 -88.0635 -445.695 -94.0801 -470.144c-11.0078 -44.1602 -27.9033 -119.168 -132.992 -119.168h-250.367c-9.98438 0 -9.98438 0 -20.0967 -10.1123
|
||||
c-6.65527 -6.65527 -393.344 -455.424 -393.344 -455.424c-30.208 -34.6875 -80.3838 -28.5439 -98.6875 -21.1201c-18.3047 7.2959 -50.6885 29.6963 -50.6885 89.9844v1301.63s33.2803 138.624 146.304 138.624h819.328zM1394.94 1391.1l34.3037 179.2
|
||||
c6.27148 29.6963 -16.3838 52.4805 -40.5762 52.4805h-657.536c-29.8242 0 -49.792 -26.8799 -49.792 -49.792v-1015.68c0 -3.19922 2.43262 -3.83984 4.86426 -1.15137c0 0 242.304 290.815 269.184 324.352c26.8809 33.4082 39.168 38.6562 79.3604 38.6562h221.184
|
||||
c30.208 0 47.2324 25.3438 50.3047 40.1924c3.2002 14.8477 28.9277 149.12 34.4316 176.256s-19.3281 54.9121 -44.7998 54.9121h-270.976c-35.9688 0 -61.8242 25.4717 -61.8242 61.3115v39.04c0 35.9678 25.7275 60.416 61.5674 60.416h319.232
|
||||
s46.9756 20.4805 51.0723 39.8076z" />
|
||||
<glyph glyph-name="uniF205" unicode=""
|
||||
d="M1024 1920c493.952 0 896 -401.92 896 -896c0 -493.952 -402.048 -896 -896 -896c-494.08 0 -896 402.048 -896 896c0 494.08 401.92 896 896 896zM218.496 1024c0 -318.848 185.216 -594.432 454.016 -724.992l-384.256 1052.93
|
||||
c-44.6719 -100.224 -69.7598 -211.071 -69.7598 -327.936zM1024 218.496c93.8242 0 183.808 16.1279 267.648 45.5684c-2.17676 3.45508 -4.09668 7.16797 -5.76074 11.2637l-247.552 678.271l-241.92 -702.336c72.1924 -21.248 148.48 -32.7676 227.584 -32.7676z
|
||||
M1134.98 1401.73l291.072 -866.176l80.3838 268.544c34.9443 111.488 61.3125 191.488 61.3125 260.48c0 99.584 -35.8398 168.576 -66.4326 222.08c-40.7031 66.4316 -78.9756 122.624 -78.9756 189.056c0 74.1123 56.1924 142.977 135.168 142.977
|
||||
c3.58398 0 7.04004 -0.384766 10.4961 -0.640625c-143.36 131.328 -334.208 211.456 -544 211.456c-281.472 0 -529.024 -144.256 -673.024 -363.008c18.9443 -0.639648 36.7363 -0.896484 51.8408 -0.896484c84.2236 0 214.655 10.2402 214.655 10.2402
|
||||
c43.3926 2.56055 48.5127 -61.3115 5.24805 -66.4316c0 0 -43.7754 -5.12012 -92.1602 -7.68066l293.12 -872.575l176.256 528.64l-125.439 343.936c-43.3926 2.56055 -84.4805 7.68066 -84.4805 7.68066c-43.2637 2.55957 -38.2715 68.9922 5.12012 66.4316
|
||||
c0 0 132.992 -10.2402 212.225 -10.2402c84.2236 0 214.783 10.2402 214.783 10.2402c43.3926 2.56055 48.5127 -61.3115 5.12012 -66.4316c0 0 -43.6475 -5.12012 -92.2881 -7.68066zM1730.82 1410.56c3.58398 -25.7275 5.50391 -53.248 5.63184 -82.8154
|
||||
c0 -81.792 -15.4883 -173.696 -61.3125 -288.512l-246.144 -711.425c239.488 139.521 400.512 399.104 400.512 696.192c0 140.16 -35.8398 271.872 -98.6875 386.56z" />
|
||||
<glyph glyph-name="uniF472" unicode=""
|
||||
d="M1368.06 1408h-128l-240.129 -768h128l-39.9355 -128h-448l39.9355 128h128l240.129 768h-128l39.9355 128h448z" />
|
||||
<glyph glyph-name="uniF216" unicode=""
|
||||
d="M1791.62 1265.92c0.383789 -2.94434 0.639648 -5.75977 0.639648 -8.7041v-466.943c0 -2.94434 -0.255859 -5.76074 -0.511719 -8.96094c-0.12793 -0.767578 -0.383789 -1.79199 -0.511719 -2.81543c-0.384766 -1.79199 -0.640625 -3.58398 -1.15234 -5.50391
|
||||
c-0.255859 -1.02441 -0.768555 -2.04785 -1.02441 -3.07227c-0.639648 -1.66406 -1.15137 -3.2002 -1.79199 -4.86426c-0.511719 -1.02344 -1.02344 -2.04785 -1.53613 -3.07129c-0.639648 -1.53613 -1.40723 -2.94434 -2.30371 -4.48047
|
||||
c-0.511719 -0.895508 -1.28027 -1.91992 -1.91992 -2.94434c-0.767578 -1.2793 -1.66406 -2.55957 -2.6875 -3.96777c-0.768555 -0.895508 -1.53613 -1.79199 -2.30469 -2.81543c-1.02344 -1.02441 -2.04785 -2.30469 -3.32812 -3.45605
|
||||
c-0.767578 -0.896484 -1.66406 -1.79199 -2.6875 -2.68848c-1.02441 -0.895508 -2.30371 -2.04785 -3.71191 -3.07227c-0.768555 -0.767578 -1.79199 -1.53516 -2.81641 -2.30371l-1.15137 -0.767578l-702.208 -467.072
|
||||
c-11.1367 -7.42383 -23.8086 -11.0078 -36.6084 -11.0078s-25.4717 3.58398 -36.7363 11.2637l-702.208 467.072c-0.255859 0.255859 -0.639648 0.511719 -1.02344 0.767578l-2.94434 2.30469c-1.28027 0.895508 -2.55957 2.04785 -3.71191 3.07129
|
||||
c-0.895508 0.896484 -1.79199 1.79199 -2.6875 2.68848c-1.02441 1.02344 -2.17676 2.30371 -3.2002 3.45605c-0.768555 0.895508 -1.53613 1.79199 -2.30469 2.81543c-0.895508 1.28027 -1.79199 2.56055 -2.6875 3.96875
|
||||
c-0.768555 0.895508 -1.4082 1.91992 -1.91992 2.94336c-0.896484 1.53613 -1.66406 2.94434 -2.30371 4.48047c-0.512695 0.895508 -1.02441 1.91992 -1.53613 3.07129c-0.640625 1.66406 -1.15234 3.2002 -1.66406 4.86426
|
||||
c-0.383789 0.896484 -0.768555 1.91992 -1.02441 3.07227c-0.511719 1.91992 -0.767578 3.71191 -1.15137 5.50391c-0.128906 1.02441 -0.384766 2.04785 -0.512695 2.94434c-0.383789 2.81543 -0.639648 5.75977 -0.639648 8.57617v466.943
|
||||
c0 2.94434 0.255859 5.75977 0.639648 8.7041c0.12793 0.896484 0.383789 1.79199 0.512695 2.81641c0.383789 1.91992 0.639648 3.71191 1.15137 5.50391c0.255859 1.15137 0.640625 2.17578 1.02441 3.2002c0.511719 1.53516 1.02344 3.19922 1.66406 4.86328
|
||||
c0.511719 1.02441 1.02344 2.04785 1.53613 3.2002c0.639648 1.53613 1.40723 2.81641 2.30371 4.48047c0.639648 0.895508 1.28027 1.91992 1.91992 2.94336c0.767578 1.28027 1.79199 2.68848 2.6875 3.96875c0.640625 1.02344 1.4082 1.79199 2.30469 2.81543
|
||||
c1.02344 1.28027 2.04785 2.43164 3.2002 3.58398c0.895508 0.768555 1.79199 1.66406 2.6875 2.68848c1.15234 1.02344 2.43164 2.04785 3.71191 3.07129l2.94434 2.17676c0.383789 0.255859 0.767578 0.639648 1.15137 0.895508l702.208 466.944
|
||||
c22.1445 14.7197 51.0723 14.7197 73.2168 0l702.08 -467.2c0.383789 -0.255859 0.767578 -0.639648 1.15137 -0.896484c0.896484 -0.767578 1.91992 -1.53516 2.81641 -2.30371c1.2793 -0.895508 2.55957 -1.91992 3.71191 -3.07227
|
||||
c1.02344 -0.895508 1.91992 -1.79199 2.6875 -2.6875c1.15234 -1.02441 2.17676 -2.17578 3.32812 -3.45605c0.768555 -0.896484 1.53613 -1.79199 2.30469 -2.81641c0.895508 -1.2793 1.79199 -2.55957 2.6875 -3.96777
|
||||
c0.639648 -0.895508 1.4082 -1.91992 1.91992 -2.94434c0.896484 -1.53516 1.66406 -2.81543 2.30371 -4.35156c0.512695 -1.02441 1.02441 -2.04785 1.53613 -3.2002c0.640625 -1.66406 1.15234 -3.2002 1.79199 -4.73535
|
||||
c0.255859 -1.02441 0.768555 -2.04883 1.02441 -3.2002c0.511719 -1.79199 0.767578 -3.58398 1.15137 -5.50391c0.128906 -0.896484 0.384766 -1.79199 0.512695 -2.81641zM1090.05 1601.28v-307.328l286.208 -190.977l231.168 154.24zM957.952 1601.28l-517.248 -344.064
|
||||
l231.04 -154.24l286.208 191.104v307.2zM387.84 1133.95v-220.416l165.12 110.208zM957.952 446.208v307.328l-286.208 190.976l-231.04 -154.111zM1024 867.84l233.472 155.904l-233.472 155.904l-233.472 -155.904zM1090.05 446.208l517.376 344.064l-231.168 154.111
|
||||
l-286.208 -190.976v-307.2zM1660.29 913.536v220.416l-165.248 -110.208z" />
|
||||
<glyph glyph-name="uniF475" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM476.16 1340.54l-2.81641 3.96777c-4.60742 -7.93555 -8.83203 -16.1279 -13.1836 -24.3193l4.47949 1.02344l17.5361 6.27246l30.208 2.6875zM1024 384
|
||||
c265.088 0 493.056 162.176 590.208 392.576l-6.52832 10.4961l14.9766 50.8154l-34.6885 25.2158l-25.3438 7.55273l-23.5518 19.8398l-55.8086 -21.1201l-52.7354 -3.07227l-39.9365 29.0566l-39.04 53.5039l-0.767578 32.5117l0.895508 54.2725l5.63184 7.55176
|
||||
l4.86426 18.1758l22.7842 35.0723l13.3125 13.0557l18.6875 20.7363l13.0557 25.5996l36.8643 34.9443l37.7598 -0.383789l27.6484 9.59961l66.4316 7.16797l25.9844 -36.8643l24.1924 -10.4961c-8.44824 39.4248 -20.2246 77.6963 -35.585 114.049l-5.50391 5.11914
|
||||
l-13.4395 -6.65527l-28.9277 -2.68848l-23.8086 -21.248l-25.9834 -35.0723l-50.6885 -11.6475l-23.5518 9.21582l2.6875 40.5762l13.3125 25.2158l46.4639 -2.6875l8.57617 21.8877l-24.0645 26.624l20.6084 8.32031l40.4482 22.0156l14.4639 11.6484
|
||||
c-49.1523 77.6953 -113.664 144.256 -190.721 194.688l-4.35156 -1.79199l20.3516 -17.792l-32.8955 5.24805l-4.6084 -9.34375l21.248 -2.56055l-7.93555 -8.95996l-59.9043 -10.3682l-77.3115 -34.3037l-59.9043 -28.9277l-6.27246 59.6475l16.8965 32.6406
|
||||
l-12.416 21.7598l-45.9521 19.4561l-22.1436 17.1523l32.1279 7.67969l69.1201 16.8955l29.8232 1.66406c-64.7676 22.1445 -132.991 36.7363 -205.056 36.7363c-146.56 0 -280.064 -51.4561 -388.096 -134.656l38.2715 1.15234l47.7441 -12.2881l32 -8.19238
|
||||
l34.8164 7.80859l47.6152 -6.0166l29.9521 7.2959l5.63184 18.0488l28.1602 -2.94434l11.0078 -22.7842l47.6162 4.35254l-74.752 -24.7041l-36.0957 -20.8643l-55.168 -42.2402l13.6963 -14.9756l38.3994 -18.0479l27.3926 -28.0322l33.6641 34.4316l19.4551 37.8887
|
||||
l33.0244 22.6553l33.0244 -16.7676l9.08789 -18.4316l28.9277 10.2393l10.2402 -55.168l20.4795 -20.0957l-74.752 -19.0723l-54.7842 -21.5039l42.752 11.7764l-5.24707 -17.1523l13.5674 -15.3604l11.2646 -7.16797l-45.9521 -18.6875l16.1279 18.8154l-25.9844 -5.63184
|
||||
l-31.2314 -14.8477l-14.208 -16.5117l-34.9443 -19.3281l-25.6006 -20.2246l-9.72754 -23.4238l-32.7676 -26.752l-25.8564 -59.3916l-8.06348 -25.7285l-23.6807 47.4883l-46.208 -0.12793l-38.3994 0.255859l-49.2803 -39.6797l-6.52832 -43.5205l29.6963 -32.3838
|
||||
l57.2158 30.7197l-14.8477 -43.5195l-40.4482 -26.1123l-39.2959 9.47266l-43.5205 18.1758l-49.9199 79.1035l-22.1436 47.2324l-5.24805 16.2559l7.42383 -66.0479l-0.639648 -17.1523l-8.19238 10.2402l-4.99219 16.6396l-9.9834 12.416l-5.12012 22.9121
|
||||
l-0.255859 35.9678l-26.752 46.3359c-17.4082 -58.1113 -29.5684 -118.399 -29.5684 -182.144c0 -295.936 202.88 -543.232 476.16 -616.192l-4.0957 12.6729l-9.60059 137.6l-11.1357 62.8477l-67.3281 65.792l-31.7441 56.3203l-10.624 27.9043l7.67969 16.5117
|
||||
l14.0801 52.9922l7.55273 61.6953l-8.32031 4.73633l-14.9756 -10.8799l-19.9688 9.34375l13.4404 6.27246l59.9043 13.8242l39.4238 17.6631l-2.43262 -26.752l14.5928 24.1924l19.7119 -6.91211l67.7119 -21.6318l48.5117 -33.6641l34.9443 -19.3281l8.31934 -5.50391
|
||||
l-8.19141 -48.7676l33.4082 9.47168l-8.32031 -16.6396l47.3604 -10.1123l48 -3.96777l31.3594 -19.7119l1.28027 -57.3447l-22.7842 -65.4072l-27.6475 -68.0967l-50.1768 -30.8477l-39.9355 -90.8799l-36.0957 5.12012l17.1514 -23.4238l-1.91992 -16.5127
|
||||
l-33.2803 -26.4961c19.4561 -1.79199 38.1445 -5.8877 57.9844 -5.8877z" />
|
||||
<glyph glyph-name="uniF432" unicode=""
|
||||
d="M1408 640l-448 448l-448 -448l-128 128l576 576l576 -576z" />
|
||||
<glyph glyph-name="uniF210" unicode=""
|
||||
d="M1024 2048c565.632 0 1024 -458.496 1024 -1024c0 -565.632 -458.368 -1024 -1024 -1024c-100.864 0 -198.016 14.7197 -290.176 42.1123c38.7842 61.4395 81.2793 140.288 103.04 219.264c12.6719 45.5684 72.0635 281.6 72.0635 281.6
|
||||
c35.7119 -67.9678 139.648 -127.743 250.24 -127.743c329.088 0 552.448 300.159 552.448 701.823c0 303.744 -257.28 586.624 -648.192 586.624c-486.527 0 -731.904 -348.8 -731.904 -639.744c0 -176.128 66.5605 -332.928 209.664 -391.168
|
||||
c23.4248 -9.59961 44.416 -0.511719 51.2002 25.4727c4.73633 18.0479 16 63.4873 20.9922 82.1758c6.78418 25.7275 4.0957 34.6875 -14.8477 57.2158c-41.0879 48.6406 -67.4561 111.488 -67.4561 200.704c0 258.816 193.536 490.496 504.063 490.496
|
||||
c274.944 0 426.112 -168.064 426.112 -392.448c0 -295.296 -130.432 -544.384 -324.608 -544.384c-107.136 0 -187.264 88.5762 -161.664 197.12c30.7207 129.664 90.4961 269.824 90.4961 363.392c0 83.8398 -44.9277 153.729 -138.111 153.729
|
||||
c-109.44 0 -197.504 -113.28 -197.504 -265.088c0 -96.6406 32.7676 -162.049 32.7676 -162.049s-112.128 -474.88 -131.712 -557.951c-18.4316 -77.8242 -20.7363 -163.456 -17.9199 -235.137c-360.832 158.336 -612.992 518.784 -612.992 937.984
|
||||
c0 565.504 458.496 1024 1024 1024z" />
|
||||
<glyph glyph-name="uniF437" unicode=""
|
||||
d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
|
||||
c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1408 768v768h-768v-768h768z" />
|
||||
<glyph glyph-name="uniF468" unicode=""
|
||||
d="M256 256v1536h256v-1536h-256zM1536 1664h256v-768h-256c-256 0 -256 128 -512 128s-256 -128 -384 -128v768c128 0 128 128 384 128s256 -128 512 -128z" />
|
||||
<glyph glyph-name="uniF107" unicode=""
|
||||
d="M1088 1792c176.768 0 320 -143.232 320 -320v-384c0 -131.2 -78.9756 -243.584 -192 -292.992v150.912c39.04 35.2002 64 85.6318 64 142.08v384c0 105.856 -86.1436 192 -192 192s-192 -86.1436 -192 -192v-384c0 -56.4482 24.96 -106.88 64 -142.08v-150.912
|
||||
c-112.896 49.4082 -192 161.792 -192 292.992v384c0 176.768 143.232 320 320 320zM960 1380.99c112.896 -49.4082 192 -161.792 192 -292.992v-384c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320v384c0 131.2 79.1035 243.584 192 292.992v-150.912
|
||||
c-39.04 -35.2002 -64 -85.6318 -64 -142.08v-384c0 -105.856 86.1436 -192 192 -192s192 86.1436 192 192v384c0 56.4482 -24.96 106.88 -64 142.08v150.912z" />
|
||||
<glyph glyph-name="uniF442" unicode=""
|
||||
d="M1280 640v256l128 128v-512h-896v896h512l-128 -128h-256v-640h640zM1024 1664h640v-640h-128v421.504l-549.504 -549.504l-90.4961 90.4961l549.504 549.504h-421.504v128z" />
|
||||
<glyph glyph-name="uniF221" unicode=""
|
||||
d="M1664 1024c0 -55.9355 -35.9678 -102.912 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -55.8076 -35.9678 -102.784 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -70.6562 -57.3438 -128 -128 -128h-64
|
||||
c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128h-448c-192 0 -256 128 -384 128h-128v640h192c128 0 320 256 320 640c0 0 0 128 64 128s192 -144 192 -320c0 -192 -32 -320 -32 -320h416c70.6562 0 128 -57.3438 128 -128z" />
|
||||
<glyph glyph-name="uniF50A" unicode=""
|
||||
d="M1856 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64h-204.928c-9.85645 -48.7676 -26.624 -94.5918 -46.8486 -138.624c116.608 -134.528 187.776 -309.376 187.776 -501.376v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
|
||||
c0 144.896 -48.7676 277.888 -130.048 385.152c-116.736 -155.265 -300.672 -257.152 -509.952 -257.152c-208.768 0 -392.448 101.504 -509.312 256.128c-81.2803 -106.88 -130.688 -239.231 -130.688 -384.128v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
|
||||
c0 192 71.2959 366.72 187.904 501.376c-20.3525 44.0322 -36.9922 89.8564 -46.9766 138.624h-204.928c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h192c0 61.6963 12.1602 119.936 29.0557 176c-98.1758 129.024 -157.056 289.408 -157.056 464v64
|
||||
c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -353.408 286.592 -640 640 -640c353.536 0 640 286.592 640 640v64c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -173.952 -58.4961 -333.824 -156.032 -462.592
|
||||
c17.2803 -56.3203 28.0322 -115.328 28.0322 -177.408h192zM1024 1152c-208.896 0 -388.352 126.08 -467.84 305.92c116.864 126.08 282.496 206.08 467.84 206.08c185.472 0 350.976 -80 467.84 -206.08c-79.4883 -179.84 -258.815 -305.92 -467.84 -305.92z" />
|
||||
<glyph glyph-name="uniF455" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 1536c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128zM1280 512
|
||||
v128h-160v512h-320.128v-128h128.128v-384h-160v-128h512z" />
|
||||
<glyph glyph-name="uniF223" unicode=""
|
||||
d="M1105.28 1232.51v92.9287c0 44.1592 -36.4805 79.8711 -81.2803 79.8711s-81.2803 -35.7119 -81.2803 -79.8711l-0.383789 -481.024c-2.55957 -184.192 -155.008 -332.416 -342.912 -332.416c-189.696 0 -343.424 150.912 -343.424 337.28v209.151h262.784v-206.592
|
||||
c0 -43.9043 36.3516 -79.7441 81.2803 -79.7441c44.9277 0 81.2793 35.7119 81.2793 79.7441v487.168c6.65625 180.48 157.185 324.992 342.656 324.992c186.112 0 337.152 -145.536 342.656 -327.04v-106.624l-156.416 -45.8242zM1529.22 1058.43h262.784v-209.151
|
||||
c0 -186.368 -153.728 -337.28 -343.424 -337.28c-188.544 0 -341.632 149.376 -343.296 334.08v210.304l104.96 -48l156.288 45.8242v-211.84c0 -44.2881 36.3516 -80 81.4072 -80c44.9287 0 81.2803 35.7119 81.2803 80v216.063z" />
|
||||
<glyph glyph-name="uniF212" unicode=""
|
||||
d="M1658.75 1791.87c184.192 -5.37598 270.976 -123.776 260.352 -355.072c-7.93555 -172.928 -129.792 -409.472 -365.439 -710.016c-243.584 -313.729 -449.792 -470.784 -618.368 -470.784c-104.448 0 -192.896 95.6162 -264.96 286.72
|
||||
c-48.2559 175.232 -96.5117 350.336 -144.64 525.568c-53.6318 190.976 -111.232 286.592 -172.672 286.592c-13.4404 0 -60.416 -27.7764 -140.673 -83.584l-84.3516 107.648c88.4482 77.0557 175.616 154.111 261.504 231.168
|
||||
c117.888 100.991 206.464 154.111 265.472 159.487c139.521 13.3125 225.28 -81.2793 257.536 -283.392c34.8164 -218.24 58.8799 -353.92 72.4482 -407.04c40.1924 -180.992 84.4805 -271.36 132.736 -271.36c37.5039 0 93.8232 58.752 169.088 176.128
|
||||
c75.0078 117.376 115.2 206.849 120.576 268.16c10.624 101.376 -29.4404 152.192 -120.576 152.192c-43.0078 0 -87.2959 -9.98438 -132.736 -29.1846c88.0645 285.952 256.512 424.704 504.704 416.769z" />
|
||||
<glyph glyph-name="uniF206" unicode=""
|
||||
d="M571.904 570.112c-36.4805 0 -71.6807 -1.02441 -110.208 -1.02441c-127.36 0 -240.513 -32 -333.696 -83.3281v484.864c78.0801 -78.208 189.696 -126.208 329.984 -126.336c20.2236 0 39.6797 1.02344 58.8799 2.43164
|
||||
c-18.8164 -35.9678 -32.2559 -76.1602 -32.2559 -118.271c0 -70.9121 39.04 -111.36 87.2959 -158.336zM575.232 937.088c-163.584 4.86426 -319.104 155.008 -347.265 369.792c-28.2881 214.912 81.4082 379.264 244.992 374.4
|
||||
c163.584 -4.86426 303.488 -181.12 331.648 -396.032c28.2881 -214.784 -65.9199 -353.024 -229.376 -348.16zM965.504 217.856c4.99219 -21.248 7.80762 -43.1367 7.80762 -65.5361c0 -8.19238 -0.639648 -16.2559 -1.02344 -24.3203h-588.288
|
||||
c-115.328 0 -211.712 76.7998 -243.712 181.504c74.8799 110.72 228.224 189.824 401.408 187.904c56.832 -0.640625 109.823 -9.72852 157.952 -25.3438c132.352 -91.9043 238.976 -149.376 265.855 -254.208zM1920 1536h-256v256h-128v-256h-256v-128h256v-256h128v256
|
||||
h256v-1024.13c0 -141.312 -114.688 -256 -256 -256h-506.624c2.55957 16.7676 4.22363 33.5361 4.22363 50.3037c0 183.937 -39.6797 276.48 -235.647 423.424c-56.1924 42.2402 -178.688 128.769 -178.688 186.881c0 67.9678 19.4561 101.632 121.856 181.504
|
||||
c104.96 82.0479 179.328 190.208 179.328 324.352c0 146.176 -59.7764 278.912 -172.16 343.296h159.36l135.68 142.464h-606.977c-174.336 0 -332.159 -72.832 -436.352 -181.376v65.2803c0 141.312 114.688 256 256 256h1280c141.312 0 256 -114.688 256 -256v-128z" />
|
||||
<glyph glyph-name="uniF407" unicode=""
|
||||
d="M1280 1536l256 -128v-128h-128h-128h-128h-128h-128h-128h-128h-128h-128v128l256 128c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM1088 1408c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256c-35.3281 0 -64 -28.6719 -64 -64
|
||||
s28.6719 -64 64 -64h256zM1280 1216h128v-704c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.6562 0 -128 57.2158 -128 128v704h128v-704h128v704h128v-704h128v704h128v-704h128v704z" />
|
||||
<glyph glyph-name="uniF414" unicode=""
|
||||
d="M1996.03 601.984c116.992 -190.208 29.6953 -345.984 -193.536 -345.984h-1556.99c-223.231 0 -310.528 155.776 -193.536 345.984l759.552 1236.99c116.864 190.336 308.097 190.336 424.961 0zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
|
||||
c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
|
||||
<glyph glyph-name="uniF50E" unicode=""
|
||||
d="M384 896v256h1280v-256h-1280z" />
|
||||
<glyph glyph-name="uniF461" unicode=""
|
||||
d="M1024 384l-647.552 612.992c-149.376 141.312 -161.408 383.231 -27.1367 540.288c134.4 157.184 364.416 169.855 513.792 28.5439l160.896 -152.32l160.768 152.32c149.248 141.184 379.393 128.64 513.792 -28.5439
|
||||
c134.656 -157.057 122.368 -398.977 -27.0078 -540.416z" />
|
||||
<glyph glyph-name="uniF470" unicode=""
|
||||
d="M1536 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-1024c-70.6562 0 -128 57.2158 -128 128v640c0 70.6562 57.3438 128 128 128v128c0 282.752 229.248 512 512 512s512 -229.248 512 -512v-128zM768 1152h512v128
|
||||
c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256v-128z" />
|
||||
<glyph glyph-name="uniF50C" unicode=""
|
||||
d="M1479.55 819.2c98.5605 -32 203.137 -51.2002 312.448 -51.2002v-512c-848.256 0 -1536 687.744 -1536 1536h512c0 -162.048 38.5283 -314.752 105.856 -450.816l-189.185 -189.184c136.192 -235.008 344.96 -422.4 595.328 -532.224z" />
|
||||
<glyph glyph-name="uniF220" unicode=""
|
||||
d="M1856.77 834.048c32.3848 -65.6641 50.6885 -138.88 50.3047 -217.344c0 -269.696 -218.88 -488.704 -488.576 -488.704c-83.584 0 -161.92 21.376 -230.656 58.1123c-50.4316 -8.83203 -102.016 -13.8242 -154.496 -13.8242
|
||||
c-465.279 0 -842.624 377.216 -842.624 842.496c0 58.2402 6.14453 114.688 17.2803 169.6c-42.4961 72.1924 -67.0723 156.8 -67.0723 246.912c0 269.824 218.88 488.704 488.704 488.704c95.7441 0 184.704 -27.3916 260.225 -75.0078
|
||||
c46.4639 7.80762 94.5918 12.416 143.871 12.416c465.408 0 842.624 -377.344 842.624 -842.624c0 -62.0801 -6.65527 -122.752 -19.584 -180.736zM1466.11 612.096c38.9121 55.5527 58.624 118.656 58.752 188.16c0 58.2402 -11.2646 107.904 -34.1758 148.353
|
||||
c-22.9121 40.3193 -54.7842 73.8555 -95.2324 100.224c-39.168 25.7275 -87.8076 48.1279 -143.744 66.0479c-55.4238 17.9199 -118.271 34.1758 -186.496 48.6396c-53.7598 12.416 -93.0557 21.8887 -116.479 28.6729c-23.04 6.14355 -45.4404 15.2314 -67.8398 26.3672
|
||||
c-21.8887 10.624 -38.5283 23.5527 -50.4326 38.0166c-11.1357 13.9521 -16.7676 30.3359 -16.7676 49.2803c0 31.2314 16.8955 57.4717 52.2236 80.5117c36.3525 23.5518 85.6318 35.9678 146.048 35.9678c64.8965 0 112.384 -11.2637 140.544 -32.6396
|
||||
c29.1846 -21.6318 54.2725 -53.6318 75.5205 -93.3125c18.5596 -31.3594 34.9434 -53.248 50.6875 -67.2002c16.3838 -14.5918 40.5762 -22.3994 71.9365 -22.3994c34.9434 0 63.8721 12.416 86.9121 36.4795c23.04 23.4248 34.6875 50.8164 34.6875 81.1523
|
||||
c0 31.3604 -9.08789 63.3604 -25.2158 95.7441c-17.2803 32.3838 -44.7998 63.1035 -81.9199 92.2881c-36.8643 28.5439 -83.8398 52.0957 -139.008 69.5039c-55.8086 16.7676 -121.729 25.5996 -196.736 25.5996c-94.7197 0 -177.536 -13.1836 -247.424 -39.04
|
||||
c-70.5283 -26.3682 -125.952 -64.3838 -163.584 -113.664c-38.0166 -49.2793 -56.96 -106.496 -56.96 -170.239c0 -67.2002 17.792 -123.776 54.2715 -169.217c35.0723 -44.1592 83.9688 -79.8721 144.385 -105.728c58.752 -25.2158 133.247 -47.3604 220.672 -66.0479
|
||||
c64.2559 -13.3125 115.712 -26.2402 154.239 -38.0166c36.8643 -11.2637 67.3281 -27.9033 89.9844 -49.2793c22.1436 -20.7363 32.6396 -46.9766 32.6396 -80.1279c0 -42.3682 -20.2236 -76.8008 -62.0801 -105.345c-43.1357 -29.0557 -100.352 -43.9033 -169.728 -43.9033
|
||||
c-50.9443 0 -92.416 7.16797 -122.624 21.6318c-30.3359 13.9521 -54.2715 32.5117 -70.5283 54.2715c-17.2793 22.6562 -33.4072 51.4561 -48.6396 85.7607c-13.4404 31.3594 -29.5684 55.8076 -49.2803 72.0635c-20.7354 17.2803 -45.3115 25.7285 -74.4961 25.7285
|
||||
c-35.0713 0 -64.7676 -10.3682 -87.8076 -32.3848c-23.5518 -21.8877 -35.3281 -48.6396 -35.3281 -79.6152c0 -48.8965 17.9199 -100.608 53.8877 -152.192c35.0723 -50.9443 82.3047 -92.416 138.752 -123.136c79.3604 -41.8564 180.864 -63.1045 301.696 -63.1045
|
||||
c100.736 0 189.44 15.4883 263.04 46.208c75.3926 30.9766 132.225 74.4961 171.648 129.92z" />
|
||||
<glyph glyph-name="uniF415" unicode=""
|
||||
d="M1408 1024h512v-256h-310.016c-98.8164 -225.92 -323.584 -384 -585.984 -384c-176.768 0 -335.488 72.832 -451.072 188.928l0.640625 0.640625c-50.0488 50.0479 -50.0488 130.943 0 180.991c50.0479 50.0488 130.943 50.1768 180.991 0
|
||||
c69.376 -69.6318 163.456 -114.56 269.44 -114.56c212.096 0 384 171.904 384 384zM1024 1408c-212.096 0 -384 -171.904 -384 -384h-512v256h310.016c98.8164 225.92 323.712 384 585.984 384c176.896 0 335.488 -72.96 451.072 -188.928
|
||||
c50.0479 -50.0479 50.0479 -130.944 0 -180.992s-130.944 -50.0479 -180.992 0l-0.639648 -0.639648c-69.376 69.6318 -163.328 114.56 -269.44 114.56zM832 1024c0 106.112 86.0156 192 192 192c106.112 0 192 -85.8877 192 -192s-85.8877 -192 -192 -192
|
||||
c-105.984 0 -192 85.8877 -192 192z" />
|
||||
<glyph glyph-name="uniF207" unicode=""
|
||||
d="M604.672 256h-329.216v990.72h329.216v-990.72zM440.064 1381.89h-2.04883c-110.464 0 -182.016 76.1602 -182.016 171.137c0 97.1514 73.5996 171.136 186.368 171.136c112.512 0 181.888 -74.1123 184.063 -171.136c0 -94.9766 -71.5518 -171.137 -186.367 -171.137z
|
||||
M1792 256h-329.216v530.048c0 133.12 -47.3604 224 -166.656 224c-91.1357 0 -145.28 -61.1836 -169.088 -120.32c-8.57617 -21.2471 -10.752 -50.9434 -10.752 -80.5117v-553.216h-329.344s4.35156 897.792 0 990.72h329.344v-140.416
|
||||
c43.7764 67.4561 121.984 163.584 296.448 163.584c216.704 0 379.264 -141.567 379.264 -445.823v-568.064z" />
|
||||
<glyph glyph-name="uniF500" unicode=""
|
||||
d="M2048 0h-1920l960 959.872z" />
|
||||
<glyph glyph-name="uniF302" unicode=""
|
||||
d="M1024 1536h512v-512l-768 -768l-512 512zM1280 1152c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF108" unicode=""
|
||||
d="M1664 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-128v-448l-448 448h-331.008l128 128h395.008c211.712 0 384 172.288 384 384v384zM1280 1792c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448
|
||||
l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
|
||||
<glyph glyph-name="uniF405" unicode=""
|
||||
d="M1536 1408l-320 -320l320 -320l-128 -128l-320 320l-320 -320l-128 128l320 320l-320 320l128 128l320 -320l320 320z" />
|
||||
<glyph glyph-name="uniF501" unicode=""
|
||||
d="M0 128v1920l960 -960z" />
|
||||
<glyph glyph-name="uniF50D" unicode=""
|
||||
d="M1024.13 896c-105.984 0 -192.128 86.0156 -192.128 192v512c0 105.856 86.1436 192 192.128 192c106.112 0 191.872 -86.1436 191.872 -192v-512c0 -105.984 -85.7598 -192 -191.872 -192zM1401.47 1024h192c-27.3916 -244.48 -206.464 -441.984 -441.472 -496v-272
|
||||
h-256v272c-234.88 54.0156 -414.08 251.52 -441.472 496h192c30.5918 -181.504 187.52 -320 377.472 -320c190.208 0 347.008 138.496 377.472 320z" />
|
||||
<glyph glyph-name="uniF503" unicode=""
|
||||
d="M2048 2048v-1920l-960 960z" />
|
||||
<glyph glyph-name="uniF101" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1024 768c141.312 0 256 114.688 256 256s-114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256z" />
|
||||
<glyph glyph-name="uniF204" unicode=""
|
||||
d="M1182.21 1271.81h328.704l-14.4639 -302.72h-314.24v-841.088h-320.128v841.088h-222.08v302.72h222.08v258.561c0 203.008 131.456 389.632 434.176 389.632c122.496 0 212.992 -11.6484 212.992 -11.6484l-7.04004 -282.624s-92.5439 0.640625 -193.536 0.640625
|
||||
c-108.928 0 -126.464 -50.3037 -126.464 -133.504c0 -12.416 0 -15.3604 0 -13.9521v-207.104z" />
|
||||
<glyph glyph-name="uniF444" unicode=""
|
||||
d="M1600 640c-70.7842 0 -128 -57.2158 -128 -128s57.2158 -128 128 -128h64v-128h-1024c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h1024v-1152h-64zM640 384h817.92c-30.7197 34.0479 -49.9199 78.5918 -49.9199 128
|
||||
s19.2002 93.9521 49.9199 128h-817.92c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF416" unicode=""
|
||||
d="M1088 1792c176.768 0 320 -143.232 320 -320v-640c0 -247.424 -200.576 -448 -448 -448s-448 200.576 -448 448v320h128v-320c0 -176.768 143.232 -320 320 -320c176.64 0 320 143.232 320 320v640c0 105.984 -86.0156 192 -192 192c-106.112 0 -192 -86.0156 -192 -192
|
||||
v-512c0 -35.3281 28.6719 -64 64 -64s64 28.6719 64 64v451.968h128v-451.968c0 -105.984 -86.0156 -192 -192 -192c-106.112 0 -192 86.0156 -192 192v512c0 176.768 143.232 320 320 320z" />
|
||||
<glyph glyph-name="uniF459" unicode=""
|
||||
d="M1920 1664v-1280l-768 480v-480l-1024 640l1024 640v-480z" />
|
||||
<glyph glyph-name="uniF441" unicode=""
|
||||
d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-512v256h256l-384 384l-384 -384h256v-256h-512c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64c0 176.768 143.232 320 320 320
|
||||
c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
|
||||
<glyph glyph-name="uniF506" unicode=""
|
||||
d="M768 1920l489.344 -489.472l-640 -640l-268.928 269.056c-49.792 49.792 -49.792 131.2 0 180.992l292.864 292.735l-1.28027 2.68848s128 128 128 384zM1738.24 565.76c33.1514 -32.7676 53.7598 -78.208 53.7598 -128.64c0 -99.9678 -81.1523 -181.12 -181.12 -181.12
|
||||
c-50.4316 0 -95.7441 20.6084 -128.64 53.7598l-330.24 330.24v128l-64 64c-35.2002 35.2002 -104.704 23.2959 -154.496 -26.4961l-75.0078 -75.0078c-49.792 -49.792 -131.2 -49.792 -180.992 0l-14.8477 14.8477l640 640l14.8477 -14.8477
|
||||
c49.792 -49.792 49.792 -131.2 0 -180.992l-75.0078 -75.0078c-49.792 -49.792 -61.6963 -119.296 -26.4961 -154.496l64 -64h128zM1610.88 373.12c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64s-64 -28.6719 -64 -64s28.6719 -64 64 -64z" />
|
||||
<glyph glyph-name="uniF105" unicode=""
|
||||
d="M1408 1408c0 -167.04 -107.264 -307.584 -256 -360.448v-535.552l-256 -128v663.552c-148.864 52.8643 -256 193.408 -256 360.448c0 212.096 171.904 384 384 384c211.968 0 384 -171.904 384 -384z" />
|
||||
<glyph glyph-name="uniF473" unicode=""
|
||||
d="M384 1664h1280v-1280h-1280v1280zM768 1408c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1536 512v576l-128 192l-448 -672l-192 288l-256 -384h1024z" />
|
||||
<glyph glyph-name="uniF452" unicode=""
|
||||
d="M512 1664l1024 -640l-1024 -640v1280z" />
|
||||
<glyph glyph-name="uniF408" unicode=""
|
||||
d="M1792 1150.72l-475.904 -329.983l182.528 -535.04l-474.624 331.903l-474.624 -331.903l182.528 535.04l-475.904 329.983l587.52 -1.02344l180.48 535.68l180.48 -535.68z" />
|
||||
<glyph glyph-name="uniF450" unicode=""
|
||||
d="M768 1024l1024 640v-1280zM256 384v1280h384v-1280h-384z" />
|
||||
<glyph glyph-name="uniF517" unicode=""
|
||||
d="M1408 1152l384 384v-1024l-384 384v-256c0 -70.7842 -57.2158 -128 -128 -128h-896c-70.6562 0 -128 57.2158 -128 128v768c0 70.6562 57.3438 128 128 128h896c70.7842 0 128 -57.3438 128 -128v-256z" />
|
||||
<glyph glyph-name="uniF106" unicode=""
|
||||
d="M256 896v640h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384zM1152 1536h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384v640z" />
|
||||
<glyph glyph-name="uniF208" unicode=""
|
||||
d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM663.168 384v792.96h-263.552v-792.96h263.552zM531.328 1285.25
|
||||
c91.9043 0 149.12 60.9277 149.12 136.96c-1.66406 77.6963 -57.2158 136.96 -147.328 136.96c-90.2402 0 -149.12 -59.2637 -149.12 -136.96c0 -76.0322 57.2158 -136.96 145.664 -136.96h1.66406zM1613.44 384v454.656c0 243.456 -130.049 356.863 -303.488 356.863
|
||||
c-139.776 0 -202.496 -76.9277 -237.44 -130.943v112.384h-263.552c3.45605 -74.3682 0 -792.96 0 -792.96h263.552v442.88c0 23.6797 1.79199 47.3604 8.57617 64.1279c19.0723 47.3604 62.4639 96.3838 135.296 96.3838c95.4883 0 133.504 -72.7031 133.504 -179.199
|
||||
v-424.192h263.553z" />
|
||||
<glyph glyph-name="uniF304" unicode=""
|
||||
d="M1024 1152c-141.312 0 -256 114.688 -256 256s114.688 256 256 256s256 -114.688 256 -256s-114.688 -256 -256 -256zM1152 1024c211.968 0 384 -171.904 384 -384v-256h-1024v256c0 212.096 172.032 384 384 384h256z" />
|
||||
<glyph glyph-name="uniF225" unicode=""
|
||||
d="M655.104 1857.54l368.896 -307.968l-531.456 -328.192l-364.544 291.84zM128 929.536l364.544 291.84l531.456 -328.064l-368.896 -308.096zM1024 893.312l531.456 328.064l364.544 -291.84l-527.232 -344.32zM1920 1513.22l-364.544 -291.84l-531.456 328.192
|
||||
l368.768 307.968zM1025.02 826.88l369.92 -306.944l158.464 103.297v-115.713l-528.384 -317.056l-528.257 317.056v115.713l158.336 -103.297z" />
|
||||
<glyph glyph-name="uniF103" unicode=""
|
||||
d="M1152 1408h896v-896h-896v896zM128 1024v384h896v-384h-896zM640 512v384h384v-384h-384zM128 512v384h384v-384h-384z" />
|
||||
<glyph glyph-name="uniF431" unicode=""
|
||||
d="M1408 1280l128 -128l-576 -576l-576 576l128 128l448 -448z" />
|
||||
<glyph glyph-name="uniF200" unicode=""
|
||||
d="M1024 2048c565.504 0 1024 -458.496 1024 -1024c0 -452.224 -293.12 -835.712 -699.776 -971.392c-51.9678 -9.98438 -70.3994 21.7598 -70.3994 49.2793c0 33.4082 1.2793 144 1.2793 280.704c0 95.7441 -32.7676 158.208 -69.5039 189.696
|
||||
c228.097 25.3438 467.456 112 467.456 505.344c0 111.744 -39.5518 203.136 -105.088 274.688c10.4961 25.8555 45.6963 130.048 -10.2402 270.976c0 0 -85.8877 27.5205 -281.344 -104.96c-81.792 22.7842 -169.344 34.0479 -256.384 34.4316
|
||||
c-87.04 -0.383789 -174.592 -11.6475 -256.384 -34.4316c-195.584 132.48 -281.601 104.96 -281.601 104.96c-55.6797 -140.928 -20.4795 -244.992 -9.85547 -270.976c-65.5361 -71.5527 -105.472 -162.944 -105.472 -274.688c0 -392.32 239.104 -480.384 466.432 -506.112
|
||||
c-29.3125 -25.7275 -55.6797 -70.6553 -65.0244 -136.96c-58.2393 -26.2393 -206.72 -71.2959 -297.983 85.248c0 0 -54.1445 98.1768 -156.929 105.473c0 0 -100.096 1.2793 -7.04004 -62.208c0 0 67.0723 -31.4883 113.664 -150.017c0 0 60.0322 -198.912 344.96 -137.216
|
||||
c0.512695 -85.248 1.4082 -149.76 1.4082 -173.952c0 -27.2637 -18.6875 -58.752 -69.8877 -49.5361c-406.912 135.425 -700.288 519.168 -700.288 971.648c0 565.504 458.496 1024 1024 1024z" />
|
||||
<glyph glyph-name="uniF421" unicode=""
|
||||
d="M384 896v256h1152v-256h-1152z" />
|
||||
<glyph glyph-name="uniF454" unicode=""
|
||||
d="M640 896v128h-512v256h512v128l384 -256zM1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v640h256v-384h1024v1280h-1024v-384h-256v384c0 141.312 114.688 256 256 256h1024zM1024 128
|
||||
c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF213" unicode=""
|
||||
d="M1536 1664c211.968 0 384 -171.904 384 -384v-512c0 -212.096 -172.032 -384 -384 -384h-1024c-212.096 0 -384 171.904 -384 384v512c0 212.096 171.904 384 384 384h1024zM768 640l640 384l-640 384v-768z" />
|
||||
<glyph glyph-name="uniF401" unicode=""
|
||||
d="M1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768
|
||||
c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448zM512 1152v128h640v-128h-640z" />
|
||||
<glyph glyph-name="uniF436" unicode=""
|
||||
d="M512 1408v128h128v-128h-128zM768 1408v128h128v-128h-128zM1024 1408v128h128v-128h-128zM1280 1536h128v-128h-128v128zM512 1152v128h128v-128h-128zM768 1152v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM512 896v128h128v-128
|
||||
h-128zM768 896v128h128v-128h-128zM1024 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM512 640v128h128v-128h-128zM768 640v128h128v-128h-128zM1024 640v128h128v-128h-128zM1280 640v128h128v-128h-128z" />
|
||||
<glyph glyph-name="uniF434" unicode=""
|
||||
d="M1152 0l896 896v-896h-896z" />
|
||||
<glyph glyph-name="uniF303" unicode=""
|
||||
d="M960 1792c388.736 0 704 -315.136 704 -704c0 -388.736 -315.264 -704 -704 -704c-388.864 0 -704 315.264 -704 704c0 388.864 315.136 704 704 704zM960 512c317.952 0 576 257.92 576 576s-258.048 576 -576 576c-318.08 0 -576 -257.92 -576 -576
|
||||
s257.92 -576 576 -576zM1024 1536v-421.504l297.984 -297.984l-90.4961 -90.4961l-335.488 335.488v474.496h128z" />
|
||||
<glyph glyph-name="uniF464" unicode=""
|
||||
d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
|
||||
M1920 640v128h-640v-128h640z" />
|
||||
<glyph glyph-name="uniF109" unicode=""
|
||||
d="M256 1280h384l384 384v-1280l-384 384h-384v512zM1295.49 1295.62c69.5039 -69.5039 112.512 -165.504 112.512 -271.616s-43.0078 -202.112 -112.512 -271.488l-90.4961 90.4961c46.3359 46.208 75.0078 110.208 75.0078 180.992
|
||||
c0 70.6562 -28.6719 134.656 -75.0078 181.12zM1476.61 1476.61c115.712 -115.841 187.392 -275.841 187.392 -452.608c0 -176.896 -71.6797 -336.896 -187.392 -452.608l-90.4961 90.4961c92.6719 92.6719 149.888 220.672 149.888 362.112
|
||||
c0 141.312 -57.2158 269.44 -149.888 361.984z" />
|
||||
<glyph glyph-name="uniF428" unicode=""
|
||||
d="M1024 1280c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256s-256 114.688 -256 256s114.688 256 256 256z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 77 KiB |
BIN
pique/fonts/Genericons.ttf
Normal file
BIN
pique/fonts/Genericons.ttf
Normal file
Binary file not shown.
BIN
pique/fonts/Genericons.woff
Normal file
BIN
pique/fonts/Genericons.woff
Normal file
Binary file not shown.
2337
pique/fonts/font-awesome.css
vendored
Normal file
2337
pique/fonts/font-awesome.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
4
pique/fonts/font-awesome.min.css
vendored
Normal file
4
pique/fonts/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
pique/fonts/fontawesome-webfont.eot
Normal file
BIN
pique/fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
2671
pique/fonts/fontawesome-webfont.svg
Normal file
2671
pique/fonts/fontawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 434 KiB |
BIN
pique/fonts/fontawesome-webfont.ttf
Normal file
BIN
pique/fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
pique/fonts/fontawesome-webfont.woff
Normal file
BIN
pique/fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
pique/fonts/fontawesome-webfont.woff2
Normal file
BIN
pique/fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
213
pique/fonts/genericons.css
Normal file
213
pique/fonts/genericons.css
Normal file
File diff suppressed because one or more lines are too long
36
pique/footer.php
Normal file
36
pique/footer.php
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying the footer.
|
||||
*
|
||||
* Contains the closing of the #content div and all content after
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
</div><!-- #content -->
|
||||
|
||||
<footer id="colophon" class="site-footer" role="contentinfo" style="background-image: url('<?php header_image(); ?>')">
|
||||
|
||||
<?php get_sidebar( 'footer' ); ?>
|
||||
|
||||
<?php
|
||||
if ( has_nav_menu( 'secondary' ) ) :
|
||||
wp_nav_menu( array( 'theme_location' => 'secondary', 'depth' => 1, 'container_class' => 'secondary-links', ) );
|
||||
endif;
|
||||
?>
|
||||
|
||||
<div class="site-info">
|
||||
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'pique' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'pique' ), 'WordPress' ); ?></a>
|
||||
<span class="sep"> · </span>
|
||||
<?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'pique' ), 'Pique', '<a href="http://wordpress.com/themes" rel="designer">WordPress.com</a>' ); ?>
|
||||
</div><!-- .site-info -->
|
||||
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
44
pique/front-page.php
Normal file
44
pique/front-page.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
/**
|
||||
* The front page template file.
|
||||
*
|
||||
* If the user has selected a static page for their homepage, this is what will
|
||||
* appear.
|
||||
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php // Show the selected frontpage content
|
||||
if ( have_posts() ) :
|
||||
while ( have_posts() ) : the_post();
|
||||
get_template_part( 'components/content', 'hero' );
|
||||
endwhile;
|
||||
else : // I'm not sure it's possible to have no posts when this page is shown, but WTH
|
||||
get_template_part( 'components/content', 'none' );
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php
|
||||
// Get each of our panels and show the post data
|
||||
$panels = array( '1', '2', '3', '4', '5', '6', '7', '8' );
|
||||
foreach ( $panels as $panel ) :
|
||||
if ( get_theme_mod( 'pique_panel' . $panel ) ) :
|
||||
$post = get_post( get_theme_mod( 'pique_panel' . $panel ) );
|
||||
setup_postdata( $post );
|
||||
set_query_var( 'pique_panel', $panel );
|
||||
get_template_part( 'components/content', 'front' );
|
||||
wp_reset_postdata();
|
||||
endif;
|
||||
endforeach;
|
||||
?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_footer(); ?>
|
324
pique/functions.php
Normal file
324
pique/functions.php
Normal file
|
@ -0,0 +1,324 @@
|
|||
<?php
|
||||
/**
|
||||
* Pique functions and definitions
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
if ( ! function_exists( 'pique_setup' ) ) :
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* Note that this function is hooked into the after_setup_theme hook, which
|
||||
* runs before the init hook. The init hook is too late for some features, such
|
||||
* as indicating support for post thumbnails.
|
||||
*/
|
||||
function pique_setup() {
|
||||
/*
|
||||
* Make theme available for translation.
|
||||
* Translations can be filed in the /languages/ directory.
|
||||
* If you're building a theme based on Pique, use a find and replace
|
||||
* to change 'pique' to the name of your theme in all the template files
|
||||
*/
|
||||
load_theme_textdomain( 'pique', get_template_directory() . '/languages' );
|
||||
|
||||
// Add default posts and comments RSS feed links to head.
|
||||
add_theme_support( 'automatic-feed-links' );
|
||||
|
||||
/*
|
||||
* Let WordPress manage the document title.
|
||||
* By adding theme support, we declare that this theme does not use a
|
||||
* hard-coded <title> 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' => '<aside id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => '</aside>',
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) );
|
||||
|
||||
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' => '<aside id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => '</aside>',
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) );
|
||||
|
||||
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' => '<aside id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => '</aside>',
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) );
|
||||
|
||||
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' => '<aside id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => '</aside>',
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) );
|
||||
}
|
||||
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';
|
||||
}
|
||||
|
122
pique/header.php
Normal file
122
pique/header.php
Normal file
|
@ -0,0 +1,122 @@
|
|||
<?php
|
||||
/**
|
||||
* The header for our theme.
|
||||
*
|
||||
* Displays all of the <head> section and everything up till <div id="content">
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
?><!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
<head>
|
||||
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11">
|
||||
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
|
||||
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
|
||||
<body <?php body_class(); ?>>
|
||||
<div id="page" class="hfeed site">
|
||||
|
||||
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'pique' ); ?></a>
|
||||
|
||||
<header id="masthead" class="site-header" role="banner">
|
||||
|
||||
<?php
|
||||
|
||||
$jetpack_options = get_theme_mod( 'jetpack_testimonials' );
|
||||
|
||||
// Let's show a header image if we aren't on the front page
|
||||
if ( ! pique_is_frontpage() ) :
|
||||
// If the post uses a Featured Image, let's show that
|
||||
if ( is_singular() && pique_is_woocommerce_in_view() && has_post_thumbnail() ) : ?>
|
||||
<a class="pique-header" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
||||
<?php the_post_thumbnail( 'pique-header', array( 'id' => 'pique-header-image' ) ); ?>
|
||||
</a>
|
||||
<?php
|
||||
// If on the Testimonials archive type
|
||||
elseif ( is_post_type_archive( 'jetpack-testimonial' ) && 0 != $jetpack_options['featured-image'] ) :
|
||||
$testimonials_header = wp_get_attachment_image_src( (int)$jetpack_options['featured-image'], 'pique-header' ); ?>
|
||||
<a class="pique-header" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
||||
<img src="<?php echo esc_url( $testimonials_header[0] ); ?>" id="pique-header-image">
|
||||
</a>
|
||||
<?php
|
||||
// Otherwise, let's just show the header image
|
||||
elseif ( get_header_image() ): ?>
|
||||
<a class="pique-header" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
||||
<img id="pique-header-image" src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="<?php bloginfo( 'name' ); ?>">
|
||||
</a>
|
||||
<?php endif; // End featured image check. ?>
|
||||
<?php endif; // End is frontpage check. ?>
|
||||
|
||||
<div class="site-branding">
|
||||
<?php pique_the_site_logo(); ?>
|
||||
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
|
||||
<p class="site-description"><?php bloginfo( 'description' ); ?></p>
|
||||
</div><!-- .site-branding -->
|
||||
|
||||
<?php if ( pique_is_frontpage() AND get_theme_mod( 'pique_menu' ) ) : ?>
|
||||
|
||||
<?php
|
||||
// Get each of our panels and output a link to that section ID on the page
|
||||
foreach ( range( 1, 8 ) as $panel ) :
|
||||
if ( get_theme_mod( 'pique_panel' . $panel ) ) :
|
||||
$post = get_post( get_theme_mod( 'pique_panel' . $panel ) );
|
||||
setup_postdata( $post );
|
||||
// Just in case the user didn't set a title for the page, we're going to generate one from the slug
|
||||
if ( '' === get_the_title() ) :
|
||||
$title = str_replace( '-', ' ', $post->post_name );
|
||||
else :
|
||||
$title = get_the_title();
|
||||
endif;
|
||||
$panel_links[] = '<li><a href="#post-' . get_the_ID() . '">' . $title . '</a></li>';
|
||||
wp_reset_postdata();
|
||||
endif;
|
||||
endforeach;
|
||||
|
||||
// Output our menu only if we actually have menu items
|
||||
if ( isset( $panel_links ) ) : ?>
|
||||
<div id="site-navigation-wrapper">
|
||||
<nav id="site-navigation" class="main-navigation" role="navigation">
|
||||
<ul id="primary-menu" class="menu nav-menu">
|
||||
<?php
|
||||
foreach ( $panel_links as $key => $link ) :
|
||||
// Output menu link
|
||||
echo wp_kses( $link, array(
|
||||
'a' => array(
|
||||
'href' => array(),
|
||||
'title' => array(),
|
||||
),
|
||||
'li' => array(),
|
||||
)
|
||||
);
|
||||
endforeach;
|
||||
?>
|
||||
<li id="more-menu" class="menu-item menu-item-has-children"><a href="#"><span class="screen-reader-text">More</span></a><ul class="sub-menu"></ul></li>
|
||||
</ul>
|
||||
</nav><!-- #site-navigation -->
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php elseif ( has_nav_menu( 'primary' ) ) : ?>
|
||||
<div id="site-navigation-wrapper">
|
||||
<nav id="site-navigation" class="main-navigation" role="navigation">
|
||||
<?php
|
||||
wp_nav_menu( array(
|
||||
'theme_location' => 'primary',
|
||||
'menu_id' => 'primary-menu',
|
||||
'fallback_cb' => 'wp_page_menu',
|
||||
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
|
||||
'walker' => new Pique_Menu(),
|
||||
) );
|
||||
?>
|
||||
</nav><!-- #site-navigation -->
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</header><!-- #masthead -->
|
||||
|
||||
<div id="content" class="site-content">
|
91
pique/inc/custom-header.php
Normal file
91
pique/inc/custom-header.php
Normal file
|
@ -0,0 +1,91 @@
|
|||
<?php
|
||||
/**
|
||||
* Implementation of the Custom Header feature
|
||||
* http://codex.wordpress.org/Custom_Headers
|
||||
*
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
/**
|
||||
* Set up the WordPress core custom header feature.
|
||||
*
|
||||
* @uses pique_header_style()
|
||||
* @uses pique_admin_header_style()
|
||||
* @uses pique_admin_header_image()
|
||||
*/
|
||||
function pique_custom_header_setup() {
|
||||
add_theme_support( 'custom-header', apply_filters( 'pique_custom_header_args', array(
|
||||
'default-image' => 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.
|
||||
?>
|
||||
<style type="text/css">
|
||||
<?php
|
||||
// Has the text been hidden?
|
||||
if ( 'blank' === $header_text_color ) :
|
||||
?>
|
||||
#masthead .site-branding .site-title a,
|
||||
#masthead .site-branding .site-description {
|
||||
position: absolute;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
}
|
||||
<?php
|
||||
// If the user has set a custom color for the text use that.
|
||||
else :
|
||||
?>
|
||||
#masthead .site-branding .site-title a,
|
||||
#masthead .site-branding .site-description {
|
||||
color: #<?php echo esc_attr( $header_text_color ); ?>;
|
||||
}
|
||||
<?php endif; ?>
|
||||
</style>
|
||||
<?php
|
||||
}
|
||||
endif; // pique_header_style
|
||||
|
||||
if ( ! function_exists( 'pique_admin_header_image' ) ) :
|
||||
/**
|
||||
* Custom header image markup displayed on the Appearance > Header admin panel.
|
||||
*
|
||||
* @see pique_custom_header_setup().
|
||||
*/
|
||||
function pique_admin_header_image() {
|
||||
?>
|
||||
<div id="headimg">
|
||||
<h1 class="displaying-header-text">
|
||||
<a id="name" style="<?php echo esc_attr( 'color: #' . get_header_textcolor() ); ?>" onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
|
||||
</h1>
|
||||
<div class="displaying-header-text" id="desc" style="<?php echo esc_attr( 'color: #' . get_header_textcolor() ); ?>"><?php bloginfo( 'description' ); ?></div>
|
||||
<?php if ( get_header_image() ) : ?>
|
||||
<img src="<?php header_image(); ?>" alt="">
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
endif; // pique_admin_header_image
|
529
pique/inc/customizer.php
Normal file
529
pique/inc/customizer.php
Normal file
|
@ -0,0 +1,529 @@
|
|||
<?php
|
||||
/**
|
||||
* Pique Theme Customizer
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
/**
|
||||
* Add postMessage support for site title and description for the Theme Customizer.
|
||||
*
|
||||
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
|
||||
*/
|
||||
function pique_customize_register( $wp_customize ) {
|
||||
$wp_customize->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() {
|
||||
?>
|
||||
<style type="text/css">
|
||||
<?php
|
||||
// Get each panel and iterate to output the proper CSS styles
|
||||
$panels = array( '1', '2', '3', '4', '5', '6', '7', '8' );
|
||||
foreach ( $panels as $panel ) :
|
||||
// Adjust the background colour if a custom colour is set
|
||||
if ( get_theme_mod( 'pique_panel' . $panel . '_background' ) ) : ?>
|
||||
.pique-frontpage .pique-panel.pique-panel<?php echo absint( $panel ); ?> {
|
||||
background-color: <?php echo esc_attr( get_theme_mod( 'pique_panel' . $panel . '_background' ) ); ?>;
|
||||
}
|
||||
<?php endif;
|
||||
// Adjust the opacity of featured image if set
|
||||
if ( get_theme_mod( 'pique_panel' . $panel . '_opacity' ) ) : ?>
|
||||
.pique-frontpage .pique-panel.pique-panel<?php echo absint( $panel ); ?> .pique-panel-background {
|
||||
opacity: <?php echo esc_attr( get_theme_mod( 'pique_panel' . $panel . '_opacity' ) ); ?>;
|
||||
}
|
||||
<?php endif;
|
||||
endforeach; ?>
|
||||
</style>
|
||||
<?php
|
||||
}
|
||||
add_action( 'wp_head', 'pique_customizer_css' );
|
||||
|
||||
/**
|
||||
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
|
||||
*/
|
||||
function pique_customize_preview_js() {
|
||||
wp_enqueue_script( 'pique_customizer', get_template_directory_uri() . '/assets/js/customizer.js', array( 'customize-preview' ), '20151117', true );
|
||||
}
|
||||
add_action( 'customize_preview_init', 'pique_customize_preview_js' );
|
||||
|
||||
function pique_panels_js() {
|
||||
wp_enqueue_script( 'pique_extra_js', get_template_directory_uri() . '/assets/js/panel-customizer.js', array(), '20151116', true );
|
||||
}
|
||||
add_action( 'customize_controls_enqueue_scripts', 'pique_panels_js' );
|
267
pique/inc/extras.php
Normal file
267
pique/inc/extras.php
Normal file
|
@ -0,0 +1,267 @@
|
|||
<?php
|
||||
/**
|
||||
* Custom functions that act independently of the theme templates
|
||||
*
|
||||
* Eventually, some of the functionality here could be replaced by core features
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
/**
|
||||
* Checks to see if we're on the homepage or not.
|
||||
* We reuse this check in a few places, so this simplifies the process a bit.
|
||||
*/
|
||||
function pique_is_frontpage() {
|
||||
if ( is_front_page() && ! is_home() ) :
|
||||
return true;
|
||||
else :
|
||||
return false;
|
||||
endif;
|
||||
}
|
||||
|
||||
/*
|
||||
* Count our number of active panels
|
||||
* Primarily used to see if we have any panels active, duh.
|
||||
*/
|
||||
function pique_panel_count() {
|
||||
$panels = array( '1', '2', '3', '4', '5', '6', '7', '8' );
|
||||
$panel_count = 0;
|
||||
foreach ( $panels as $panel ) :
|
||||
if ( get_theme_mod( 'pique_panel' . $panel ) ) :
|
||||
$panel_count++;
|
||||
endif;
|
||||
endforeach;
|
||||
return $panel_count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds custom classes to the array of body classes.
|
||||
*
|
||||
* @param array $classes Classes for the body element.
|
||||
* @return array
|
||||
*/
|
||||
function pique_body_classes( $classes ) {
|
||||
// Adds a class of group-blog to blogs with more than 1 published author.
|
||||
if ( is_multi_author() ) :
|
||||
$classes[] = 'group-blog';
|
||||
endif;
|
||||
|
||||
// Adds a body class if we're on the (static) front page
|
||||
if ( pique_is_frontpage() ) :
|
||||
$classes[] = 'pique-frontpage';
|
||||
endif;
|
||||
|
||||
// Adds a class if we're on the static front page, and there's only a single panel
|
||||
|
||||
if ( pique_is_frontpage() && 0 === pique_panel_count() ) :
|
||||
$classes[] = 'pique-no-panels';
|
||||
endif;
|
||||
|
||||
// Adds a class if we're in the Customizer, since it doesn't like fixed backgrounds
|
||||
if ( is_customize_preview() ) :
|
||||
$classes[] = 'pique-customizer';
|
||||
endif;
|
||||
|
||||
// Adds a class if we don't have a sidebar at all, so we can adjust the layout
|
||||
if ( is_active_sidebar( 'sidebar-1' ) ) :
|
||||
$classes[] = 'pique-sidebar';
|
||||
endif;
|
||||
|
||||
return $classes;
|
||||
}
|
||||
add_filter( 'body_class', 'pique_body_classes' );
|
||||
|
||||
/**
|
||||
* Adds custom classes to the array of post classes.
|
||||
*
|
||||
* @param array $classes Classes for the post element.
|
||||
* @return array
|
||||
*/
|
||||
function pique_post_classes( $classes ) {
|
||||
// Adds the page template slug, if we're using one, to the array of classes
|
||||
// We're stripping the prefixed folder name and the .php suffix for prettier CSS
|
||||
if ( get_page_template_slug() && '' !== get_page_template_slug() ) :
|
||||
$simple_slug = get_page_template_slug();
|
||||
// Make sure the template actually exists in this theme.
|
||||
if ( '' !== locate_template( $simple_slug ) ) :
|
||||
$simple_slug = explode( '.', $simple_slug );
|
||||
$simple_slug = $simple_slug[0];
|
||||
$simple_slug = explode( '/', $simple_slug );
|
||||
$simple_slug = $simple_slug[1];
|
||||
$classes[] = 'pique-' . $simple_slug;
|
||||
endif;
|
||||
endif;
|
||||
|
||||
// Add a page template slug to the main posts page
|
||||
if ( get_the_ID() === (int) get_option( 'page_for_posts' ) ) :
|
||||
$classes[] = 'pique-template-recent-posts';
|
||||
endif;
|
||||
|
||||
// Add the panel classes to all posts in archive views
|
||||
if ( is_home() || is_search() || is_archive() ) :
|
||||
$classes[] = 'pique-panel';
|
||||
endif;
|
||||
|
||||
return $classes;
|
||||
}
|
||||
add_filter( 'post_class', 'pique_post_classes' );
|
||||
|
||||
/*
|
||||
* Remove an element from an array.
|
||||
* Used in our post_class filtering machinations above.
|
||||
*/
|
||||
function pique_remove_from_array( $item, $array ) {
|
||||
$index = array_search( $item, $array );
|
||||
if ( false !== $index ) {
|
||||
unset( $array[ $index ] );
|
||||
}
|
||||
return $array;
|
||||
}
|
||||
|
||||
/**
|
||||
* We want to do some fancy-pants stuff with our navbar, so we'll need to
|
||||
* create a custom walker. This basically means that, if we're on the homepage,
|
||||
* and the links in the menu are to panels on that page, the link will direct to
|
||||
* that panel using a hash link, rather than directing to the new page itself.
|
||||
*/
|
||||
class Pique_Menu extends Walker_Nav_Menu {
|
||||
var $current_menu = null;
|
||||
var $break_point = null;
|
||||
var $id_to_split_on = null;
|
||||
var $top_level_count = null;
|
||||
|
||||
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
|
||||
|
||||
global $wp_query;
|
||||
global $post;
|
||||
|
||||
// Get the locations of nav menus
|
||||
$theme_locations = get_nav_menu_locations();
|
||||
|
||||
if ( is_object( $args ) ) :
|
||||
// Get the menu object of the current nav menu based on the returned theme location
|
||||
$menu_obj = get_term( $theme_locations[ $args->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 . '<li' . $id . $value . $class_names . '>';
|
||||
|
||||
// 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 .= '<a'. $attributes .'>';
|
||||
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
|
||||
$item_output .= '</a>';
|
||||
$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 .= '<li id="more-menu" class="menu-item menu-item-has-children"><a href="#"><span class="screen-reader-text">More</span></a><ul class="sub-menu"></ul></li>';
|
||||
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 = '<span class="read-more">';
|
||||
$more_link .= '<a class="more-link" href="' . esc_url( get_the_permalink() ) . '" rel="bookmark">';
|
||||
$more_link .= sprintf(
|
||||
wp_kses( __( 'Read more %s', 'pique' ), array( 'span' => array( 'class' => array() ) ) ),
|
||||
the_title( '<span class="screen-reader-text">"', '"</span>', false )
|
||||
);
|
||||
$more_link .= '</a></span>';
|
||||
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( '</a> (', '</a><span class="post-count">(', $links );
|
||||
$links = str_replace( ')', ')</span>', $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( '</a> (', '</a><span class="post-count">(', $links );
|
||||
$links = str_replace( ')', ')</span>', $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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
176
pique/inc/headstart/ar.json
Normal file
176
pique/inc/headstart/ar.json
Normal file
|
@ -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 أو مجموعة متنوعة من هذه. حررها في قسم \"المربع الجانبي\" في <a href=\"https://wordpress.com/customize/\">\"أداة التخصيص\"</a>.",
|
||||
"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 أو مجموعة متنوعة من هذه. حررها في قسم \"المربع الجانبي\" في <a href=\"https://wordpress.com/customize/\">\"أداة التخصيص\"</a>.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-3",
|
||||
"position": 0
|
||||
},
|
||||
{
|
||||
"id": "text-5",
|
||||
"id_base": "text",
|
||||
"settings": {
|
||||
"title": "مربع جانبي للنص",
|
||||
"text": "هذا مربع جانبي للنص. يسمح لك المربع الجانبي للنص بإضافة نص أو HTML إلى شريطك الجانبي. يمكنك استخدام مربع جانبي للنص لعرض نص أو روابط أو صور أو HTML أو مجموعة متنوعة من هذه. حررها في قسم \"المربع الجانبي\" في <a href=\"https://wordpress.com/customize/\">\"أداة التخصيص\"</a>.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-4",
|
||||
"position": 0
|
||||
}
|
||||
],
|
||||
"content": [
|
||||
{
|
||||
"post_title": "الصفحة الرئيسية",
|
||||
"post_content": "مرحبًا بك في موقعك الجديد! يمكنك تحرير هذه الصفحة عن طريق النقر فوق رابط \"تحرير\". لمزيد من المعلومات حول تخصيص موقعك، تحقق من <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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": "هذا مثال لصفحة \"نبذة عن\". على عكس المقالات، تتناسب الصفحات بشكل أفضل مع المحتوى المستمر لفترة طويلة الذي تريد تسهيل الوصول إليه، مثل \"نبذة عنك\" أو \"معلومات الاتصال الخاصة بك\" انقر فوق رابط \"تحرير\" لإجراء تغييرات على هذه الصفحة <a href=\"https://wordpress.com/page\">أو أضف صفحة أخرى</a>.",
|
||||
"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": "هذه هي مقالتك الأولى. انقر فوق رابط \"تحرير\" لتعديلها أو حذفها، أو <a href=\"https://wordpress.com/post\">ابدأ مقالة جديدة</a>. استخدم هذه المقالة، إن شئت، لإخبار القراء عن سبب إنشاء هذه المدونة وما الذي تخطط للقيام به من خلالها.",
|
||||
"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": {}
|
||||
}
|
176
pique/inc/headstart/de.json
Normal file
176
pique/inc/headstart/de.json
Normal file
|
@ -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 <a href=\"https://wordpress.com/customize/\">Customizer</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Customizer</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Customizer</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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 <a href=\"https://wordpress.com/page\">füge eine weitere Seite hinzu</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">beginne einen neuen Beitrag</a>. 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": {}
|
||||
}
|
90
pique/inc/headstart/en.json
Normal file
90
pique/inc/headstart/en.json
Normal file
|
@ -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! <blockquote>Good company in a journey makes the way seem shorter. — Izaak Walton<\/blockquote><img class=\"wp-image-7 size-full\" src=\"https://headstartdata.files.wordpress.com/2018/02/post.png\" alt=\"post\" width=\"1000\" height=\"563\" \/>",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
176
pique/inc/headstart/es.json
Normal file
176
pique/inc/headstart/es.json
Normal file
|
@ -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 <a href=\"https://wordpress.com/customize/\">Personalizador</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Personalizador</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Personalizador</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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 href=\"https://wordpress.com/page\">añade otra página</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">crea una entrada nueva</a>. 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": {}
|
||||
}
|
176
pique/inc/headstart/fr.json
Normal file
176
pique/inc/headstart/fr.json
Normal file
|
@ -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’<a href=\"https://wordpress.com/customize/\">outil de personnalisation</a>.",
|
||||
"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’<a href=\"https://wordpress.com/customize/\">outil de personnalisation</a>.",
|
||||
"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’<a href=\"https://wordpress.com/customize/\">outil de personnalisation</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>.",
|
||||
"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 <a href=\"https://wordpress.com/page\">ajouter une autre page</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">commencez un nouvel article</a>. 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": {}
|
||||
}
|
176
pique/inc/headstart/he.json
Normal file
176
pique/inc/headstart/he.json
Normal file
|
@ -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 או שילוב של התכנים הללו. ניתן לערוך אותם במקטע 'וידג'טים' ב<a href=\"https://wordpress.com/customize/\">כלי ההתאמה האישית</a>.",
|
||||
"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 או שילוב של התכנים הללו. ניתן לערוך אותם במקטע 'וידג'טים' ב<a href=\"https://wordpress.com/customize/\">כלי ההתאמה האישית</a>.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-3",
|
||||
"position": 0
|
||||
},
|
||||
{
|
||||
"id": "text-5",
|
||||
"id_base": "text",
|
||||
"settings": {
|
||||
"title": "וידג'ט טקסט",
|
||||
"text": "זהו וידג'ט לטקסט. וידג'ט טקסט מאפשר לך להוסיף טקסט או HTML לסרגל הצדי שלך. אפשר להשתמש בווידג'ט לטקסט להצגת טקסט, קישורים, תמונות, HTML או שילוב של התכנים הללו. ניתן לערוך אותם במקטע 'וידג'טים' ב<a href=\"https://wordpress.com/customize/\">כלי ההתאמה האישית</a>.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-4",
|
||||
"position": 0
|
||||
}
|
||||
],
|
||||
"content": [
|
||||
{
|
||||
"post_title": "ראשי",
|
||||
"post_content": "ברוכים הבאים לאתר החדש שלכם! אפשר לערוך עמוד זה על ידי לחיצה על הקישור 'עריכה'. למידע נוסף על התאמה אישית של האתר, כדאי לבקר בכתובת <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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": "זהו עמוד 'אודות' לדוגמה. להבדיל מפוסטים, עמודים מתאימים יותר ליצירת גישה קלה לתוכן שאינו תלוי בזמן, למשל 'אודות' או 'פרטים ליצירת קשר'. יש ללחוץ על הקישור 'עריכה' כדי לבצע שינויים בעמוד זה או <a href=\"https://wordpress.com/page\">להוסיף עוד עמוד</a>.",
|
||||
"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": "הפוסט הזה הוא הראשון שלך. יש ללחוץ על הקישור 'עריכה' כדי לשנות או למחוק אותו או <a href=\"https://wordpress.com/post\">להתחיל פוסט חדש</a>. אפשר לנצל את הפוסט הזה כדי להסביר לקוראים מדוע פתחת את הבלוג ומה בכוונתך לעשות אתו.",
|
||||
"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": {}
|
||||
}
|
176
pique/inc/headstart/id.json
Normal file
176
pique/inc/headstart/id.json
Normal file
|
@ -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 <a href=\"https://wordpress.com/customize/\">Customizer</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Customizer</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Customizer</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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 <a href=\"https://wordpress.com/page\">tambahkan halaman lain</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">mulai pos baru</a>. 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": {}
|
||||
}
|
176
pique/inc/headstart/it.json
Normal file
176
pique/inc/headstart/it.json
Normal file
|
@ -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'<a href=\"https://wordpress.com/customize/\">utilità di personalizzazione</a>.",
|
||||
"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'<a href=\"https://wordpress.com/customize/\">utilità di personalizzazione</a>.",
|
||||
"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'<a href=\"https://wordpress.com/customize/\">utilità di personalizzazione</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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 <a href=\"https://wordpress.com/page\">aggiungi un'altra pagina</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">inizia un nuovo articolo</a>. 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": {}
|
||||
}
|
176
pique/inc/headstart/ja.json
Normal file
176
pique/inc/headstart/ja.json
Normal file
|
@ -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、またはこれらの組み合わせを表示できます。これらは、<a href=\"https://wordpress.com/customize/\">カスタマイザー</a>のウィジェットセクションで編集します。",
|
||||
"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、またはこれらの組み合わせを表示できます。これらは、<a href=\"https://wordpress.com/customize/\">カスタマイザー</a>のウィジェットセクションで編集します。",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-3",
|
||||
"position": 0
|
||||
},
|
||||
{
|
||||
"id": "text-5",
|
||||
"id_base": "text",
|
||||
"settings": {
|
||||
"title": "テキストウィジェット",
|
||||
"text": "これはテキストウィジェットです。テキストウィジェットにより、テキストや HTML をサイドバーに追加できます。テキストウィジェットを使って、テキスト、リンク、画像、HTML、またはこれらの組み合わせを表示できます。これらは、<a href=\"https://wordpress.com/customize/\">カスタマイザー</a>のウィジェットセクションで編集します。",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-4",
|
||||
"position": 0
|
||||
}
|
||||
],
|
||||
"content": [
|
||||
{
|
||||
"post_title": "ホーム",
|
||||
"post_content": "新しいサイトへようこそ !「編集」リンクをクリックすると、このページを編集できます。サイトのカスタマイズに関する詳細は、<a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a> をご確認ください。",
|
||||
"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": "これは、「このサイトについて」ページのサンプルです。投稿とは違い、ページは時系列に関係なく簡単にアクセスできるようにしたいコンテンツに向いています。たとえば「このサイトについて」や「お問い合わせ」などです。編集リンクをクリックしてこのページに変更を加えるか、<a href=\"https://wordpress.com/page\">新しいページを作成</a>してみましょう。",
|
||||
"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": "これは最初の投稿です。編集リンクをクリックして内容の変更や削除を行うか、<a href=\"https://wordpress.com/post\">新しい投稿を追加</a>しましょう。この投稿内で、なぜブログを始めたのか、どんなことについてブログを書いていくのか、といったことを読者に伝えるのもよいでしょう。",
|
||||
"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": {}
|
||||
}
|
176
pique/inc/headstart/ko.json
Normal file
176
pique/inc/headstart/ko.json
Normal file
|
@ -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 또는 이들의 조합을 표시할 수 있습니다. <a href=\"https://wordpress.com/customize/\">사용자 정의 기능</a>의 위젯 섹션에서 이러한 항목을 편집해 보세요.",
|
||||
"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 또는 이들의 조합을 표시할 수 있습니다. <a href=\"https://wordpress.com/customize/\">사용자 정의 기능</a>의 위젯 섹션에서 이러한 항목을 편집해 보세요.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-3",
|
||||
"position": 0
|
||||
},
|
||||
{
|
||||
"id": "text-5",
|
||||
"id_base": "text",
|
||||
"settings": {
|
||||
"title": "텍스트 위젯",
|
||||
"text": "텍스트 위젯입니다. 텍스트 위젯을 사용하여 텍스트나 HTML을 사이드바에 추가할 수 있습니다. 텍스트 위젯을 사용하여 텍스트, 링크, 이미지, HTML 또는 이들의 조합을 표시할 수 있습니다. <a href=\"https://wordpress.com/customize/\">사용자 정의 기능</a>의 위젯 섹션에서 이러한 항목을 편집해 보세요.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-4",
|
||||
"position": 0
|
||||
}
|
||||
],
|
||||
"content": [
|
||||
{
|
||||
"post_title": "홈",
|
||||
"post_content": "새로운 사이트를 시작합니다! 편집 링크를 클릭하여 이 페이지를 편집할 수 있습니다. 사이트를 사용자 지정하는 방법에 대한 자세한 내용은 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>을 참조하십시오.",
|
||||
"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": "이 페이지는 정보 페이지의 예입니다. 글과 달리 페이지는 내 정보 또는 연락처 정보처럼 쉽게 액세스하고 자주 수정하지 않는 콘텐츠에 더 적합합니다. 편집 링크를 클릭해 이 페이지를 수정하거나 <a href=\"https://wordpress.com/page\">다른 페이지를 추가</a>하세요.",
|
||||
"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": "회원님의 첫 번째 글입니다. 편집 링크를 클릭하여 편집 또는 삭제하거나 <a href=\"https://wordpress.com/post\">새 글을 작성하세요</a>. 원하는 경우 이 글을 사용하여 독자들에게 이 블로그를 시작한 이유와 어떻게 활용할 것인지를 알리세요.",
|
||||
"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": {}
|
||||
}
|
176
pique/inc/headstart/nl.json
Normal file
176
pique/inc/headstart/nl.json
Normal file
|
@ -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 <a href=\"https://wordpress.com/customize/\">Aanpassingsmenu</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Aanpassingsmenu</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Aanpassingsmenu</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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 <a href=\"https://wordpress.com/page\">voeg een nieuwe pagina toe</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">maak een nieuw bericht aan</a>. 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": {}
|
||||
}
|
176
pique/inc/headstart/pt-br.json
Normal file
176
pique/inc/headstart/pt-br.json
Normal file
|
@ -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 <a href=\"https://wordpress.com/customize/\">Personalizador</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Personalizador</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Personalizador</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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 <a href=\"https://wordpress.com/page\">adicione uma nova página</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">comece um novo</a>. 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": {}
|
||||
}
|
176
pique/inc/headstart/ru.json
Normal file
176
pique/inc/headstart/ru.json
Normal file
|
@ -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 или их сочетаний. Чтобы изменить элемент, откройте раздел «Виджет» в <a href=\"https://wordpress.com/customize/\">конфигураторе</a>.",
|
||||
"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 или их сочетаний. Чтобы изменить элемент, откройте раздел «Виджет» в <a href=\"https://wordpress.com/customize/\">конфигураторе</a>.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-3",
|
||||
"position": 0
|
||||
},
|
||||
{
|
||||
"id": "text-5",
|
||||
"id_base": "text",
|
||||
"settings": {
|
||||
"title": "Текстовый виджет",
|
||||
"text": "Это текстовый виджет. С помощью этого виджета можно добавлять текст или HTML-код на боковую панель. Используйте текстовый виджет для отображения текста, ссылок, изображений, HTML или их сочетаний. Чтобы изменить элемент, откройте раздел «Виджет» в <a href=\"https://wordpress.com/customize/\">конфигураторе</a>.",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-4",
|
||||
"position": 0
|
||||
}
|
||||
],
|
||||
"content": [
|
||||
{
|
||||
"post_title": "Главная",
|
||||
"post_content": "Добро пожаловать на ваш новый сайт! Чтобы отредактировать эту страницу, выберите элемент «Изменить». Дополнительную информацию о настройке сайта см. на странице <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>.",
|
||||
"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": "Это пример страницы «О нас». Сведения о владельце сайта, контактные данные и прочую информацию, которая должна быть всегда и легко доступна, лучше размещать на отдельных страницах, а не в записях блога. Выберите элемент «Изменить», чтобы отредактировать эту страницу, или <a href=\"https://wordpress.com/page\">добавьте новую страницу</a>.",
|
||||
"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": "Это ваша самая первая запись. Чтобы отредактировать или удалить её, нажмите кнопку «Изменить» или <a href=\"https://wordpress.com/post\">создайте новую запись</a>. В этой записи можно рассказать читателям, почему вы завели блог и что планируете в нём публиковать.",
|
||||
"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": {}
|
||||
}
|
176
pique/inc/headstart/sv.json
Normal file
176
pique/inc/headstart/sv.json
Normal file
|
@ -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 <a href=\"https://wordpress.com/customize/\">Anpassa</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Anpassa</a>.",
|
||||
"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 <a href=\"https://wordpress.com/customize/\">Anpassa</a>.",
|
||||
"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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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 <a href=\"https://wordpress.com/page\">lägga till ytterligare en sida</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">skriv ett nytt inlägg</a>. 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": {}
|
||||
}
|
176
pique/inc/headstart/tr.json
Normal file
176
pique/inc/headstart/tr.json
Normal file
|
@ -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ı <a href=\"https://wordpress.com/customize/\">Özelleştirici</a>'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ı <a href=\"https://wordpress.com/customize/\">Özelleştirici</a>'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ı <a href=\"https://wordpress.com/customize/\">Özelleştirici</a>'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 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a> 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 <a href=\"https://wordpress.com/page\">başka bir sayfa ekleyin</a>.",
|
||||
"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 <a href=\"https://wordpress.com/post\">yeni bir gönderi başlatın</a>. İ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": {}
|
||||
}
|
176
pique/inc/headstart/zh-cn.json
Normal file
176
pique/inc/headstart/zh-cn.json
Normal file
|
@ -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 或这些内容的组合,还可以在<a href=\"https://wordpress.com/customize/\">定制器</a>的“小组件”部分编辑这些内容。",
|
||||
"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 或这些内容的组合,还可以在<a href=\"https://wordpress.com/customize/\">定制器</a>的“小组件”部分编辑这些内容。",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-3",
|
||||
"position": 0
|
||||
},
|
||||
{
|
||||
"id": "text-5",
|
||||
"id_base": "text",
|
||||
"settings": {
|
||||
"title": "文本小组件",
|
||||
"text": "这是文本小组件。文本小组件可让您向边栏添加文本或 HTML。您可以使用文本小组件显示文本、链接、图片、HTML 或这些内容的组合,还可以在<a href=\"https://wordpress.com/customize/\">定制器</a>的“小组件”部分编辑这些内容。",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-4",
|
||||
"position": 0
|
||||
}
|
||||
],
|
||||
"content": [
|
||||
{
|
||||
"post_title": "首页",
|
||||
"post_content": "欢迎使用您的新站点!您可以点击“编辑”链接编辑此页面。如需详细了解如何自定义您的站点,请访问 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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": "这是“关于”页面的示例。与文章不同,页面更适合显示您希望让人轻松查看并且时限性较低的内容(比如“关于”或“联系信息”)。点击“编辑”链接修改此页面或<a href=\"https://wordpress.com/page\">添加另一页面</a>。",
|
||||
"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": "这是您的第一篇文章。点击“编辑”链接修改或删除该文章,或者<a href=\"https://wordpress.com/post\">开始撰写新文章</a>。如果您愿意,可以通过这篇文章告诉读者您创建此博客的原因以及您打算使用它做些什么。",
|
||||
"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": {}
|
||||
}
|
176
pique/inc/headstart/zh-tw.json
Normal file
176
pique/inc/headstart/zh-tw.json
Normal file
|
@ -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 或上述多項元素。前往<a href=\"https://wordpress.com/customize/\">自訂工具</a>的「小工具」區段即可加以編輯。",
|
||||
"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 或上述多項元素。前往<a href=\"https://wordpress.com/customize/\">自訂工具</a>的「小工具」區段即可加以編輯。",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-3",
|
||||
"position": 0
|
||||
},
|
||||
{
|
||||
"id": "text-5",
|
||||
"id_base": "text",
|
||||
"settings": {
|
||||
"title": "文字小工具",
|
||||
"text": "這是文字小工具。「文字小工具」可讓你在側邊欄新增文字或 HTML。你可以利用文字小工具來顯示文字、連結、圖片、HTML 或上述多項元素。前往<a href=\"https://wordpress.com/customize/\">自訂工具</a>的「小工具」區段即可加以編輯。",
|
||||
"filter": false,
|
||||
"syntaxhighlighter_encoded": true
|
||||
},
|
||||
"sidebar": "sidebar-4",
|
||||
"position": 0
|
||||
}
|
||||
],
|
||||
"content": [
|
||||
{
|
||||
"post_title": "首頁",
|
||||
"post_content": "歡迎來到你的全新網站!你可以按一下「編輯」連結修改這個頁面。如需自訂網站的更多資訊,請造訪 <a href=\"http://learn.wordpress.com/\">http://learn.wordpress.com/</a>",
|
||||
"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": "這是「簡介」網頁的範例。網頁與文章不同,有些不會隨時間改變的內容,例如「簡介」或「聯絡資訊」,都更適合放在網頁中,以方便訪客輕鬆存取。按一下「編輯」連結,以變更此網頁或<a href=\"https://wordpress.com/page\">新增其他網頁</a>。",
|
||||
"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": "這是你發表的第一篇文章。按一下「編輯」連結即可修改或刪除文章,或是<a href=\"https://wordpress.com/post\">開始撰寫新文章</a>。你可以利用這篇文章告訴讀者這個網誌的建立原因,以及網誌的未來計畫。",
|
||||
"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": {}
|
||||
}
|
593
pique/inc/jetpack-fonts.php
Normal file
593
pique/inc/jetpack-fonts.php
Normal file
|
@ -0,0 +1,593 @@
|
|||
<?php
|
||||
|
||||
add_filter( 'typekit_add_font_category_rules', function( $category_rules ) {
|
||||
|
||||
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
|
||||
'html',
|
||||
array(
|
||||
array( 'property' => '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;
|
||||
} );
|
114
pique/inc/jetpack.php
Normal file
114
pique/inc/jetpack.php
Normal file
|
@ -0,0 +1,114 @@
|
|||
<?php
|
||||
/**
|
||||
* Jetpack Compatibility File
|
||||
* See: https://jetpack.com/
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
function pique_jetpack_setup() {
|
||||
// Add theme support for Infinite Scroll.
|
||||
add_theme_support( 'infinite-scroll', array(
|
||||
'container' => '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;
|
||||
}
|
||||
}
|
||||
|
249
pique/inc/style-wpcom.css
Normal file
249
pique/inc/style-wpcom.css
Normal file
|
@ -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;
|
||||
}
|
||||
}
|
138
pique/inc/template-tags.php
Normal file
138
pique/inc/template-tags.php
Normal file
|
@ -0,0 +1,138 @@
|
|||
<?php
|
||||
/**
|
||||
* Custom template tags for this theme.
|
||||
*
|
||||
* Eventually, some of the functionality here could be replaced by core features.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
if ( ! function_exists( 'pique_posted_on' ) ) :
|
||||
/**
|
||||
* Prints HTML with meta information for the current post-date/time and author.
|
||||
*/
|
||||
function pique_posted_on() {
|
||||
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
|
||||
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
|
||||
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
|
||||
}
|
||||
|
||||
$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', '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>' );
|
||||
|
||||
$byline = sprintf(
|
||||
esc_html_x( 'by %s', 'post author', 'pique' ),
|
||||
'<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'
|
||||
);
|
||||
|
||||
echo '<span class="posted-on">' . $posted_on . '</span><span class="byline"> ' . $byline . '</span>'; // WPCS: XSS OK.
|
||||
|
||||
edit_post_link( esc_html__( 'Edit', 'pique' ), '<span class="edit-link">', '</span>' );
|
||||
|
||||
}
|
||||
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( '<span class="cat-links">' . esc_html__( 'Posted in %1$s', 'pique' ) . '</span>', $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( '<span class="tags-links">' . esc_html__( 'Tagged %1$s', 'pique' ) . '</span>', $tags_list ); // WPCS: XSS OK.
|
||||
}
|
||||
|
||||
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
|
||||
echo '<span class="comments-link">';
|
||||
comments_popup_link( esc_html__( 'Leave a comment', 'pique' ), esc_html__( '1 Comment', 'pique' ), esc_html__( '% Comments', 'pique' ) );
|
||||
echo '</span>';
|
||||
}
|
||||
|
||||
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( '<span class="screen-reader-text">"', '"</span>', false )
|
||||
),
|
||||
'<span class="edit-link">',
|
||||
'</span>'
|
||||
);
|
||||
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' );
|
411
pique/inc/woocommerce.php
Normal file
411
pique/inc/woocommerce.php
Normal file
|
@ -0,0 +1,411 @@
|
|||
<?php
|
||||
/**
|
||||
* WooCommerce Compatibility File
|
||||
*
|
||||
* @link https://woocommerce.com/
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
/**
|
||||
* WooCommerce setup function.
|
||||
*
|
||||
* @link https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/
|
||||
* @link https://github.com/woocommerce/woocommerce/wiki/Enabling-product-gallery-features-(zoom,-swipe,-lightbox)-in-3.0.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function pique_woocommerce_setup() {
|
||||
add_theme_support( 'woocommerce', array(
|
||||
'thumbnail_image_width' => 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 '<div class="columns-' . absint( $columns ) . '">';
|
||||
}
|
||||
}
|
||||
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 '</div>';
|
||||
}
|
||||
}
|
||||
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() {
|
||||
?>
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
<?php
|
||||
}
|
||||
}
|
||||
add_action( 'woocommerce_before_main_content', 'pique_woocommerce_wrapper_before' );
|
||||
|
||||
if ( ! function_exists( 'pique_woocommerce_wrapper_after' ) ) {
|
||||
/**
|
||||
* After Content.
|
||||
*
|
||||
* Closes the wrapping divs.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function pique_woocommerce_wrapper_after() {
|
||||
?>
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
<?php
|
||||
}
|
||||
}
|
||||
add_action( 'woocommerce_after_main_content', 'pique_woocommerce_wrapper_after' );
|
||||
|
||||
/**
|
||||
* Sample implementation of the WooCommerce Mini Cart.
|
||||
*
|
||||
* You can add the WooCommerce Mini Cart to header.php like so ...
|
||||
*
|
||||
<?php
|
||||
if ( function_exists( 'pique_woocommerce_header_cart' ) ) {
|
||||
pique_woocommerce_header_cart();
|
||||
}
|
||||
?>
|
||||
*/
|
||||
|
||||
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() {
|
||||
?>
|
||||
<a class="cart-contents" href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php esc_attr_e( 'View your shopping cart', 'pique' ); ?>">
|
||||
<?php /* translators: number of items in the mini cart. */ ?>
|
||||
<span class="amount"><i class="fa fa-shopping-cart"></i> <?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span>
|
||||
<span class="count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'pique' ), WC()->cart->get_cart_contents_count() ) );?></span>
|
||||
</a>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'pique_woocommerce_header_cart' ) ) {
|
||||
/**
|
||||
* Display Header Cart.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function pique_woocommerce_header_cart() {
|
||||
if ( is_cart() ) {
|
||||
$class = 'current-menu-item';
|
||||
} else {
|
||||
$class = '';
|
||||
}
|
||||
?>
|
||||
<ul id="site-header-cart" class="site-header-cart">
|
||||
<li class="<?php echo esc_attr( $class ); ?>">
|
||||
<?php pique_woocommerce_cart_link(); ?>
|
||||
</li>
|
||||
<li>
|
||||
<?php
|
||||
$instance = array(
|
||||
'title' => '',
|
||||
);
|
||||
|
||||
the_widget( 'WC_Widget_Cart', $instance );
|
||||
?>
|
||||
</li>
|
||||
</ul>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Place a cart icon with number of items and total cost in the menu bar.
|
||||
*
|
||||
* Source: http://wordpress.org/plugins/woocommerce-menu-bar-cart/
|
||||
*/
|
||||
add_filter( 'wp_nav_menu_items', 'pique_woocommerce_menu_cart', 10, 2 );
|
||||
|
||||
function pique_woocommerce_menu_cart( $menu, $args ) {
|
||||
|
||||
//
|
||||
if ( $args->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 = '<li class="menu-item site-header-cart right">' . $new_cart_link;
|
||||
$menu_item .= '<ul class="sub-menu"><li>' . $new_cart_widget . '</li></ul>';
|
||||
$menu_item .= '</li>';
|
||||
|
||||
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' );
|
383
pique/inc/wpcom-colors.php
Normal file
383
pique/inc/wpcom-colors.php
Normal file
|
@ -0,0 +1,383 @@
|
|||
<?php
|
||||
/* Custom Colors: Pique */
|
||||
|
||||
// Background
|
||||
add_color_rule( 'bg', '#ffffff', array(
|
||||
|
||||
// No contast needed
|
||||
array( 'body,
|
||||
input[type="text"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="search"]:focus,
|
||||
textarea:focus,
|
||||
.widget_price_filter .ui-slider .ui-slider-handle',
|
||||
'background-color' ),
|
||||
|
||||
// Primary button text colour—needs contrast against button background
|
||||
array( 'button, .archive .read-more a, .blog .read-more a, .search-results .read-more a, .button, input[type="button"], input[type="reset"], input[type="submit"], .site-header-cart .woocommerce.widget_shopping_cart .product_list_widget li a, ul.products li.product .added_to_cart, .woocommerce-tabs ul.tabs li:not(.active) a, .demo_store, .demo_store a, .site-header-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a, .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a',
|
||||
'color', 'link' ),
|
||||
|
||||
array( '.woocommerce-tabs ul.tabs li.active',
|
||||
'border-bottom-color' ),
|
||||
),
|
||||
__( 'Background Color' ) );
|
||||
|
||||
// Main neutral colour — chocolate brown, used for navbars and other stuff in different tints
|
||||
add_color_rule( 'txt', '#2d2a26', array(
|
||||
|
||||
// Panels and overlays can't be white, since our text overlaid on top is white
|
||||
array( '.pique-panel:nth-of-type(even),
|
||||
#masthead,
|
||||
.overlay,
|
||||
.widget_price_filter .ui-slider .ui-slider-range',
|
||||
'background-color', '#ffffff' ),
|
||||
|
||||
// Same deal with nav bar (text is always white)
|
||||
array( '.main-navigation',
|
||||
'background-color', '#ffffff' ),
|
||||
|
||||
// Sub-menus and borders should be a smidge darker
|
||||
array( '.main-navigation',
|
||||
'border-color', '-0.25' ),
|
||||
|
||||
array( '.main-navigation ul ul',
|
||||
'background-color', '-0.25' ),
|
||||
|
||||
array( '.main-navigation ul ul::before',
|
||||
'border-bottom-color', '-0.25', ),
|
||||
|
||||
array( '.main-navigation ul ul ul::before',
|
||||
'border-right-color', '-0.25', ),
|
||||
|
||||
// Ah... this needs contrast against something, but I don't know what!
|
||||
array( '.widget ul a,
|
||||
.woocommerce.widget .amount,
|
||||
.woocommerce.widget .reviewer,
|
||||
.woocommerce.widget .total,
|
||||
.woocommerce.widget .quantity,
|
||||
.woocommerce.widget li del',
|
||||
'color' ),
|
||||
|
||||
|
||||
// Social media links don't need contrast here
|
||||
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',
|
||||
'background-color' ),
|
||||
|
||||
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',
|
||||
'border-color' ),
|
||||
|
||||
array( '.widget.widget_wpcom_social_media_icons_widget ul a:hover::before, .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',
|
||||
'color' ),
|
||||
|
||||
),
|
||||
__( 'Panel & Menu Background' ) );
|
||||
|
||||
// Alternate panel colour (currently dark teal)
|
||||
add_color_rule( 'fg2', '#293942', array(
|
||||
// Again, this needs to contast against white so the text shows up
|
||||
array( '.pique-panel', 'background-color', '#ffffff', ),
|
||||
),
|
||||
__( 'Alternate Panel Background' ) );
|
||||
|
||||
// Primary Accent colour - light blue, used for headings and links and stuff
|
||||
add_color_rule( 'link', '#83b6cc', array(
|
||||
|
||||
// Need contrast against background (always some variant of white—page is a mostly-opaque layer on top of the background)
|
||||
array( 'h1, h2, h3, blockquote cite, h4, h5, h6,
|
||||
input[type="text"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="search"]:focus,
|
||||
textarea:focus,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
a,
|
||||
ul.products li.product .added_to_cart:hover,
|
||||
.woocommerce-message,
|
||||
.woocommerce-info,
|
||||
.woocommerce-error,
|
||||
.woocommerce-noreviews,
|
||||
p.no-comments,
|
||||
.site-header-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:hover,
|
||||
.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,
|
||||
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:hover,
|
||||
.widget_price_filter .ui-slider .ui-slider-handle',
|
||||
'color', '#ffffff' ),
|
||||
|
||||
// Needs contrast against footer background—always dark (opaque block covers the image)
|
||||
array( '.widget-title',
|
||||
'color', '#1f1d1a' ),
|
||||
|
||||
// Main navigation links -- need contrast against navbar colour
|
||||
array( '.main-navigation a:hover',
|
||||
'color', 'txt' ),
|
||||
|
||||
// Active and focused input types. Don't need contrast per se, but should match the text color, so we'll apply the same rules.
|
||||
array( 'input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus,
|
||||
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,
|
||||
button:active, .archive .read-more a:active, .blog .read-more a:active, .search-results .read-more a:active, .button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active,
|
||||
button:focus, .archive .read-more a:focus, .blog .read-more a:focus, .search-results .read-more a:focus, .button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus,
|
||||
ul.products li.product .added_to_cart:hover,
|
||||
.woocommerce-tabs ul.tabs,
|
||||
.woocommerce-tabs ul.tabs li',
|
||||
'border-color', '#ffffff' ),
|
||||
|
||||
// Let's make active buttons use a similar shade for the background, but we'll dial back the opacity
|
||||
array( 'button:active, .button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active,
|
||||
.archive .read-more a:active, .blog .read-more a:active, .search-results .read-more a:active,
|
||||
button:focus, .button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus,
|
||||
.archive .read-more a:focus, .blog .read-more a:focus, .search-results .read-more a:focus',
|
||||
'background-color', 0.05 ),
|
||||
|
||||
// We don't really need any contast here!
|
||||
array( '.widget, .pique-panel-content form, .overlay, .single-product div.product .related',
|
||||
'border-top-color', '#ffffff' ),
|
||||
|
||||
array( '.comment-navigation, .posts-navigation, .post-navigation,
|
||||
table.shop_table thead tr, table.shop_table_responsive thead tr,
|
||||
.product .onsale,
|
||||
.product .onsale:after,
|
||||
.product .onsale:before',
|
||||
'border-color', '#ffffff' ),
|
||||
|
||||
// Post navigation -- needs contrast against background
|
||||
array( '.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, .product .onsale',
|
||||
'color', '#ffffff' ),
|
||||
|
||||
// Spans should be a smidge lighter
|
||||
array( '.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', '-0.25', ),
|
||||
|
||||
// Make infinite span hovers a smidge lighter, too
|
||||
array( '.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', '-0.25', ),
|
||||
|
||||
// Typically appears on top of images, thus needs... no contrast?
|
||||
array( '.pique-template-testimonials .pique-testimonials article .entry-content cite,
|
||||
.site-branding .site-title,
|
||||
#pique-hero .pique-panel-content .entry-content em,
|
||||
.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,
|
||||
.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,
|
||||
.star-rating span:before,
|
||||
p.stars:hover a:before,
|
||||
p.stars.selected a.active:before,
|
||||
p.stars.selected a:not(.active):before,
|
||||
.woocommerce-tabs ul.tabs li:not(.active):hover a,
|
||||
.woocommerce-tabs ul.tabs li a,
|
||||
.woocommerce-MyAccount-content .woocommerce-info,
|
||||
.widget_price_filter .ui-slider .ui-slider-handle:hover,
|
||||
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active',
|
||||
'color' ),
|
||||
|
||||
array( '.comment-list .children', 'border-left-color' ),
|
||||
|
||||
// Button backgrounds -- need contrast with nothing
|
||||
array( 'button,
|
||||
.archive .read-more a,
|
||||
.blog .read-more a,
|
||||
.search-results .read-more a,
|
||||
.button,
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"],
|
||||
ul.products li.product .added_to_cart,
|
||||
.woocommerce-tabs ul.tabs li:not(.active),
|
||||
.demo_store',
|
||||
'background' ),
|
||||
),
|
||||
__( 'Main Accent' ) );
|
||||
|
||||
// Secondary Accent colour: a sort of beige/tan used here and there
|
||||
add_color_rule( 'fg1', '#e9d5c0', array(
|
||||
|
||||
// Contrast against background--again, we fake this by using white
|
||||
array( 'a:hover, a:focus, a:active,
|
||||
.posts-navigation a,
|
||||
.site-main .posts-navigation a,
|
||||
.site-footer a,
|
||||
.pique-template-testimonials .pique-testimonials h2,
|
||||
.site-header-cart .woocommerce.widget_shopping_cart .product_list_widget li a:hover,
|
||||
.site-header-cart .woocommerce.widget .amount,
|
||||
.site-header-cart .woocommerce.widget .reviewer,
|
||||
.site-header-cart .woocommerce.widget .total,
|
||||
.site-header-cart .woocommerce.widget .quantity,
|
||||
.woocommerce-MyAccount-navigation li.is-active a,
|
||||
.footer-widget-area .woocommerce.widget .amount,
|
||||
.footer-widget-area .woocommerce.widget .reviewer,
|
||||
.footer-widget-area .woocommerce.widget .total,
|
||||
.footer-widget-area .woocommerce.widget .quantity,
|
||||
.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',
|
||||
'color', '#ffffff' ),
|
||||
|
||||
// Navigation needs to contrast against navbar
|
||||
array( '.main-navigation .current_page_item > 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' );
|
55
pique/inc/wpcom.php
Normal file
55
pique/inc/wpcom.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
/**
|
||||
* WordPress.com-specific functions and definitions
|
||||
* This file is centrally included from `wp-content/mu-plugins/wpcom-theme-compat.php`.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
/**
|
||||
* Adds support for WP.com print styles and responsive videos
|
||||
*/
|
||||
function pique_theme_support() {
|
||||
global $themecolors;
|
||||
|
||||
/**
|
||||
* Set a default theme color array for WP.com.
|
||||
*
|
||||
* @global array $themecolors
|
||||
*/
|
||||
if ( ! isset( $themecolors ) ) :
|
||||
$themecolors = array(
|
||||
'bg' => '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' );
|
51
pique/index.php
Normal file
51
pique/index.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
/**
|
||||
* The main template file.
|
||||
*
|
||||
* This is the most generic template file in a WordPress theme
|
||||
* and one of the two required files for a theme (the other being style.css).
|
||||
* It is used to display a page when nothing more specific matches a query.
|
||||
* E.g., it puts together the home page when no home.php file exists.
|
||||
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php if ( is_home() && ! is_front_page() ) : ?>
|
||||
<header>
|
||||
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
|
||||
</header>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<?php /* Start the Loop */ ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
<?php
|
||||
/*
|
||||
* Include the Post-Format-specific template for the content.
|
||||
* If you want to override this in a child theme, then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'components/content', get_post_format() );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php the_posts_navigation(); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'none' ); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_footer(); ?>
|
BIN
pique/languages/de.mo
Normal file
BIN
pique/languages/de.mo
Normal file
Binary file not shown.
345
pique/languages/de.po
Normal file
345
pique/languages/de.po
Normal file
|
@ -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? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Bereit, um deinen ersten Beitrag zu veröffentlichen? <a href=\"%1$s\">Starte hier</a>."
|
||||
|
||||
#: 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 <span class=\"meta-nav\">→</span>"
|
||||
msgstr "%s weiterlesen <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: 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."
|
BIN
pique/languages/fr.mo
Normal file
BIN
pique/languages/fr.mo
Normal file
Binary file not shown.
332
pique/languages/fr.po
Normal file
332
pique/languages/fr.po
Normal file
|
@ -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? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Prêt à publier votre premier article ? <a href=\"%1$s\">Lancez-vous</a> !"
|
||||
|
||||
#: 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 <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Lire la suite <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: 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."
|
BIN
pique/languages/nl.mo
Normal file
BIN
pique/languages/nl.mo
Normal file
Binary file not shown.
347
pique/languages/nl.po
Normal file
347
pique/languages/nl.po
Normal file
|
@ -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? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Klaar om je eerste bericht te publiceren? <a href=\"%1$s\">Start hier</a>."
|
||||
|
||||
#: 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 <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Lees verder %s <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: 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."
|
BIN
pique/languages/no.mo
Normal file
BIN
pique/languages/no.mo
Normal file
Binary file not shown.
354
pique/languages/no.po
Normal file
354
pique/languages/no.po
Normal file
|
@ -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? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Klar for å publisere ditt første innlegg? <a href=\"%1$s\">Kom i gang her</a>."
|
||||
|
||||
#: 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 <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Les mer %s <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: 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."
|
385
pique/languages/pique.pot
Normal file
385
pique/languages/pique.pot
Normal file
|
@ -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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 <span class=\"meta-nav\">→</span>"
|
||||
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? <a href=\"%1$s\">Get started here</a>."
|
||||
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 ""
|
BIN
pique/languages/pt-br.mo
Normal file
BIN
pique/languages/pt-br.mo
Normal file
Binary file not shown.
358
pique/languages/pt-br.po
Normal file
358
pique/languages/pt-br.po
Normal file
|
@ -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? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Pronto para publicar seu primeiro post? <a href=\"%1$s\">Comece aqui</a>."
|
||||
|
||||
#: 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 <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Continuar lendo %s <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: 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."
|
7
pique/languages/readme.txt
Normal file
7
pique/languages/readme.txt
Normal file
|
@ -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
|
BIN
pique/languages/ro.mo
Normal file
BIN
pique/languages/ro.mo
Normal file
Binary file not shown.
360
pique/languages/ro.po
Normal file
360
pique/languages/ro.po
Normal file
|
@ -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? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Gata să publici primul tău articol? <a href=\"%1$s\">Poți începe aici</a>."
|
||||
|
||||
#: 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 <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Citește în continuare %s <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: 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ă."
|
BIN
pique/languages/ru.mo
Normal file
BIN
pique/languages/ru.mo
Normal file
Binary file not shown.
329
pique/languages/ru.po
Normal file
329
pique/languages/ru.po
Normal file
|
@ -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? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Готовы опубликовать свою первую запись? <a href=\"%1$s\">Начните отсюда</a>."
|
||||
|
||||
#: 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 <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Читать далее %s <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: 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 "Ой! Страница не найдена."
|
29
pique/page-templates/template-full-width.php
Normal file
29
pique/page-templates/template-full-width.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
/**
|
||||
* Template Name: Full-width Page
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'page' ); ?>
|
||||
|
||||
<?php
|
||||
// If comments are open or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php endwhile; // End of the loop. ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_footer(); ?>
|
32
pique/page-templates/template-grid.php
Normal file
32
pique/page-templates/template-grid.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
/**
|
||||
* Template Name: Grid Page
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'page' ); ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'grid' ); ?>
|
||||
|
||||
<?php
|
||||
// If comments are open or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php endwhile; // End of the loop. ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
51
pique/page-templates/template-testimonials.php
Normal file
51
pique/page-templates/template-testimonials.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
/**
|
||||
* Template Name: Testimonials
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'page' ); ?>
|
||||
|
||||
<?php // List all testimonials in order
|
||||
$testimonials = new WP_Query( array(
|
||||
'post_type' => 'jetpack-testimonial',
|
||||
'order' => 'ASC',
|
||||
'orderby' => 'order',
|
||||
'posts_per_page' => 24,
|
||||
'no_found_rows' => true,
|
||||
) );
|
||||
?>
|
||||
|
||||
<?php if ( $testimonials->have_posts() ) : ?>
|
||||
<div class="pique-testimonials pique-grid-two">
|
||||
<?php
|
||||
while ( $testimonials->have_posts() ) : $testimonials->the_post();
|
||||
get_template_part( 'components/content', 'testimonial' );
|
||||
endwhile;
|
||||
wp_reset_postdata();
|
||||
?>
|
||||
</div><!-- .pique-testimonials -->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
// If comments are open or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php endwhile; // End of the loop. ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
35
pique/page.php
Normal file
35
pique/page.php
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying all pages.
|
||||
*
|
||||
* This is the template that displays all pages by default.
|
||||
* Please note that this is the WordPress construct of pages
|
||||
* and that other 'pages' on your WordPress site will use a
|
||||
* different template.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'page' ); ?>
|
||||
|
||||
<?php // If comments are open or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php endwhile; // End of the loop. ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
131
pique/readme.txt
Normal file
131
pique/readme.txt
Normal file
|
@ -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:
|
||||
<a href="#" class="button">Learn more</a>
|
||||
<a href="#" class="minimal button">Try it out</a>
|
||||
|
||||
= 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.
|
||||
|
||||
<div class="overlay alignright">This overlay will be aligned to the right-hand side of its panel. You can add any content you'd like here.</div>
|
||||
|
||||
= 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
|
157
pique/rtl.css
Normal file
157
pique/rtl.css
Normal file
|
@ -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;
|
||||
}
|
BIN
pique/screenshot.png
Normal file
BIN
pique/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 428 KiB |
45
pique/search.php
Normal file
45
pique/search.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying search results pages.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<section id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<!-- INSERT: search-header/search-header.php -->
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'pique' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<?php /* Start the Loop */ ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php
|
||||
/**
|
||||
* Run the loop for the search to output the results.
|
||||
* If you want to overload this in a child theme then include a file
|
||||
* called content-search.php and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'components/content', get_post_format() );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php the_posts_navigation(); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'none' ); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
<?php get_footer(); ?>
|
30
pique/sidebar-footer.php
Normal file
30
pique/sidebar-footer.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* The sidebar containing the footer page widget areas.
|
||||
*
|
||||
* If no active widgets in any of the sidebars, they will be hidden completely.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
if ( is_active_sidebar( 'sidebar-2' ) || is_active_sidebar( 'sidebar-3' ) || is_active_sidebar( 'sidebar-4' ) ) : ?>
|
||||
<div id="tertiary" class="widget-area footer-widget-area" role="complementary">
|
||||
<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
|
||||
<div id="widget-area-2" class="widget-area">
|
||||
<?php dynamic_sidebar( 'sidebar-2' ); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
|
||||
<div id="widget-area-3" class="widget-area">
|
||||
<?php dynamic_sidebar( 'sidebar-3' ); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( is_active_sidebar( 'sidebar-4' ) ) : ?>
|
||||
<div id="widget-area-4" class="widget-area">
|
||||
<?php dynamic_sidebar( 'sidebar-4' ); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div><!-- #tertiary -->
|
||||
<?php endif; ?>
|
12
pique/sidebar.php
Normal file
12
pique/sidebar.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
/**
|
||||
* The sidebar containing the main widget area.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
|
||||
<div id="secondary" class="widget-area" role="complementary">
|
||||
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
||||
</div><!-- #secondary -->
|
||||
<?php endif; ?>
|
36
pique/single.php
Normal file
36
pique/single.php
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying all single posts.
|
||||
*
|
||||
* @package Pique
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'components/content', 'single' ); ?>
|
||||
|
||||
<?php the_post_navigation( array(
|
||||
'prev_text' => '<span>' . esc_html__( 'Previous', 'pique' ) . '</span> %title',
|
||||
'next_text' => '<span>' . esc_html__( 'Next', 'pique' ) . '</span> %title',
|
||||
) ); ?>
|
||||
|
||||
<?php
|
||||
// If comments are open or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php endwhile; // End of the loop. ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue