瀏覽代碼

Initial commit of Toujours

alaczek 7 年之前
父節點
當前提交
bbe0921700
共有 74 個文件被更改,包括 13970 次插入0 次删除
  1. 57 0
      toujours/404.php
  2. 51 0
      toujours/archive.php
  3. 89 0
      toujours/comments.php
  4. 284 0
      toujours/editor-style.css
  5. 41 0
      toujours/footer.php
  6. 415 0
      toujours/functions.php
  7. 二進制
      toujours/genericons/Genericons.eot
  8. 537 0
      toujours/genericons/Genericons.svg
  9. 二進制
      toujours/genericons/Genericons.ttf
  10. 二進制
      toujours/genericons/Genericons.woff
  11. 21 0
      toujours/genericons/genericons.css
  12. 31 0
      toujours/guestbook.php
  13. 96 0
      toujours/header.php
  14. 二進制
      toujours/images/toujoursbackground20160105.png
  15. 74 0
      toujours/inc/custom-header.php
  16. 72 0
      toujours/inc/customizer.php
  17. 69 0
      toujours/inc/extras.php
  18. 83 0
      toujours/inc/headstart/en.json
  19. 733 0
      toujours/inc/jetpack-fonts.php
  20. 116 0
      toujours/inc/jetpack.php
  21. 217 0
      toujours/inc/style-wpcom.css
  22. 154 0
      toujours/inc/template-tags.php
  23. 190 0
      toujours/inc/wpcom-colors.php
  24. 50 0
      toujours/inc/wpcom.php
  25. 56 0
      toujours/index.php
  26. 64 0
      toujours/js/customizer.js
  27. 120 0
      toujours/js/global.js
  28. 893 0
      toujours/js/imagesloaded.pk.js
  29. 1195 0
      toujours/js/jquery.flexslider.js
  30. 81 0
      toujours/js/navigation.js
  31. 33 0
      toujours/js/skip-link-focus-fix.js
  32. 二進制
      toujours/languages/de.mo
  33. 207 0
      toujours/languages/de.po
  34. 二進制
      toujours/languages/fa.mo
  35. 246 0
      toujours/languages/fa.po
  36. 二進制
      toujours/languages/fr.mo
  37. 234 0
      toujours/languages/fr.po
  38. 二進制
      toujours/languages/he.mo
  39. 208 0
      toujours/languages/he.po
  40. 二進制
      toujours/languages/hi.mo
  41. 197 0
      toujours/languages/hi.po
  42. 二進制
      toujours/languages/it.mo
  43. 243 0
      toujours/languages/it.po
  44. 二進制
      toujours/languages/ja.mo
  45. 242 0
      toujours/languages/ja.po
  46. 二進制
      toujours/languages/no.mo
  47. 213 0
      toujours/languages/no.po
  48. 二進制
      toujours/languages/pt-br.mo
  49. 243 0
      toujours/languages/pt-br.po
  50. 二進制
      toujours/languages/ro.mo
  51. 248 0
      toujours/languages/ro.po
  52. 二進制
      toujours/languages/sq.mo
  53. 235 0
      toujours/languages/sq.po
  54. 279 0
      toujours/languages/toujours.pot
  55. 37 0
      toujours/page.php
  56. 83 0
      toujours/readme.txt
  57. 500 0
      toujours/rtl.css
  58. 二進制
      toujours/screenshot.png
  59. 47 0
      toujours/search.php
  60. 17 0
      toujours/sidebar.php
  61. 39 0
      toujours/single.php
  62. 3915 0
      toujours/style.css
  63. 79 0
      toujours/template-parts/content-audio.php
  64. 70 0
      toujours/template-parts/content-gallery.php
  65. 69 0
      toujours/template-parts/content-link.php
  66. 34 0
      toujours/template-parts/content-none.php
  67. 42 0
      toujours/template-parts/content-page.php
  68. 69 0
      toujours/template-parts/content-quote.php
  69. 66 0
      toujours/template-parts/content-recent-posts.php
  70. 41 0
      toujours/template-parts/content-search.php
  71. 31 0
      toujours/template-parts/content-slideshow.php
  72. 64 0
      toujours/template-parts/content-status.php
  73. 81 0
      toujours/template-parts/content-video.php
  74. 69 0
      toujours/template-parts/content.php

+ 57 - 0
toujours/404.php

@@ -0,0 +1,57 @@
+<?php
+/**
+ * The template for displaying 404 pages (not found).
+ *
+ * @link https://codex.wordpress.org/Creating_an_Error_404_Page
+ *
+ * @package Toujours
+ */
+
+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&rsquo;t be found.', 'toujours' ); ?></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?', 'toujours' ); ?></p>
+
+					<?php get_search_form(); ?>
+
+					<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
+
+					<?php if ( toujours_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', 'toujours' ); ?></h2>
+						<ul>
+						<?php
+							wp_list_categories( array(
+								'orderby'    => 'count',
+								'order'      => 'DESC',
+								'show_count' => 1,
+								'title_li'   => '',
+								'number'     => 10,
+							) );
+						?>
+						</ul>
+					</div><!-- .widget -->
+					<?php endif; ?>
+
+					<?php
+						$archive_content = '<p>' . esc_html__( 'Try looking in the monthly archives.', 'toujours' ) . '</p>';
+						the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
+					?>
+
+					<?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>
+
+				</div><!-- .page-content -->
+			</section><!-- .error-404 -->
+
+		</main><!-- #main -->
+	</div><!-- #primary -->
+
+<?php get_footer(); ?>

+ 51 - 0
toujours/archive.php

@@ -0,0 +1,51 @@
+<?php
+/**
+ * The template for displaying archive pages.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+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( 'template-parts/content', get_post_format() );
+				?>
+
+			<?php endwhile; ?>
+
+			<?php the_posts_navigation(); ?>
+
+		<?php else : ?>
+
+			<?php get_template_part( 'template-parts/content', 'none' ); ?>
+
+		<?php endif; ?>
+
+		</main><!-- #main -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 89 - 0
toujours/comments.php

@@ -0,0 +1,89 @@
+<?php
+/**
+ * The template for displaying comments.
+ *
+ * This is the template that displays the area of the page that contains both the current comments
+ * and the comment form.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+/*
+ * 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 &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'toujours' ) ),
+					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', 'toujours' ); ?></h2>
+			<div class="nav-links">
+
+				<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'toujours' ) ); ?></div>
+				<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'toujours' ) ); ?></div>
+
+			</div><!-- .nav-links -->
+		</nav><!-- #comment-nav-above -->
+		<?php endif; // Check for comment navigation. ?>
+
+		<ol class="comment-list">
+			<?php
+				$max_depth = '';
+				// set comment levels to one if guestbook template
+				if ( is_page_template( 'guestbook.php' ) ) {
+					$max_depth = 1;
+				}
+				wp_list_comments( array(
+					'style' => 'ol',
+					'short_ping' => true,
+					'avatar_size' => 90,
+					'max_depth' => $max_depth,
+				) );
+			?>
+		</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', 'toujours' ); ?></h2>
+			<div class="nav-links">
+
+				<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'toujours' ) ); ?></div>
+				<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'toujours' ) ); ?></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() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
+	?>
+		<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'toujours' ); ?></p>
+	<?php endif; ?>
+
+	<?php comment_form(); ?>
+
+</div><!-- #comments -->

+ 284 - 0
toujours/editor-style.css

@@ -0,0 +1,284 @@
+/*
+Theme Name: Toujours
+
+Editor styles
+*/
+
+body#tinymce.wp-editor {
+	width: 760px;
+}
+
+body#tinymce.wp-editor,
+#tinymce.wp-editor button,
+#tinymce.wp-editor input,
+#tinymce.wp-editor select,
+#tinymce.wp-editor textarea {
+	color: #404040;
+	font-family: "Merriweather", Georgia, "Times New Roman", serif;
+	font-size: 17px;
+	line-height: 1.8;
+}
+
+#tinymce.wp-editor h1,
+#tinymce.wp-editor h2,
+#tinymce.wp-editor h3,
+#tinymce.wp-editor h4,
+#tinymce.wp-editor h5,
+#tinymce.wp-editor h6 {
+	clear: both;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-weight: 300;
+	line-height: 1.2;
+	margin: 0;
+	padding: 0 0 15px;
+}
+
+#tinymce.wp-editor h1 {
+	font-size: 40px;
+}
+
+#tinymce.wp-editor h2 {
+	font-size: 35px;
+}
+
+#tinymce.wp-editor h3 {
+	font-size: 30px;
+}
+
+#tinymce.wp-editor h4 {
+	font-size: 20px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+#tinymce.wp-editor h5 {
+	font-size: 18px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+#tinymce.wp-editor h6 {
+	font-size: 16px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+#tinymce.wp-editor p {
+	margin: 0 0 1.5em;
+	padding: 0;
+}
+
+#tinymce.wp-editor dfn,
+#tinymce.wp-editor cite,
+#tinymce.wp-editor em,
+#tinymce.wp-editor i {
+	font-style: italic;
+}
+
+#tinymce.wp-editor blockquote {
+	color: #888;
+	border-left: 4px solid #f0f0f0;
+	margin: 0 0 1.5em;
+	padding: 0 0 0 30px;
+}
+
+#tinymce.wp-editor blockquote p:last-child {
+	margin-bottom: 0;
+}
+
+#tinymce.wp-editor blockquote cite {
+	display: block;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 18px;
+	font-style: normal;
+	font-weight: 300;
+	margin-top: 5px;
+}
+
+#tinymce.wp-editor address {
+	margin: 0 0 1.5em;
+}
+
+#tinymce.wp-editor pre {
+	background: #333;
+	color: #ddd;
+	font-family: "Courier 10 Pitch", Courier, monospace;
+	line-height: 1.6;
+	margin-bottom: 1.6em;
+	max-width: 100%;
+	overflow: auto;
+	padding: 1.6em;
+	position: relative;
+}
+
+#tinymce.wp-editor pre:before {
+	border: 1px solid rgba(255, 255, 255, 0.4);
+	bottom: 3px;
+	content: "";
+	display: block;
+	left: 3px;
+	position: absolute;
+	right: 3px;
+	top: 3px;
+}
+
+#tinymce.wp-editor code,
+#tinymce.wp-editor kbd,
+#tinymce.wp-editor tt,
+#tinymce.wp-editor var {
+	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
+	font-size: 15px;
+	font-size: 0.9375rem;
+}
+
+#tinymce.wp-editor abbr,
+#tinymce.wp-editor acronym {
+	border-bottom: 1px dotted #666;
+}
+
+#tinymce.wp-editor mark,
+#tinymce.wp-editor ins {
+	background: #fff9c0;
+	text-decoration: none;
+}
+
+#tinymce.wp-editor big {
+	font-size: 125%;
+}
+
+#tinymce.wp-editor blockquote:before,
+#tinymce.wp-editor blockquote:after,
+#tinymce.wp-editor q:before,
+#tinymce.wp-editor q:after {
+	content: "";
+}
+
+#tinymce.wp-editor blockquote,
+#tinymce.wp-editor q {
+	quotes: "" "";
+}
+
+#tinymce.wp-editor blockquote {
+	font-size: 120%;
+	font-style: italic;
+	position: relative;
+}
+
+#tinymce.wp-editor blockquote blockquote {
+	font-size: 100%;
+}
+
+#tinymce.wp-editor hr {
+	background-color: #ccc;
+	border: 0;
+	height: 1px;
+	margin-bottom: 1.5em;
+}
+
+#tinymce.wp-editor ul,
+#tinymce.wp-editor ol {
+	margin: 0 0 30px;
+}
+
+#tinymce.wp-editor ul {
+	list-style: disc;
+}
+
+#tinymce.wp-editor ol {
+	list-style: decimal;
+}
+
+#tinymce.wp-editor li > ul,
+#tinymce.wp-editor li > ol {
+	margin-bottom: 0;
+	margin-left: 1.5em;
+}
+
+#tinymce.wp-editor dl {
+	margin-bottom: 30px;
+	margin-top: 0;
+}
+
+#tinymce.wp-editor dt {
+	font-weight: bold;
+}
+
+#tinymce.wp-editor dd {
+	margin: 0 1.5em 1.5em;
+}
+
+#tinymce.wp-editor table {
+	border-bottom: 4px double #e1e1e1;
+	border-top: 4px double #e1e1e1;
+	margin: 0 0 30px;
+	max-width: 100%;
+	overflow: auto;
+	width: 100%;
+}
+
+#tinymce.wp-editor tr {
+	border-bottom: 1px solid #e1e1e1;
+}
+
+#tinymce.wp-editor th,
+#tinymce.wp-editor td {
+	font-size: 90%;
+	padding: 10px;
+	text-align: left;
+}
+
+#tinymce.wp-editor thead {
+	font-weight: 700;
+}
+
+#tinymce.wp-editor a {
+	color: #2590ec;
+}
+
+#tinymce.wp-editor a:hover,
+#tinymce.wp-editor a:active {
+	outline: 0;
+}
+
+#tinymce.wp-editor .alignleft {
+	display: inline;
+	float: left;
+	margin: 0 1.5em 1em 0;
+}
+
+#tinymce.wp-editor .alignright {
+	display: inline;
+	float: right;
+	margin: 0 0 1em 1.5em;
+}
+
+#tinymce.wp-editor .aligncenter {
+	clear: both;
+	display: block;
+	margin: 0 auto 1em;
+}
+
+#tinymce.wp-editor .wp-caption {
+	color: #999;
+	font-size: 14px;
+	font-style: italic;
+	margin-bottom: 1.5em;
+	max-width: 100%;
+}
+
+#tinymce.wp-editor .wp-caption img[class*="wp-image-"] {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+#tinymce.wp-editor .wp-caption .wp-caption-text {
+	margin: 0.8075em 0;
+}
+
+#tinymce.wp-editor .wp-caption-text {
+	text-align: center;
+}

+ 41 - 0
toujours/footer.php

@@ -0,0 +1,41 @@
+<?php
+/**
+ * The template for displaying the footer.
+ *
+ * Contains the closing of the #content div and all content after.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
+ *
+ * @package Toujours
+ */
+
+?>
+		</div><!-- .wrap -->
+	</div><!-- #content -->
+
+	<?php if ( is_active_sidebar( 'footer' ) ) { ?>
+		<div id="footer-widgets" class="<?php echo esc_attr( toujours_widget_column_class( 'footer' ) ); ?>" role="complementary">
+			<div class="wrap">
+				<div class="grid-layout">
+					<?php dynamic_sidebar( 'footer' ); ?>
+				</div>
+			</div><!-- .wrap -->
+		</div><!-- #footer-widgets -->
+	<?php } ?>
+
+	<footer id="colophon" class="site-footer" role="contentinfo">
+		<div class="wrap">
+			<?php toujours_social_menu(); ?>
+			<div class="site-info">
+				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'toujours' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'toujours' ), 'WordPress' ); ?></a>
+				<span class="sep"> | </span>
+				<?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'toujours' ), 'Toujours', '<a href="https://wordpress.com/themes/" rel="designer">Automattic</a>' ); ?>
+			</div><!-- .site-info -->
+		</div><!-- .wrap -->
+	</footer><!-- #colophon -->
+</div><!-- #page -->
+
+<?php wp_footer(); ?>
+
+</body>
+</html>

+ 415 - 0
toujours/functions.php

@@ -0,0 +1,415 @@
+<?php
+/**
+ * toujours functions and definitions.
+ *
+ * @link https://developer.wordpress.org/themes/basics/theme-functions/
+ *
+ * @package Toujours
+ */
+
+if ( ! function_exists( 'toujours_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 toujours_setup() {
+	/*
+	 * Make theme available for translation.
+	 * Translations can be filed in the /languages/ directory.
+	 * If you're building a theme based on toujours, use a find and replace
+	 * to change 'toujours' to the name of your theme in all the template files.
+	 */
+	load_theme_textdomain( 'toujours', 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' );
+
+	/*
+	 * Editor styles
+	 */
+	add_editor_style( array( get_template_directory_uri() . '/editor-style.css', toujours_fonts_url() ) );
+
+	/*
+	 * Enable support for Post Thumbnails on posts and pages.
+	 *
+	 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
+	 */
+	add_theme_support( 'post-thumbnails' );
+
+	/*
+	 * Custom image sizes
+	 */
+	add_image_size( 'toujours-banner', 1160, 600, true );
+	add_image_size( 'toujours-featured', 940, 9999 );
+	add_image_size( 'toujours-trio', 680, 383, true ); /* image size larger for mobile */
+
+	/*
+	 * Register menu locations
+	 *
+	 * Include check to see if jetpack_social_menu supported
+	 */
+	if ( ! function_exists( 'jetpack_social_menu' ) ) {
+		register_nav_menus( array(
+			'primary' => esc_html__( 'Primary Menu', 'toujours' ),
+			'social' => esc_html__( 'Social Menu', 'toujours' ),
+		) );
+	} else {
+		register_nav_menus( array(
+			'primary' => esc_html__( 'Primary Menu', 'toujours' ),
+		) );
+	}
+
+	/*
+	 * 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 https://developer.wordpress.org/themes/functionality/post-formats/
+	 */
+	add_theme_support( 'post-formats', array(
+		'aside',
+		'audio',
+		'gallery',
+		'image',
+		'video',
+		'quote',
+		'link',
+		'status',
+	) );
+
+	// Set up the WordPress core custom background feature.
+	add_theme_support( 'custom-background', apply_filters( 'toujours_custom_background_args', array(
+		'default-color' => 'eeeeee',
+
+		/*
+		 * We're using a unique filename for the background image
+		 * to avoid users uploading a file with the same filename
+		 * and avoiding conflict with the `user-background` body_class
+		 * in inc/extras.php and assets/js/customizer.js
+		 */
+
+	 	'default-image' => esc_url( get_template_directory_uri() ) . '/images/toujoursbackground20160105.png',
+	) ) );
+}
+endif; // toujours_setup
+add_action( 'after_setup_theme', 'toujours_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 toujours_content_width() {
+	$GLOBALS['content_width'] = apply_filters( 'toujours_content_width', 760 );
+}
+add_action( 'after_setup_theme', 'toujours_content_width', 0 );
+
+
+function toujours_excerpt_length( $length ) {
+	return 35;
+}
+add_filter( 'excerpt_length', 'toujours_excerpt_length', 999 );
+
+/**
+ * Replaces the excerpt "more" text by a link
+ */
+if ( ! function_exists( 'toujours_excerpt_continue_reading' ) ) {
+	function toujours_excerpt_continue_reading() {
+		return '&hellip; <a href="' . esc_url( get_permalink() ) . '">' . sprintf( esc_html__( 'More', 'toujours' ), '<span class="screen-reader-text"> "' . get_the_title() . '"</span>' ) . '</a>';
+	}
+}
+add_filter( 'excerpt_more', 'toujours_excerpt_continue_reading' );
+
+/**
+ *
+ */
+function toujours_recent_three_posts() {
+
+	// Return early if this feature has been disabled.
+	if ( ! get_theme_mod( 'toujours_recent_posts' ) ) {
+		return false;
+	}
+
+	if ( false === ( $latest_post_ids = get_transient( 'latest_post_ids' ) ) ) {
+		/*
+		Check if Featured Content option 'Display tag content in all listings' is checked
+		If not, exclude those posts from the three recent posts as well
+		*/
+		$exclude_tag = '';
+		if ( toujours_has_banner_posts( 1 ) ) {
+			$featured_options = get_option( 'featured-content' );
+			$featured_tag_id = $featured_options[ 'tag-id' ];
+			$featured_show = $featured_options[ 'show-all' ];
+
+			if ( 0 == $featured_show ) {
+				$exclude_tag = $featured_tag_id;
+			}
+		}
+
+		$args = array(
+			'ignore_sticky_posts' => 1,
+			'post__not_in'   => get_option( 'sticky_posts' ),
+			'posts_per_page' => '3',
+			'tag__not_in' => array( $exclude_tag ),
+		);
+		$latest = new WP_Query();
+		$latest->query( $args );
+
+		while ( $latest->have_posts() ) {
+			$latest->the_post();
+			$latest_post_ids[] = $latest->post->ID;
+		}
+		wp_reset_postdata();
+	}
+
+	return $latest_post_ids;
+}
+add_filter( 'toujours-recent-posts', 'toujours_recent_three_posts' );
+
+
+/**
+ * Filter the home page posts, and remove any featured post IDs from it. Hooked
+ * onto the 'pre_get_posts' action, this changes the parameters of the query
+ * before it gets any posts.
+ *
+ * @global array $featured_post_id
+ * @param WP_Query $query
+ * @return WP_Query Possibly modified WP_query
+ */
+function toujours_home_posts( $query = false ) {
+	// Bail if not home, not a query, not main query.
+	if ( ! is_home() || ! is_a( $query, 'WP_Query' ) || ! $query->is_main_query() ) {
+		return $query;
+	}
+
+	$recent = apply_filters( 'toujours-recent-posts', false );
+
+	// Bail if no featured posts.
+	if ( ! $recent ) {
+		return $query;
+	}
+
+	// Exclude featured posts from the main query.
+	$query->query_vars['post__not_in'] = (array) $recent;
+
+	return $query;
+}
+add_action( 'pre_get_posts', 'toujours_home_posts' );
+
+
+/**
+ * Wrap avatars in HTML for easier styling
+ */
+function toujours_get_avatar( $avatar ) {
+	if( ! is_admin() ) {
+		$avatar = '<span class="avatar-container"><span class="avatar-crop">' . $avatar . '</span></span>';
+	}
+	return $avatar;
+}
+add_filter( 'get_avatar', 'toujours_get_avatar', 10, 5 );
+
+/**
+ * Enqueuing Google Fonts
+ */
+function toujours_fonts_url() {
+	$fonts_url = '';
+
+	/* Translators: If there are characters in your language that are not
+	* supported by Alegreya Sans, translate this to 'off'. Do not translate
+	* into your own language.
+	*/
+	$alegreya_sans = esc_html_x( 'on', 'Alegreya Sans font: on or off', 'toujours' );
+
+	/* Translators: If there are characters in your language that are not
+	* supported by Open Sans, translate this to 'off'. Do not translate
+	* into your own language.
+	*/
+	$merriweather = esc_html_x( 'on', 'Merriweather font: on or off', 'toujours' );
+
+	if ( 'off' !== $alegreya_sans || 'off' !== $merriweather ) {
+		$font_families = array();
+
+		if ( 'off' !== $alegreya_sans ) {
+			$font_families[] = 'Alegreya Sans:300,500,300italic,500italic';
+		}
+
+		if ( 'off' !== $merriweather ) {
+			$font_families[] = 'Merriweather:700italic,400,400italic,700,600';
+		}
+
+		$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' );
+	}
+
+	return esc_url_raw( $fonts_url );
+}
+
+/**
+ * Register widget area.
+ *
+ * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
+ */
+function toujours_widgets_init() {
+	register_sidebar( array(
+		'name'          => esc_html__( 'Sidebar', 'toujours' ),
+		'id'            => 'sidebar-1',
+		'description'   => '',
+		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
+		'after_widget'  => '</aside>',
+		'before_title'  => '<h3 class="widget-title">',
+		'after_title'   => '</h3>',
+	) );
+
+	register_sidebar( array(
+		'name'          => esc_html__( 'Footer', 'toujours' ),
+		'id'            => 'footer',
+		'description'   => '',
+		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
+		'after_widget'  => '</aside>',
+		'before_title'  => '<h3 class="widget-title">',
+		'after_title'   => '</h3>',
+	) );
+}
+add_action( 'widgets_init', 'toujours_widgets_init' );
+
+
+
+/**
+ * Counts the number of widgets in a specific sidebar
+ *
+ * @param   string  $id
+ * @return  integer number of widgets in the sidebar
+ */
+function toujours_count_widgets( $id ) {
+	$count = 0;
+	$sidebars_widgets = wp_get_sidebars_widgets();
+
+	if ( array_key_exists( $id, $sidebars_widgets ) ) {
+		$count = (int) count( (array) $sidebars_widgets[$id] );
+	}
+	return $count;
+}
+
+/**
+ * Widget column class helper
+ *
+ * @param   string  $id
+ * @return  string  grid class
+ */
+function toujours_widget_column_class( $widget_id ) {
+	$count = toujours_count_widgets( $widget_id );
+	$class = '';
+	if ( $count >= 4 ) {
+		$class .= 'widgets-four';
+	} elseif ( 3 === $count ) {
+		$class .= 'widgets-three';
+	} elseif ( 2 === $count ) {
+		$class .= 'widgets-two';
+	} else {
+		$class .= 'widget-one';
+	}
+	return $class;
+}
+
+
+/**
+ * Return the post URL.
+ *
+ * @uses get_url_in_content() to get the URL in the post meta (if it exists) or
+ * the first link found in the post content.
+ *
+ * Falls back to the post permalink if no URL is found in the post.
+ *
+ * Borrowed from Twenty Thirteen.
+*/
+function toujours_get_link_url() {
+	$content = get_the_content();
+	$has_url = get_url_in_content( $content );
+
+	return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() );
+}
+
+
+/**
+ * Enqueue scripts and styles.
+ */
+function toujours_scripts() {
+	wp_enqueue_style( 'toujours-style', get_stylesheet_uri() );
+	wp_enqueue_style( 'toujours-fonts', toujours_fonts_url(), array(), null );
+
+	wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/js/jquery.flexslider.js', array( 'jquery' ), '20160104', true );
+	wp_enqueue_script( 'imagesloaded', get_template_directory_uri() . '/js/imagesloaded.pk.js', array( 'jquery' ), '20151221', true );
+	wp_enqueue_script( 'toujours-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true );
+	wp_enqueue_script( 'toujours-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true );
+
+	wp_enqueue_script( 'toujours-global', get_template_directory_uri() . '/js/global.js', array( 'jquery', 'flexslider', 'masonry' ), '20151215', true );
+	// Localize 'Previous' and 'Next' links in slideshow
+	$translation_array = array(
+		'next_link' => esc_html__( 'Next Slide', 'toujours' ),
+		'previous_link' => esc_html__( 'Previous Slide', 'toujours' ),
+	);
+	wp_localize_script( 'toujours-global', 'toujours_script_strings', $translation_array );
+
+	if ( wp_style_is( 'genericons', 'registered' ) ) {
+		wp_enqueue_style( 'genericons' );
+	} else {
+		wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), null );
+	}
+
+	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
+		wp_enqueue_script( 'comment-reply' );
+	}
+}
+add_action( 'wp_enqueue_scripts', 'toujours_scripts' );
+
+/**
+ * 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';

二進制
toujours/genericons/Genericons.eot


+ 537 - 0
toujours/genericons/Genericons.svg

@@ -0,0 +1,537 @@
+<?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" >
+<!--
+2015-9-18: Created with FontForge (http://fontforge.org)
+-->
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
+<metadata>
+Created by FontForge 20150618 at Fri Sep 18 10:24:13 2015
+ By Joen Asmussen
+Copyright (c) 2015, Joen Asmussen
+</metadata>
+<defs>
+<font id="Genericons" horiz-adv-x="2048" >
+  <font-face 
+    font-family="Genericons"
+    font-weight="400"
+    font-stretch="normal"
+    units-per-em="2048"
+    panose-1="2 0 5 3 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+0020-F517"
+  />
+    <missing-glyph />
+    <glyph glyph-name="space" unicode=" " horiz-adv-x="200" 
+ />
+    <glyph glyph-name="uniF413" unicode="&#xf413;" 
+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="&#xf462;" 
+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="&#xf457;" 
+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="&#xf403;" 
+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="&#xf505;" 
+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="&#xf50f;" 
+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="&#xf307;" 
+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="&#xf460;" 
+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="&#xf430;" 
+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="&#xf515;" 
+d="M1024 1920c499.2 0 896 -396.8 896 -896s-396.8 -896 -896 -896s-896 396.8 -896 896s396.8 896 896 896zM1382.4 601.6c38.3994 0 64 25.6006 64 51.2002c0 38.4004 -12.8008 51.2002 -38.4004 64c-153.6 89.6006 -332.8 140.8 -524.8 140.8
+c-115.2 0 -217.601 -25.5996 -320 -51.1992c-25.6006 -12.8008 -51.2002 -25.6006 -51.2002 -64c0 -25.6006 12.7998 -51.2002 51.2002 -51.2002c0 0 25.5996 12.7998 38.3994 12.7998c89.6006 12.7998 192 25.5996 281.601 25.5996
+c166.399 0 332.8 -38.3994 460.8 -115.199c12.7998 -12.8008 25.5996 -12.8008 38.4004 -12.8008zM1484.8 832c38.4004 0 64 38.4004 64 76.7998c0 38.4004 -12.7998 64 -38.3994 76.7998c-179.2 102.4 -409.601 166.4 -640 166.4c-153.601 0 -256 -25.5996 -358.4 -51.2002
+c-38.4004 -12.7998 -51.2002 -38.3994 -51.2002 -76.7998s38.4004 -76.7998 76.7998 -89.5996c12.8008 0 25.6006 12.7998 38.4004 12.7998c76.7998 25.5996 179.2 38.3994 294.4 38.3994c217.6 0 422.399 -51.1992 563.199 -140.8
+c25.6006 0 25.6006 -12.7998 51.2002 -12.7998zM1600 1113.6c38.4004 0 76.7998 38.4004 76.7998 89.6006c0 38.3994 -25.5996 64 -51.2002 76.7998c-204.8 128 -473.6 179.2 -742.399 179.2c-153.601 0 -294.4 -12.7998 -422.4 -51.2002
+c-38.3994 -12.7998 -64 -38.4004 -64 -89.5996c0 -51.2002 38.4004 -89.6006 89.6006 -89.6006c25.5996 0 38.3994 12.7998 51.1992 12.7998c115.2 25.6006 230.4 38.4004 358.4 38.4004c243.2 0 486.4 -51.2002 652.8 -153.6
+c25.6006 -12.8008 38.4004 -12.8008 51.2002 -12.8008z" />
+    <glyph glyph-name="uniF448" unicode="&#xf448;" 
+d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
+    <glyph glyph-name="uniF453" unicode="&#xf453;" 
+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="&#xf419;" 
+d="M0 256v256h2048v-256h-2048zM0 1792h2048v-256h-2048v256zM0 896v256h2048v-256h-2048z" />
+    <glyph glyph-name="uniF423" unicode="&#xf423;" 
+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="&#xf512;" 
+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="&#xf417;" 
+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="&#xf410;" 
+d="M256 1536h1536v-128l-768 -384l-768 384v128zM256 1216l768 -384l768 384v-704h-1536v704z" />
+    <glyph glyph-name="uniF449" unicode="&#xf449;" 
+d="M512 512v1024h1024v-1024h-1024z" />
+    <glyph glyph-name="uniF467" unicode="&#xf467;" 
+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="&#xf224;" 
+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="&#xf203;" 
+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="&#xf502;" 
+d="M128 2048h1920l-960 -960z" />
+    <glyph glyph-name="uniF412" unicode="&#xf412;" 
+d="M1920 832l-640 -640v448h-1024v704l384 384v-704h640v448z" />
+    <glyph glyph-name="uniF440" unicode="&#xf440;" 
+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="&#xf305;" 
+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="&#xf443;" 
+d="M1152 1664l384 -384v-121.472v-6.52832v-768h-1024v1280h512h128zM1408 512v640h-256h-128v128v256h-384v-1024h768z" />
+    <glyph glyph-name="uniF411" unicode="&#xf411;" 
+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="&#xf402;" 
+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="&#xf420;" 
+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="&#xf425;" 
+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="&#xf508;" 
+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="&#xf507;" 
+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="&#xf306;" 
+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="&#xf406;" 
+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="&#xf215;" 
+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="&#xf202;" 
+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="&#xf222;" 
+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="&#xf214;" 
+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="&#xf104;" 
+d="M512 1664l1152 -640l-1152 -640v1280z" />
+    <glyph glyph-name="uniF50B" unicode="&#xf50b;" 
+d="M1408 1152l-384 -384l-384 384h256v512h256v-512h256zM384 640h1280v-256h-1280v256z" />
+    <glyph glyph-name="uniF409" unicode="&#xf409;" 
+d="M1024 1664l640 -512l-128 -128v-512h-1024v512l-128 128zM1152 576v448h-256v-448h256z" />
+    <glyph glyph-name="uniF458" unicode="&#xf458;" 
+d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
+    <glyph glyph-name="uniF218" unicode="&#xf218;" 
+d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
+c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
+    <glyph glyph-name="uniF513" unicode="&#xf513;" 
+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="&#xf301;" 
+d="M704 1152h960l-256 -640h-1024v1024h384l64 -128h448v-128h-640l-128 -256h128z" />
+    <glyph glyph-name="uniF474" unicode="&#xf474;" 
+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="&#xf438;" 
+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="&#xf451;" 
+d="M256 384v1280l1024 -640zM1408 1664h384v-1280h-384v1280z" />
+    <glyph glyph-name="uniF404" unicode="&#xf404;" 
+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="&#xf209;" 
+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="&#xf217;" 
+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="&#xf469;" 
+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="&#xf476;" 
+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="&#xf211;" 
+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="&#xf456;" 
+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="&#xf471;" 
+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="&#xf433;" 
+d="M0 896l896 -896h-896v896z" />
+    <glyph glyph-name="uniF447" unicode="&#xf447;" 
+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="&#xf511;" 
+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="&#xf427;" 
+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="&#xf219;" 
+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="&#xf100;" 
+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="&#xf400;" 
+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="&#xf439;" 
+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="&#xf509;" 
+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="&#xf510;" 
+d="M1664 1152v-256h-512v-512h-256v512h-512v256h512v512h256v-512h512z" />
+    <glyph glyph-name="uniF445" unicode="&#xf445;" 
+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="&#xf516;" 
+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="&#xf435;" 
+d="M384 512l640 640l640 -640h-1280zM384 1408h1280v-128h-1280v128z" />
+    <glyph glyph-name="uniF300" unicode="&#xf300;" 
+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="&#xf514;" 
+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="&#xf102;" 
+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="&#xf466;" 
+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="&#xf463;" 
+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="&#xf422;" 
+d="M384 1536h1152v-1024h-1152v1024zM1408 640v640h-896v-640h896z" />
+    <glyph glyph-name="uniF201" unicode="&#xf201;" 
+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="&#xf426;" 
+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="&#xf446;" 
+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="&#xf504;" 
+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="&#xf465;" 
+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="&#xf424;" 
+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="&#xf418;" 
+d="M1408 1504l128 -96l-512 -768h-128l-288 416l128 128l224 -192z" />
+    <glyph glyph-name="uniF429" unicode="&#xf429;" 
+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="&#xf308;" 
+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="&#xf226;" 
+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="&#xf205;" 
+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="&#xf472;" 
+d="M1368.06 1408h-128l-240.129 -768h128l-39.9355 -128h-448l39.9355 128h128l240.129 768h-128l39.9355 128h448z" />
+    <glyph glyph-name="uniF216" unicode="&#xf216;" 
+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="&#xf475;" 
+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="&#xf432;" 
+d="M1408 640l-448 448l-448 -448l-128 128l576 576l576 -576z" />
+    <glyph glyph-name="uniF210" unicode="&#xf210;" 
+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="&#xf437;" 
+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="&#xf468;" 
+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="&#xf107;" 
+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="&#xf442;" 
+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="&#xf221;" 
+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="&#xf50a;" 
+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="&#xf455;" 
+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="&#xf223;" 
+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="&#xf212;" 
+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="&#xf206;" 
+d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
+c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
+    <glyph glyph-name="uniF407" unicode="&#xf407;" 
+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="&#xf414;" 
+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="&#xf50e;" 
+d="M384 896v256h1280v-256h-1280z" />
+    <glyph glyph-name="uniF461" unicode="&#xf461;" 
+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="&#xf470;" 
+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="&#xf50c;" 
+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="&#xf220;" 
+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="&#xf415;" 
+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="&#xf207;" 
+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="&#xf500;" 
+d="M2048 0h-1920l960 959.872z" />
+    <glyph glyph-name="uniF302" unicode="&#xf302;" 
+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="&#xf108;" 
+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="&#xf405;" 
+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="&#xf501;" 
+d="M0 128v1920l960 -960z" />
+    <glyph glyph-name="uniF50D" unicode="&#xf50d;" 
+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="&#xf503;" 
+d="M2048 2048v-1920l-960 960z" />
+    <glyph glyph-name="uniF101" unicode="&#xf101;" 
+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="&#xf204;" 
+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="&#xf444;" 
+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="&#xf416;" 
+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="&#xf459;" 
+d="M1920 1664v-1280l-768 480v-480l-1024 640l1024 640v-480z" />
+    <glyph glyph-name="uniF441" unicode="&#xf441;" 
+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="&#xf506;" 
+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="&#xf105;" 
+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="&#xf473;" 
+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="&#xf452;" 
+d="M512 1664l1024 -640l-1024 -640v1280z" />
+    <glyph glyph-name="uniF408" unicode="&#xf408;" 
+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="&#xf450;" 
+d="M768 1024l1024 640v-1280zM256 384v1280h384v-1280h-384z" />
+    <glyph glyph-name="uniF517" unicode="&#xf517;" 
+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="&#xf106;" 
+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="&#xf208;" 
+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="&#xf304;" 
+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="&#xf225;" 
+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="&#xf103;" 
+d="M1152 1408h896v-896h-896v896zM128 1024v384h896v-384h-896zM640 512v384h384v-384h-384zM128 512v384h384v-384h-384z" />
+    <glyph glyph-name="uniF431" unicode="&#xf431;" 
+d="M1408 1280l128 -128l-576 -576l-576 576l128 128l448 -448z" />
+    <glyph glyph-name="uniF200" unicode="&#xf200;" 
+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="&#xf421;" 
+d="M384 896v256h1152v-256h-1152z" />
+    <glyph glyph-name="uniF454" unicode="&#xf454;" 
+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="&#xf213;" 
+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="&#xf401;" 
+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="&#xf436;" 
+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="&#xf434;" 
+d="M1152 0l896 896v-896h-896z" />
+    <glyph glyph-name="uniF303" unicode="&#xf303;" 
+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="&#xf464;" 
+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="&#xf109;" 
+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="&#xf428;" 
+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>

二進制
toujours/genericons/Genericons.ttf


二進制
toujours/genericons/Genericons.woff


File diff suppressed because it is too large
+ 21 - 0
toujours/genericons/genericons.css


+ 31 - 0
toujours/guestbook.php

@@ -0,0 +1,31 @@
+<?php
+/**
+ * Template name: Guestbook
+ *
+ * Using this template allows comments on a page to be displayed prominently
+ *
+ * @package Toujours
+ */
+
+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( 'template-parts/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(); ?>

+ 96 - 0
toujours/header.php

@@ -0,0 +1,96 @@
+<?php
+/**
+ * The header for our theme.
+ *
+ * This is the template that displays all of the <head> section and everything up until <div id="content">
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
+ *
+ * @package Toujours
+ */
+
+?><!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="site">
+	<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'toujours' ); ?></a>
+
+	<?php $header_image = get_header_image(); ?>
+	<header id="masthead" class="site-header" role="banner">
+
+		<div class="wrap">
+			<div class="site-branding">
+				<?php
+					if ( function_exists( 'jetpack_the_site_logo' ) ) {
+						jetpack_the_site_logo();
+					}
+					if ( ! empty( $header_image ) ) : ?>
+						<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
+							<img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="" class="header-image">
+						</a>
+					<?php endif;
+					if ( is_front_page() && is_home() ) : ?>
+					<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
+				<?php else : ?>
+					<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
+				<?php endif; ?>
+			</div><!-- .site-branding -->
+
+			<?php if ( has_nav_menu( 'primary' ) ) : ?>
+				<nav id="site-navigation" class="main-navigation" role="navigation">
+					<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Menu', 'toujours' ); ?></button>
+					<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) ); ?>
+				</nav><!-- #site-navigation -->
+			<?php endif; ?>
+		</div><!-- .wrap -->
+	</header><!-- #masthead -->
+
+	<?php
+
+	// checks whether homepage is posts or static page
+	$homepage = get_option( 'show_on_front' );
+
+	// check what page we're on
+	$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
+	?>
+
+	<?php // if we're on a static front page, or the blog index is the homepage and we're on the first page, show the slideshow ?>
+	<?php if ( ( is_front_page() && 'page' === $homepage ) || ( is_home() && 1 === $paged && 'posts' === $homepage ) ) { ?>
+		<?php
+		if ( toujours_has_banner_posts( 1 ) ) { ?>
+			<?php get_template_part( 'template-parts/content', 'slideshow' ); ?>
+		<?php }
+		?>
+
+		<?php
+		$description = get_bloginfo( 'description', 'display' );
+		if ( $description || is_customize_preview() ) : ?>
+			<div id="tagline">
+				<div class="wrap">
+					<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
+				</div>
+			</div>
+		<?php endif; ?>
+	<?php } ?>
+
+
+	<?php // only show recent posts if is home && page one ?>
+	<?php if ( is_home() && 1 === $paged ) { ?>
+		<?php if ( get_theme_mod( 'toujours_recent_posts' ) ) {
+			get_template_part( 'template-parts/content', 'recent-posts' );
+		} ?>
+	<?php } ?>
+
+
+		<div id="content" class="site-content">
+			<div class="wrap">
+

二進制
toujours/images/toujoursbackground20160105.png


+ 74 - 0
toujours/inc/custom-header.php

@@ -0,0 +1,74 @@
+<?php
+/**
+ * Sample implementation of the Custom Header feature.
+ *
+ * You can add an optional custom header image to header.php like so ...
+ *
+	<?php if ( get_header_image() ) : ?>
+	<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
+		<img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="">
+	</a>
+	<?php endif; // End header image check. ?>
+ *
+ * @link https://developer.wordpress.org/themes/functionality/custom-headers/
+ *
+ * @package Toujours
+ */
+/**
+ * Set up the WordPress core custom header feature.
+ *
+ * @uses toujours_header_style()
+ */
+
+function toujours_custom_header_setup() {
+	add_theme_support( 'custom-header', apply_filters( 'toujours_custom_header_args', array(
+		'default-image'          => '',
+		'default-text-color'     => '#2590ec',
+		'width'                  => 1160,
+		'height'                 => 250,
+		'flex-height'            => true,
+		'wp-head-callback'       => 'toujours_header_style',
+	) ) );
+}
+add_action( 'after_setup_theme', 'toujours_custom_header_setup' );
+
+
+if ( ! function_exists( 'toujours_header_style' ) ) :
+/**
+ * Styles the header image and text displayed on the blog.
+ *
+ * @see toujours_custom_header_setup().
+ */
+function toujours_header_style() {
+	$header_text_color = get_header_textcolor();
+	/*
+	 * If no custom options for text are set, let's bail.
+	 * get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: HEADER_TEXTCOLOR.
+	 */
+	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 ( ! display_header_text() ) :
+	?>
+		.site-title,
+		#tagline {
+			position: absolute;
+			clip: rect(1px, 1px, 1px, 1px);
+		}
+	<?php
+		// If the user has set a custom color for the text use that.
+		else :
+	?>
+		.site-title a {
+			color: #<?php echo esc_attr( $header_text_color ); ?>;
+		}
+	<?php endif; ?>
+	</style>
+	<?php
+}
+endif;

+ 72 - 0
toujours/inc/customizer.php

@@ -0,0 +1,72 @@
+<?php
+/**
+ * toujours Theme Customizer.
+ *
+ * @package Toujours
+ */
+
+/**
+ * Add postMessage support for site title and description for the Theme Customizer.
+ *
+ * @param WP_Customize_Manager $wp_customize Theme Customizer object.
+ */
+function toujours_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';
+
+	$wp_customize->add_section( 'toujours_theme_options', array(
+		'title'    => esc_html__( 'Theme Options', 'toujours' ),
+		'priority' => 130,
+	) );
+
+	/* Front Page: Featured Page One */
+	$wp_customize->add_setting( 'toujours_recent_posts', array(
+		'default'           => '',
+		'sanitize_callback' => 'toujours_sanitize_checkbox',
+	) );
+	$wp_customize->add_control( 'toujours_recent_posts', array(
+		'label'             => esc_html__( 'Display the three most recent posts in a special area above your other posts', 'toujours' ),
+		'section'           => 'toujours_theme_options',
+		'type'              => 'checkbox',
+	) );
+
+	/* General - Hide Featured Image borders */
+	$wp_customize->add_setting( 'toujours_featured_image_borders', array(
+		'default'           => 1,
+		'sanitize_callback' => 'toujours_sanitize_checkbox',
+		'transport'         => 'postMessage',
+	) );
+
+	$wp_customize->add_control( 'toujours_featured_image_borders', array(
+		'label'       => esc_html__( 'Display a thin inset border on featured images', 'toujours' ),
+		'section'     => 'toujours_theme_options',
+		'type'        => 'checkbox',
+	) );
+}
+add_action( 'customize_register', 'toujours_customize_register' );
+
+
+/**
+ * Sanitize the checkbox.
+ *
+ * @param boolean $input.
+ *
+ * @return boolean true if is 1 or '1', false if anything else
+ */
+function toujours_sanitize_checkbox( $input ) {
+	if ( 1 == $input ) {
+		return true;
+	} else {
+		return false;
+	}
+}
+
+
+/**
+ * Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
+ */
+function toujours_customize_preview_js() {
+	wp_enqueue_script( 'toujours_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20130508', true );
+}
+add_action( 'customize_preview_init', 'toujours_customize_preview_js' );

+ 69 - 0
toujours/inc/extras.php

@@ -0,0 +1,69 @@
+<?php
+/**
+ * Custom functions that act independently of the theme templates.
+ *
+ * Eventually, some of the functionality here could be replaced by core features.
+ *
+ * @package Toujours
+ */
+
+/**
+ * Adds custom classes to the array of body classes.
+ *
+ * @param array $classes Classes for the body element.
+ * @return array
+ */
+function toujours_body_classes( $classes ) {
+	// Adds a class of group-blog to blogs with more than 1 published author.
+	if ( is_multi_author() ) {
+		$classes[] = 'group-blog';
+	}
+
+	// Adds a class of hfeed to non-singular pages.
+	if ( ! is_singular() ) {
+		$classes[] = 'hfeed';
+	}
+
+	// Adds a class when sidebar widget is unused
+	if ( ! is_active_sidebar( 'sidebar-1' ) ) {
+		$classes[] = 'no-sidebar';
+	}
+
+	// Adds class if user has added custom background image
+	// Allows default background pattern to be retina
+	$bgimage = get_background_image();
+	$bgimage = basename( $bgimage ); //Get the background's filename
+	if ( 'toujoursbackground20160105.png' !== $bgimage ) {
+		$classes[] = 'user-background';
+	}
+
+	// Add a class if has custom header image
+	$header_image = get_header_image();
+	if ( ! empty( $header_image ) ) {
+		$classes[] = 'has-header-image';
+	}
+
+	// Add class if featured image borders hidden
+	if ( false === get_theme_mod( 'toujours_featured_image_borders', true ) ) {
+		$classes[] = 'hide-featured-image-borders';
+	}
+
+	return $classes;
+}
+add_filter( 'body_class', 'toujours_body_classes' );
+
+/**
+ * Remove the 1st gallery shortcode from gallery post format content.
+ */
+function toujours_strip_first_gallery( $content ) {
+	if ( 'gallery' === get_post_format() && 'post' === get_post_type() && get_post_gallery() ) {
+
+		$regex   = get_shortcode_regex( array( 'gallery' ) );
+		$content = preg_replace( '/'. $regex .'/s', '', $content, 1 );
+		$content = wp_kses_post( $content );
+
+	}
+
+	return $content;
+}
+add_filter( 'the_content', 'toujours_strip_first_gallery' );

+ 83 - 0
toujours/inc/headstart/en.json

@@ -0,0 +1,83 @@
+{
+    "settings": {
+        "options": {
+            "show_on_front": "posts",
+            "stylesheet": "pub\/toujours",
+            "featured-content": {
+                "tag-id": 35890,
+                "tag-name": "featured",
+                "hide-tag": 0,
+                "show-all": 0
+            }
+        },
+        "theme_mods": {
+            "0": false,
+            "nav_menu_locations": {
+                "primary": "primary"
+            },
+            "toujours_recent_posts": false
+        },
+        "headstart": {
+            "mapped_id_options": [],
+            "mapped_id_theme_mods": [],
+            "keep_submenu_items": true
+        }
+    },
+    "widgets": [
+        {
+            "id": "search-2",
+            "id_base": "search",
+            "settings": {
+                "title": "Search"
+            },
+            "sidebar": "sidebar-1",
+            "position": 0
+        },
+        {
+            "id": "blog_subscription-3",
+            "id_base": "blog_subscription",
+            "settings": {
+                "title": "Follow Blog via Email",
+                "title_following": "You are following this blog",
+                "subscribe_logged_in": "Click to follow this blog and receive notifications of new posts by email.",
+                "subscribe_text": "Enter your email address to follow this blog and receive notifications of new posts by email.",
+                "subscribe_button": "Follow",
+                "show_subscribers_total": 1
+
+            },
+            "sidebar": "sidebar-1",
+            "position": 2
+        }
+    ],
+    "content": [
+        {
+            "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": 3,
+            "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": 101
+        },
+        {
+            "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:\/\/headstartdata.files.wordpress.com\/2016\/06\/pexels-photo-30732.jpg",
+            "tags_input": [
+                "featured"
+            ],
+            "hs_old_id": 102
+        }
+    ]
+}

+ 733 - 0
toujours/inc/jetpack-fonts.php

@@ -0,0 +1,733 @@
+<?php
+
+add_filter( 'typekit_add_font_category_rules', function( $category_rules ) {
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'b,
+		strong,
+		optgroup',
+		array(
+			array( 'property' => 'font-weight', 'value' => 'bold' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'code,
+		kbd,
+		pre,
+		samp',
+		array(
+			array( 'property' => 'font-family', 'value' => 'monospace, monospace' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'body,
+		button,
+		input,
+		select,
+		textarea',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Merriweather", Georgia, "Times New Roman", serif' ),
+			array( 'property' => 'font-size', 'value' => '17px' ),
+			array( 'property' => 'font-weight', 'value' => '400' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'h1,
+		h2,
+		h3,
+		h4,
+		h5,
+		h6',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-weight', 'value' => '300' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'h1',
+		array(
+			array( 'property' => 'font-size', 'value' => '40px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'h2',
+		array(
+			array( 'property' => 'font-size', 'value' => '35px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'h3',
+		array(
+			array( 'property' => 'font-size', 'value' => '30px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'h4',
+		array(
+			array( 'property' => 'font-size', 'value' => '20px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'h5',
+		array(
+			array( 'property' => 'font-size', 'value' => '18px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'h6',
+		array(
+			array( 'property' => 'font-size', 'value' => '16px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	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',
+		'blockquote cite',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '18px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '300' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'pre',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Courier 10 Pitch", Courier, monospace' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'code,
+		kbd,
+		tt,
+		var',
+		array(
+			array( 'property' => 'font-family', 'value' => 'Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'blockquote',
+		array(
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	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',
+		'thead',
+		array(
+			array( 'property' => 'font-weight', 'value' => '700' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'button,
+		input[type="button"],
+		input[type="reset"],
+		input[type="submit"]',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '14px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.main-navigation ul ul',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-weight', 'value' => '300' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.main-navigation a,
+		.main-navigation ul ul a',
+		array(
+			array( 'property' => 'font-size', 'value' => '16px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.widget h1',
+		array(
+			array( 'property' => 'font-size', 'value' => '28px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.widget h2',
+		array(
+			array( 'property' => 'font-size', 'value' => '24px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.widget h3',
+		array(
+			array( 'property' => 'font-size', 'value' => '22px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.widget h4',
+		array(
+			array( 'property' => 'font-size', 'value' => '18px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.widget h5',
+		array(
+			array( 'property' => 'font-size', 'value' => '16px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.widget h6',
+		array(
+			array( 'property' => 'font-size', 'value' => '14px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.widget_calendar caption',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.widget_goodreads div[class^="gr_custom_author"]',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.widget_rss .rss-date',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '14px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.contact-form label',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '14px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.post-password-form label',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '14px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.site-title',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '75px' ),
+			array( 'property' => 'font-weight', 'value' => '300' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.site-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '60px' ),
+		),
+		array(
+			'screen and (max-width: 680px)',
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.slideshow .slide-info .slide-title',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '30px' ),
+			array( 'property' => 'font-weight', 'value' => '300' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.slideshow .slide-info .slide-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '24px' ),
+		),
+		array(
+			'screen and (max-width: 680px)',
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.slideshow .slide-info .posted-on,
+		.slideshow .slide-info .byline',
+		array(
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+			array( 'property' => 'font-size', 'value' => '14px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.slideshow .slide-info .posted-on,
+		.slideshow .slide-info .byline',
+		array(
+			array( 'property' => 'font-size', 'value' => '13px' ),
+		),
+		array(
+			'screen and (max-width: 680px)',
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'#tagline p',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '32px' ),
+			array( 'property' => 'font-weight', 'value' => '300' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'#tagline p',
+		array(
+			array( 'property' => 'font-size', 'value' => '20px' ),
+		),
+		array(
+			'screen and (max-width: 680px)',
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'#featured-post-trio article',
+		array(
+			array( 'property' => 'font-size', 'value' => '16px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'#featured-post-trio article h2',
+		array(
+			array( 'property' => 'font-size', 'value' => '28px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'#featured-post-trio article p a',
+		array(
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.featured-post',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.entry-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '40px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.entry-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '28px' ),
+		),
+		array(
+			'screen and (max-width: 680px)',
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.entry-footer,
+		.entry-meta',
+		array(
+			array( 'property' => 'font-size', 'value' => '15px' ),
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.entry-footer span,
+		.entry-meta span,
+		.post-format-label',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13.5px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.entry-meta a:not(.post-edit-link)',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Merriweather", Georgia, "Times New Roman", serif' ),
+			array( 'property' => 'font-size', 'value' => '15px' ),
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+			array( 'property' => 'font-weight', 'value' => '400' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.entry-footer .sep,
+		.entry-meta .sep',
+		array(
+			array( 'property' => 'font-size', 'value' => '18px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.nav-links .nav-subtitle',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13.5px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.nav-links .nav-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '18px' ),
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.page-links .page-links-title',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13.5px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.archive .format-aside .entry-title,
+		.archive .format-audio .entry-title,
+		.archive .format-image .entry-title,
+		.archive .format-link .entry-title,
+		.blog .format-aside .entry-title,
+		.blog .format-audio .entry-title,
+		.blog .format-image .entry-title,
+		.blog .format-link .entry-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '20px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.archive .format-link .entry-title a:after,
+		.blog .format-link .entry-title a:after',
+		array(
+			array( 'property' => 'font-size', 'value' => '24px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.archive .format-quote .entry-title,
+		.blog .format-quote .entry-title,
+		.single .format-quote .entry-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '16px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.archive .format-quote .post-format-label a,
+		.blog .format-quote .post-format-label a,
+		.single .format-quote .post-format-label a',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13.5px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.archive .format-status .entry-title,
+		.blog .format-status .entry-title,
+		.single .format-status .entry-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '16px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.archive .format-status .post-format-label a,
+		.blog .format-status .post-format-label a,
+		.single .format-status .post-format-label a',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13.5px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.page-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '18px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.taxonomy-description',
+		array(
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.comments-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '30px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-form label',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '14px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-author',
+		array(
+			array( 'property' => 'font-size', 'value' => '18px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.children .comment-author',
+		array(
+			array( 'property' => 'font-size', 'value' => '16px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-author b',
+		array(
+			array( 'property' => 'font-weight', 'value' => '300' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-metadata',
+		array(
+			array( 'property' => 'font-size', 'value' => '15px' ),
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-metadata .edit-link,
+		.pingback .edit-link',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13.5px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-awaiting-moderation',
+		array(
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-navigation .nav-links a,
+		.comment-respond #reply-title small,
+		.reply a',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '13.5px' ),
+			array( 'property' => 'font-style', 'value' => 'normal' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'placeholder',
+		'.comment-respond #reply-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '24px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.comment-respond .comment-notes',
+		array(
+			array( 'property' => 'font-size', 'value' => '14px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.logged-in-as',
+		array(
+			array( 'property' => 'font-size', 'value' => '14px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.no-comments',
+		array(
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'#colophon,
+		#footer-widgets',
+		array(
+			array( 'property' => 'font-size', 'value' => '15px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'#colophon',
+		array(
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.jetpack-social-navigation',
+		array(
+			array( 'property' => 'font-size', 'value' => '20px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.site-info',
+		array(
+			array( 'property' => 'font-size', 'value' => '15px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'#infinite-handle span button,
+		#infinite-handle span button:focus,
+		#infinite-handle span button:hover,
+		.posts-navigation .nav-next a,
+		.posts-navigation .nav-previous a',
+		array(
+			array( 'property' => 'font-family', 'value' => '"Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif' ),
+			array( 'property' => 'font-size', 'value' => '14px' ),
+			array( 'property' => 'font-weight', 'value' => '500' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'placeholder',
+		'.wp-caption',
+		array(
+			array( 'property' => 'font-size', 'value' => '14px' ),
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'placeholder',
+		'.gallery-caption',
+		array(
+			array( 'property' => 'font-size', 'value' => '13px' ),
+			array( 'property' => 'font-style', 'value' => 'italic' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'#page .sharedaddy .sd-title,
+		#page div#jp-relatedposts h3.jp-relatedposts-headline,
+		#page .sd-rating .sd-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '14px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'headings',
+		'.jp-relatedposts-post-title',
+		array(
+			array( 'property' => 'font-size', 'value' => '22px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'#page .sd-rating .rating-msg',
+		array(
+			array( 'property' => 'font-size', 'value' => '13px' ),
+		)
+	);
+
+	TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
+		'.widget_goodreads div[class^="gr_custom_author"]',
+		array(
+			array( 'property' => 'font-size', 'value' => '13px' ),
+		)
+	);
+
+	return $category_rules;
+} );

+ 116 - 0
toujours/inc/jetpack.php

@@ -0,0 +1,116 @@
+<?php
+/**
+ * Jetpack Compatibility File.
+ *
+ * @link https://jetpack.me/
+ *
+ * @package Toujours
+ */
+
+/**
+ * Jetpack setup function.
+ *
+ * See: https://jetpack.me/support/infinite-scroll/
+ * See: https://jetpack.me/support/responsive-videos/
+ */
+function toujours_jetpack_setup() {
+	// Add theme support for Infinite Scroll.
+	add_theme_support( 'infinite-scroll', array(
+		'container'      => 'main',
+		'render'         => 'toujours_infinite_scroll_render',
+		'footer'         => 'page',
+	) );
+
+	// Add theme support for Responsive Videos.
+	add_theme_support( 'jetpack-responsive-videos' );
+
+	//Site logo
+	add_image_size( 'toujours-site-logo', 1200, 400 );
+	add_theme_support( 'site-logo', array(
+		'header-text' => array(
+			'site-title',
+			'site-description',
+			),
+		'size'        => 'toujours-site-logo',
+	) );
+
+	//Featured content
+	add_theme_support( 'featured-content' , array(
+		'featured_content_filter' => 'toujours_get_banner_posts',
+		'max_posts'               => 8,
+		'post_types'              => array( 'post' ),
+	) );
+
+	// Social menu
+	add_theme_support( 'jetpack-social-menu' );
+
+} // end function toujours_jetpack_setup
+add_action( 'after_setup_theme', 'toujours_jetpack_setup' );
+
+/**
+ * Custom render function for Infinite Scroll.
+ */
+function toujours_infinite_scroll_render() {
+	while ( have_posts() ) {
+		the_post();
+		if ( is_search() ) :
+		    get_template_part( 'template-parts/content', 'search' );
+		else :
+		    get_template_part( 'template-parts/content', get_post_format() );
+		endif;
+	}
+}
+
+/**
+ * Getter function for Featured Content.
+ * See http://jetpack.me/support/featured-content/
+ */
+function toujours_get_banner_posts() {
+	return apply_filters( 'toujours_get_banner_posts', array() );
+}
+
+/**
+ * Check for minimum number of featured posts
+ */
+function toujours_has_banner_posts( $minimum = 1 ) {
+	if ( is_paged() ) {
+		return false;
+	}
+
+	$minimum = absint( $minimum );
+	$featured_posts = apply_filters( 'toujours_get_banner_posts', array() );
+
+	if ( ! is_array( $featured_posts ) ) {
+		return false;
+	}
+
+	if ( $minimum > count( $featured_posts ) ) {
+		return false;
+	}
+	return true;
+}
+
+/**
+ * If there is a social menu set, make IS click to scroll
+ */
+if ( function_exists( 'jetpack_is_mobile' ) && ! function_exists( 'toujours_footer_widgets' ) ) :
+function toujours_footer_widgets() {
+	if ( has_nav_menu( 'jetpack-social-menu' ) || is_active_sidebar( 'footer' ) || ( ( jetpack_is_mobile( '', true ) && is_active_sidebar( 'sidebar-1' ) ) ) ) {
+		return true;
+	}
+	return;
+}
+endif;
+add_filter( 'infinite_scroll_has_footer_widgets', 'toujours_footer_widgets' );
+
+
+/**
+ * Return early if Social Menu is not available.
+ */
+function toujours_social_menu() {
+	if ( ! function_exists( 'jetpack_social_menu' ) ) {
+		return;
+	} else {
+		jetpack_social_menu();
+	}
+}

+ 217 - 0
toujours/inc/style-wpcom.css

@@ -0,0 +1,217 @@
+/*
+Theme Name: Toujours
+
+These styles are for WordPress.com specific elements
+
+*/
+
+/* Sharedaddy & Related Posts*/
+#page .sharedaddy .sd-title,
+#page div#jp-relatedposts h3.jp-relatedposts-headline,
+#page .sd-rating .sd-title {
+	color: #999;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 14px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	margin-bottom: 1em;
+	padding-bottom: 0;
+	text-transform: uppercase;
+}
+
+.blog #primary .format-quote .sharedaddy .sd-title,
+.archive #primary .format-quote .sharedaddy .sd-title,
+.single #primary .format-quote .sharedaddy .sd-title,
+.blog #primary .format-quote div#jp-relatedposts h3.jp-relatedposts-headline,
+.archive #primary .format-quote div#jp-relatedposts h3.jp-relatedposts-headline,
+.single #primary .format-quote div#jp-relatedposts h3.jp-relatedposts-headline,
+.blog #primary .format-quote .sd-rating .sd-title,
+.archive #primary .format-quote .sd-rating .sd-title,
+.single #primary .format-quote .sd-rating .sd-title {
+	color: rgba( 255, 255, 255, 0.8 );
+}
+
+.blog #primary .format-quote #jp-post-flair,
+.archive #primary .format-quote #jp-post-flair,
+.single #primary .format-quote #jp-post-flair {
+	margin-top: -30px;
+}
+
+div#jp-relatedposts h3.jp-relatedposts-headline em {
+	font-weight: normal;
+}
+
+#page div.sharedaddy h3.sd-title:before,
+#page div#jp-relatedposts h3.jp-relatedposts-headline em:before {
+	display: none;
+}
+
+.jp-relatedposts-post-title {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 22px;
+	font-weight: 300;
+	line-height: 1.3;
+	margin-bottom: 4px;
+}
+
+#page .sd-rating + .sharedaddy {
+	margin-top: 30px;
+}
+
+.blog #primary #jp-post-flair,
+.archive #primary #jp-post-flair {
+	margin-bottom: 30px;
+}
+
+#page .sd-rating .rating-msg {
+	color: #999;
+	font-size: 13px;
+	font-style: italic;
+	margin-top: -3px;
+}
+
+.blog #primary .format-quote .sd-rating .rating-msg,
+.archive #primary .format-quote .sd-rating .rating-msg,
+.single #primary .format-quote .sd-rating .rating-msg {
+	color: rgba( 255, 255, 255, 0.8 );
+}
+
+#page #featured-post-trio .sd-rating {
+	padding-top: 15px;
+}
+
+#page #featured-post-trio .sd-rating .sd-title {
+	margin-bottom: 0.5em;
+}
+
+div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
+	opacity: 1.0;
+}
+
+div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
+	font-weight: inherit;
+}
+
+#page .jp-relatedposts-post-context {
+	color: #333;
+}
+
+.single-format-quote #page .sharedaddy .sd-title,
+.single-format-quote #page div#jp-relatedposts h3.jp-relatedposts-headline {
+	color: rgba( 255, 255, 255, 0.9 );
+}
+
+.single-format-quote div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
+	color: rgba( 255, 255, 255, 0.9 );
+}
+
+.single-format-quote #page .jp-relatedposts-post-context {
+	color: rgba( 255, 255, 255, 0.6 );
+}
+
+/* Widgets */
+
+/* Author Grid */
+
+.widget_author_grid ul,
+.widget_author_grid li {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+/* Widget - Authors */
+.widget_authors ul,
+.widget_authors li {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+.widget_authors .avatar-container,
+.widget_authors strong {
+	display: inline-block;
+	vertical-align: middle;
+}
+
+.widget_authors ul ul {
+	margin-bottom: 30px;
+}
+
+.widget_authors ul ul li {
+	border-bottom: 1px solid #ddd;
+	display: block;
+	padding: 5px 0;
+}
+
+/* Contact Info Widget */
+
+.widget_contact_info .contact-map {
+	margin-bottom: 10px;
+}
+
+/* Flickr Widget */
+
+.widget_flickr table {
+	border: 0;
+}
+
+.widget_flickr table tr {
+	border: 0;
+}
+
+.widget_flickr table td {
+	padding: 0;
+}
+
+.widget_flickr #flickr_badge_wrapper {
+	background-color: transparent;
+	border: 0;
+}
+
+.widget #flickr_badge_uber_wrapper a:hover,
+.widget #flickr_badge_uber_wrapper a:link,
+.widget #flickr_badge_uber_wrapper a:active,
+.widget #flickr_badge_uber_wrapper a:visited {
+	color: #2590ec;
+}
+
+#footer-widgets .widget #flickr_badge_uber_wrapper a:hover,
+#footer-widgets .widget #flickr_badge_uber_wrapper a:link,
+#footer-widgets .widget #flickr_badge_uber_wrapper a:active,
+#footer-widgets .widget #flickr_badge_uber_wrapper a:visited {
+	color: #999;
+	text-decoration: none;
+}
+
+/* Goodreads */
+
+.widget_goodreads div[class^="gr_custom_container"] {
+	background-color: transparent;
+	border: 0;
+	border-radius: 0;
+	border-top: 1px solid #eee;
+}
+
+.widget_goodreads div[class^="gr_custom_each_container"] {
+	border-color: #eee;
+}
+
+.widget_goodreads div[class^="gr_custom_author"] {
+	color: #999;
+	display: block;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13px;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+/* Milestone Widget */
+#footer-widgets .milestone-header {
+	background-color: #222;
+}
+
+/* Stats */
+#wpstats {
+	display: none;
+}

+ 154 - 0
toujours/inc/template-tags.php

@@ -0,0 +1,154 @@
+<?php
+/**
+ * Custom template tags for this theme.
+ *
+ * Eventually, some of the functionality here could be replaced by core features.
+ *
+ * @package Toujours
+ */
+
+if ( ! function_exists( 'toujours_posted_on' ) ) :
+/**
+ * Prints HTML with meta information for the current post-date/time and author.
+ */
+function toujours_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(
+		'<span>' . esc_html_x( 'Published on %s', 'post date', 'toujours' ) . '</span>',
+		'<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'
+	);
+
+	$byline = sprintf(
+		esc_html_x( 'by %s', 'post author', 'toujours' ),
+		'<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.
+
+}
+endif;
+
+
+if ( ! function_exists( 'toujours_comment_link' ) ) :
+/**
+ * Prints a link to the comments
+ */
+function toujours_comment_link() {
+	if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
+		echo '<span class="comments-link">';
+		comments_popup_link( esc_html__( 'Leave a comment', 'toujours' ), esc_html__( '1 Comment', 'toujours' ), esc_html__( '% Comments', 'toujours' ) );
+		echo '</span>';
+	}
+}
+endif;
+
+
+if ( ! function_exists( 'toujours_post_format' ) ) :
+function toujours_post_format() {
+	$format = get_post_format();
+	$formats = get_theme_support( 'post-formats' );
+	$postformat = '';
+
+	if ( $format && in_array( $format, $formats[0] ) ) {
+		echo sprintf( '<span class="post-format-label entry-format-' . esc_attr( $format ) . '"><a href="%1$s" title="%2$s">%3$s</a></span><span class="sep">&bull;</span>', // WPCS: XSS OK.
+			esc_url( get_post_format_link( $format ) ),
+			sprintf( esc_attr_x( 'All %1$s posts', 'post format archives link', 'toujours' ), get_post_format_string( $format ) ),
+			esc_html( get_post_format_string( $format ) ) );
+	}
+}
+endif;
+
+
+if ( ! function_exists( 'toujours_entry_footer' ) ) :
+/**
+ * Prints HTML with meta information for the categories, tags and edit post link
+ */
+function toujours_entry_footer() {
+
+	toujours_post_format();
+
+	// Hide category and tag text 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__( ', ', 'toujours' ) );
+		/* translators: used between list items, there is a space after the comma */
+		$tags_list = get_the_tag_list( '', esc_html__( ', ', 'toujours' ) );
+
+		if ( $categories_list && toujours_categorized_blog() ) {
+			printf( '<span class="cat-links">' . esc_html__( 'Categories %1$s', 'toujours' ) . '</span>', $categories_list ); // WPCS: XSS OK.
+
+			// if both categories and tags are present, add a divider
+			if ( $tags_list && ! is_wp_error( $tags_list ) ) {
+				echo '<span class="sep">&bull;</span>';
+			}
+		}
+
+		if ( $tags_list && ! is_wp_error( $tags_list ) ) {
+			printf( '<span class="tags-links">' . esc_html__( 'Tags %1$s', 'toujours' ) . '</span>', $tags_list ); // WPCS: XSS OK.
+		}
+	}
+
+	edit_post_link(
+		sprintf(
+			/* translators: %s: Name of current post */
+			esc_html__( 'Edit %s', 'toujours' ),
+			the_title( '<span class="screen-reader-text">"', '"</span>', false )
+		),
+		'<span class="edit-link"><span class="sep">&bull;</span>','</span>'
+	);
+}
+endif;
+
+/**
+ * Returns true if a blog has more than 1 category.
+ *
+ * @return bool
+ */
+function toujours_categorized_blog() {
+	if ( false === ( $all_the_cool_cats = get_transient( 'toujours_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( 'toujours_categories', $all_the_cool_cats );
+	}
+
+	if ( $all_the_cool_cats > 1 ) {
+		// This blog has more than 1 category so toujours_categorized_blog should return true.
+		return true;
+	} else {
+		// This blog has only 1 category so toujours_categorized_blog should return false.
+		return false;
+	}
+}
+
+/**
+ * Flush out the transients used in toujours_categorized_blog.
+ */
+function toujours_category_transient_flusher() {
+	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
+		return;
+	}
+	// Like, beat it. Dig?
+	delete_transient( 'toujours_categories' );
+}
+add_action( 'edit_category', 'toujours_category_transient_flusher' );
+add_action( 'save_post',     'toujours_category_transient_flusher' );

+ 190 - 0
toujours/inc/wpcom-colors.php

@@ -0,0 +1,190 @@
+<?php
+/* Custom Colors: Toujours */
+
+//Background
+add_color_rule( 'bg', '#eeeeee', array(
+	array( 'body', 'background-color' ),
+
+	array( '#page', 'border-color', '-1' ),
+) );
+
+// Text
+add_color_rule( 'txt', '#333333', array(
+	// Colour - contrast against white
+	array( '.main-navigation a,
+		#featured-post-trio article h2 a,
+		.entry-title a,
+		.nav-links .nav-title,
+		.menu-toggle', 'color', '#ffffff', 4 ),
+
+	// Background Colour - contrast against white
+	array( 'pre,
+		.blog #primary .format-quote,
+		.archive #primary .format-quote,
+		.single #primary .format-quote,
+		#footer-widgets,
+		#colophon', 'background-color', '#ffffff', 2 ),
+),
+__( 'Navigation, Post Titles' ) );
+
+// Feature Blue
+add_color_rule( 'link', '#2590ec', array(
+
+	// Colour - contrast against white
+	array( 'a,
+		.search-form.hover-button label:before,
+		.main-navigation a:focus,
+		.main-navigation a:hover,
+		.widget #flickr_badge_uber_wrapper a:hover,
+		.widget #flickr_badge_uber_wrapper a:link,
+		.widget #flickr_badge_uber_wrapper a:active,
+		.widget #flickr_badge_uber_wrapper a:visited,
+		.site-title a,
+		.slideshow .prev-slide:hover,
+		.slideshow .next-slide:hover,
+		#featured-post-trio article h2 a:hover,
+		.entry-title a:hover,
+		.blog #primary .format-aside .entry-title a:hover,
+		.archive #primary .format-aside .entry-title a:hover,
+		.blog #primary .format-audio .entry-title a:hover,
+		.archive #primary .format-audio .entry-title a:hover,
+		.blog #primary .format-image .entry-title a:hover,
+		.archive #primary .format-image .entry-title a:hover,
+		.blog #primary .format-link .entry-title a:hover,
+		.archive #primary .format-image .entry-title a:hover,
+		.comment-metadata .edit-link a,
+		.reply a,
+		.comment-navigation .nav-links a,
+		.comment-respond #reply-title small,
+		.error404 .widget_tag_cloud a:hover,
+		#secondary .widget a:hover,
+		#secondary .widget_tag_cloud a:hover,
+		#secondary .wp_widget_tag_cloud a:hover', 'color', '#ffffff', 3 ),
+
+	// Background colour - contrast against white
+	array( 'button,
+		input[type="button"],
+		input[type="reset"],
+		input[type="submit"],
+		.featured-post,
+		.page-links a:hover .page-links-num,
+		.entry-audio .mejs-container,
+		.entry-audio .mejs-container .mejs-controls,
+		.entry-content .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-current,
+		.bypostauthor .avatar-container:before,
+		#infinite-handle span button,
+		.posts-navigation .nav-previous a,
+		.posts-navigation .nav-next a', 'background-color', '#ffffff', 4 ),
+
+	// Border colour - contrast against bg
+	array( '.page-links a:hover .page-links-num', 'border-color', '#ffffff', 4 ),
+),
+__( 'Links in Content, Site Title' ) );
+
+/* Extra CSS */
+function toujours_extra_css() { ?>
+	#footer-widgets, #colophon {
+		color: rgba( 255, 255, 255, 0.7 );
+	}
+
+	#colophon .jetpack-social-navigation li a,
+	#footer-widgets h3,
+	#colophon h3 {
+		color: rgba( 255, 255, 255, 0.8 );
+	}
+
+	#footer-widgets a,
+	#colophon a,
+	#footer-widgets .widget #flickr_badge_uber_wrapper a:link,
+	#footer-widgets .widget #flickr_badge_uber_wrapper a:active,
+	#footer-widgets .widget #flickr_badge_uber_wrapper a:visited {
+		color: rgba( 255, 255, 255, 0.8);
+	}
+
+	#footer-widgets a:hover,
+	#colophon a:hover,
+	#footer-widgets .widget #flickr_badge_uber_wrapper a:hover {
+		color: rgba( 255, 255, 255, 1.0 );
+	}
+
+	#footer-widgets .widget_archive > ul,
+	#footer-widgets .widget_archive li,
+	#footer-widgets .widget_authors ul ul li,
+	#footer-widgets .widget_categories > ul,
+	#footer-widgets .widget_categories li,
+	#footer-widgets .widget_goodreads div[class^="gr_custom_each_container"],
+	#footer-widgets .widget_goodreads div[class^="gr_custom_container"],
+	#footer-widgets .widget_jp_blogs_i_follow > ol,
+	#footer-widgets .widget_jp_blogs_i_follow li,
+	#footer-widgets .widget_jetpack_posts_i_like > ul,
+	#footer-widgets .widget_jetpack_posts_i_like li,
+	#footer-widgets .widget_links > ul,
+	#footer-widgets .widget_links li,
+	#footer-widgets .widget_meta > ul,
+	#footer-widgets .widget_meta li,
+	#footer-widgets .widget_nav_menu > ul,
+	#footer-widgets .widget_nav_menu li,
+	#footer-widgets .widget_pages > ul,
+	#footer-widgets .widget_pages li,
+	#footer-widgets .widget_recent_comments > ul,
+	#footer-widgets .widget_recent_comments li,
+	#footer-widgets .widget_recent_entries > ul,
+	#footer-widgets .widget_recent_entries li,
+	#footer-widgets .widget_rss > ul,
+	#footer-widgets .widget_rss li,
+	#footer-widgets .widget_rss_links > ul,
+	#footer-widgets .widget_rss_links li,
+	#footer-widgets .widget.top_rated #top_posts,
+	#footer-widgets .widget.top_rated li,
+	#footer-widgets .widget_top-clicks > ul,
+	#footer-widgets .widget_top-clicks li,
+	#footer-widgets .widget_top-posts > ul,
+	#footer-widgets .widget_top-posts li,
+	#footer-widgets hr {
+		border-color: rgba( 255, 255, 255, 0.3 );
+	}
+
+	#footer-widgets .wrap {
+		border-color: rgba( 255, 255, 255, 0.2 );
+	}
+
+<?php
+}
+add_theme_support( 'custom_colors_extra_css', 'toujours_extra_css' );
+
+//Additional palettes
+add_color_palette( array(
+	'#dddddd',
+	'#222222',
+	'#31bb8c',
+), 'Featured 1' );
+
+add_color_palette( array(
+	'#f0f0f0',
+	'#666666',
+	'#dd5466',
+), 'Featured 2' );
+
+add_color_palette( array(
+	'#a7c5c1',
+	'#442d40',
+	'#8e4883',
+), 'Featured 3' );
+
+add_color_palette( array(
+	'#e0d9d1',
+	'#333333',
+	'#cf2424',
+), 'Featured 4' );
+
+add_color_palette( array(
+	'#61475d',
+	'#3c7683',
+	'#31a7bb',
+), 'Featured 5' );
+
+add_color_palette( array(
+	'#a8a7a7',
+	'#61475d',
+	'#e8175d',
+), 'Featured 6' );

+ 50 - 0
toujours/inc/wpcom.php

@@ -0,0 +1,50 @@
+<?php
+/**
+ * WordPress.com-specific functions and definitions
+ * This file is centrally included from `wp-content/mu-plugins/wpcom-theme-compat.php`.
+ *
+ * @package Toujours
+ */
+
+/**
+ * Adds themecolors and support for print styles
+ */
+function toujours_theme_support() {
+
+	global $themecolors;
+
+	if ( ! isset( $themecolors ) ) :
+		$themecolors = array(
+			'bg'     => 'eeeeee',
+			'border' => 'eeeeee',
+			'text'   => '333333',
+			'link'   => '2590ec',
+			'url'    => '2590ec',
+		);
+	endif;
+
+	add_theme_support( 'print-style' );
+}
+add_action( 'after_setup_theme', 'toujours_theme_support' );
+
+
+/*
+ * De-queue Google fonts if custom fonts are being used instead
+ */
+function toujours_dequeue_fonts() {
+	if ( class_exists( 'TypekitData' ) && class_exists( 'CustomDesign' ) && CustomDesign::is_upgrade_active() ) {
+		$customfonts = TypekitData::get( 'families' );
+		if ( $customfonts && $customfonts['site-title']['id'] && $customfonts['headings']['id'] && $customfonts['body-text']['id'] ) {
+			wp_dequeue_style( 'toujours-fonts' );
+		}
+	}
+}
+
+add_action( 'wp_enqueue_scripts', 'toujours_dequeue_fonts' );
+
+
+//WordPress.com specific styles
+function toujours_wpcom_styles() {
+	wp_enqueue_style( 'toujours-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', '20151223' );
+}
+add_action( 'wp_enqueue_scripts', 'toujours_wpcom_styles' );

+ 56 - 0
toujours/index.php

@@ -0,0 +1,56 @@
+<?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.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+get_header();
+?>
+
+	<div id="primary" class="content-area">
+		<main id="main" class="site-main" role="main">
+
+		<?php if ( have_posts() ) : ?>
+
+			<?php if ( is_home() && ! is_front_page() ) : ?>
+				<header>
+					<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
+				</header>
+			<?php endif; ?>
+
+			<?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( 'template-parts/content', get_post_format() );
+				?>
+
+			<?php endwhile; ?>
+
+			<?php the_posts_navigation(); ?>
+
+		<?php else : ?>
+
+			<?php get_template_part( 'template-parts/content', 'none' ); ?>
+
+		<?php endif; ?>
+
+		</main><!-- #main -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 64 - 0
toujours/js/customizer.js

@@ -0,0 +1,64 @@
+/**
+ * customizer.js
+ *
+ * Theme Customizer enhancements for a better user experience.
+ *
+ * Contains handlers to make Theme Customizer preview reload changes asynchronously.
+ */
+
+( function( $ ) {
+	// 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 ) {
+				$( '.site-title, #tagline' ).css( {
+					'clip': 'rect(1px, 1px, 1px, 1px)',
+					'position': 'absolute'
+				} );
+			} else {
+				$( '.site-title, #tagline' ).css( {
+					'clip': 'auto',
+					'position': 'relative'
+				} );
+				$( '.site-title a, .site-description' ).css( {
+					'color': to
+				} );
+			}
+		} );
+	} );
+
+	// Background image
+	wp.customize( 'background_image', function( value ) {
+		value.bind( function( to ) {
+
+			var file = to.split(/[\\/]/).pop(); //Get URL's filename to compare with the default
+			if ( 'toujoursbackground20160105.png' == file ) { //If using the default background image
+				$( 'body' ).removeClass( 'user-background' );
+			} else {
+				$( 'body' ).addClass( 'user-background' );
+			}
+		} );
+	} );
+
+	// Background image
+	wp.customize( 'toujours_featured_image_borders', function( value ) {
+		value.bind( function( to ) {
+			if( to === false ) {
+				$( 'body' ).addClass( 'hide-featured-image-borders' );
+			} else {
+				$( 'body' ).removeClass( 'hide-featured-image-borders' );
+			}
+		} );
+	} );
+} )( jQuery );

+ 120 - 0
toujours/js/global.js

@@ -0,0 +1,120 @@
+/**
+ * global.js
+ *
+ * General JavaScript used throughout the theme.
+ *
+ */
+
+( function( $ ) {
+
+	/**
+	 *
+	 * Slideshow magic!
+	 *
+	 */
+
+	var $slideCount = $(".slides").find("li").length;
+
+	$( '#featured-slideshow .wrap .slideshow' ).flexslider( {
+		animation: 'slide',
+		directionNav: false,
+	} );
+
+	/* wrapping the dot nav in a div, and sticking the prev/next links in there for placement */
+	$( '.flex-control-nav' ).wrap( '<div class="slideshow-navigation"></div>' );
+
+	// make sure there's more than one slide before appending prev/next links
+	if ( $slideCount > 1 ) {
+		$( '.slideshow-navigation' ).append( '<span class="next-slide"><span class="screen-reader-text">' + toujours_script_strings.next_link + '</span></span>' );
+		$( '.slideshow-navigation' ).prepend( '<span class="prev-slide"><span class="screen-reader-text">' + toujours_script_strings.previous_link + '</span></span>' );
+
+		/* ... then add some click events to those new buttons */
+		$( 'body' ).on( 'click', '.prev-slide', function() {
+			$('#featured-slideshow .wrap .slideshow').flexslider('prev');
+		} );
+
+		$( 'body' ).on( 'click', '.next-slide', function() {
+			$('#featured-slideshow .wrap .slideshow').flexslider('next');
+		} );
+	}
+
+	/* Make it possible to click the whole slide to get ot the post */
+	$( '.slide' ).each( function() {
+		// make sure the page isn't loaded in an iframe, like in the Customizer
+		if ( self == top ) {
+			var $link = $( '.posted-on a', this ).attr( 'href' );
+			$( this ).css( 'cursor', 'pointer' ).click( function(){
+				window.location = $link;
+			});
+		}
+	} );
+	/**
+	 * Search
+	 * Adding some JS so the faux button has a hover state
+	 */
+	$( '.search-submit' ).mouseenter( function() {
+		$( this ).parent().addClass( 'hover-button' );
+	} ).mouseleave( function() {
+		$( this ).parent().removeClass( 'hover-button' );
+	} );
+
+	/**
+	 * Masonry for footer widgets
+	 */
+
+	var ltr = true;
+	if ( $( 'html' ).attr( 'dir' ) == 'rtl') {
+		ltr = false;
+	}
+
+	function footerMasonry() {
+		var $footerContainer = $( '#footer-widgets .grid-layout' );
+		$footerContainer.imagesLoaded( function() {
+			$footerContainer.masonry( {
+				itemSelector: '.widget',
+				columnWidth: '#footer-widgets aside',
+				isOriginLeft: ltr,
+				gutter: 30,
+			} );
+		} );
+	}
+
+	/**
+	 * Masonry for Guestbook template
+	 */
+	function guestbookMasonry() {
+		var $guestbookContainer = $( '.page-template-guestbook #comments .comment-list');
+		$guestbookContainer.imagesLoaded( function() {
+			$guestbookContainer.masonry( {
+				itemSelector: '.comment',
+				isOriginLeft: ltr,
+				gutter: 30,
+			} );
+		} );
+	}
+
+	/**
+	 * Add class to tables to help make them responsive
+	 */
+	$( 'table' ).addClass( 'table' );
+	$( 'table' ).wrap( '<div class="table-responsive" />' );
+
+	var infiniteCount = 0;
+
+	$( document.body ).on( 'post-load', function() {
+		infiniteCount = infiniteCount + 1;
+		var infiniteItems = jQuery( '.infinite-wrap.infinite-view-' + infiniteCount );
+		infiniteItems.find( 'table' ).addClass( 'table' ).wrap( '<div class="table-responsive" />' );
+	});
+
+	/* Functions to fire on pageload */
+	$( window ).load( function() {
+
+		guestbookMasonry();
+		footerMasonry();
+
+		// re-fire widgets after a delay, for widgets loaded via JS
+		setTimeout( footerMasonry, 2500 );
+	} );
+
+} )( jQuery );

+ 893 - 0
toujours/js/imagesloaded.pk.js

@@ -0,0 +1,893 @@
+/*!
+ * imagesLoaded PACKAGED v3.1.8
+ * JavaScript is all like "You images are done yet or what?"
+ * MIT License
+ */
+
+
+/*!
+ * EventEmitter v4.2.6 - git.io/ee
+ * Oliver Caldwell
+ * MIT license
+ * @preserve
+ */
+
+(function () {
+	
+
+	/**
+	 * Class for managing events.
+	 * Can be extended to provide event functionality in other classes.
+	 *
+	 * @class EventEmitter Manages event registering and emitting.
+	 */
+	function EventEmitter() {}
+
+	// Shortcuts to improve speed and size
+	var proto = EventEmitter.prototype;
+	var exports = this;
+	var originalGlobalValue = exports.EventEmitter;
+
+	/**
+	 * Finds the index of the listener for the event in it's storage array.
+	 *
+	 * @param {Function[]} listeners Array of listeners to search through.
+	 * @param {Function} listener Method to look for.
+	 * @return {Number} Index of the specified listener, -1 if not found
+	 * @api private
+	 */
+	function indexOfListener(listeners, listener) {
+		var i = listeners.length;
+		while (i--) {
+			if (listeners[i].listener === listener) {
+				return i;
+			}
+		}
+
+		return -1;
+	}
+
+	/**
+	 * Alias a method while keeping the context correct, to allow for overwriting of target method.
+	 *
+	 * @param {String} name The name of the target method.
+	 * @return {Function} The aliased method
+	 * @api private
+	 */
+	function alias(name) {
+		return function aliasClosure() {
+			return this[name].apply(this, arguments);
+		};
+	}
+
+	/**
+	 * Returns the listener array for the specified event.
+	 * Will initialise the event object and listener arrays if required.
+	 * Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them.
+	 * Each property in the object response is an array of listener functions.
+	 *
+	 * @param {String|RegExp} evt Name of the event to return the listeners from.
+	 * @return {Function[]|Object} All listener functions for the event.
+	 */
+	proto.getListeners = function getListeners(evt) {
+		var events = this._getEvents();
+		var response;
+		var key;
+
+		// Return a concatenated array of all matching events if
+		// the selector is a regular expression.
+		if (typeof evt === 'object') {
+			response = {};
+			for (key in events) {
+				if (events.hasOwnProperty(key) && evt.test(key)) {
+					response[key] = events[key];
+				}
+			}
+		}
+		else {
+			response = events[evt] || (events[evt] = []);
+		}
+
+		return response;
+	};
+
+	/**
+	 * Takes a list of listener objects and flattens it into a list of listener functions.
+	 *
+	 * @param {Object[]} listeners Raw listener objects.
+	 * @return {Function[]} Just the listener functions.
+	 */
+	proto.flattenListeners = function flattenListeners(listeners) {
+		var flatListeners = [];
+		var i;
+
+		for (i = 0; i < listeners.length; i += 1) {
+			flatListeners.push(listeners[i].listener);
+		}
+
+		return flatListeners;
+	};
+
+	/**
+	 * Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful.
+	 *
+	 * @param {String|RegExp} evt Name of the event to return the listeners from.
+	 * @return {Object} All listener functions for an event in an object.
+	 */
+	proto.getListenersAsObject = function getListenersAsObject(evt) {
+		var listeners = this.getListeners(evt);
+		var response;
+
+		if (listeners instanceof Array) {
+			response = {};
+			response[evt] = listeners;
+		}
+
+		return response || listeners;
+	};
+
+	/**
+	 * Adds a listener function to the specified event.
+	 * The listener will not be added if it is a duplicate.
+	 * If the listener returns true then it will be removed after it is called.
+	 * If you pass a regular expression as the event name then the listener will be added to all events that match it.
+	 *
+	 * @param {String|RegExp} evt Name of the event to attach the listener to.
+	 * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.addListener = function addListener(evt, listener) {
+		var listeners = this.getListenersAsObject(evt);
+		var listenerIsWrapped = typeof listener === 'object';
+		var key;
+
+		for (key in listeners) {
+			if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) {
+				listeners[key].push(listenerIsWrapped ? listener : {
+					listener: listener,
+					once: false
+				});
+			}
+		}
+
+		return this;
+	};
+
+	/**
+	 * Alias of addListener
+	 */
+	proto.on = alias('addListener');
+
+	/**
+	 * Semi-alias of addListener. It will add a listener that will be
+	 * automatically removed after it's first execution.
+	 *
+	 * @param {String|RegExp} evt Name of the event to attach the listener to.
+	 * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.addOnceListener = function addOnceListener(evt, listener) {
+		return this.addListener(evt, {
+			listener: listener,
+			once: true
+		});
+	};
+
+	/**
+	 * Alias of addOnceListener.
+	 */
+	proto.once = alias('addOnceListener');
+
+	/**
+	 * Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad.
+	 * You need to tell it what event names should be matched by a regex.
+	 *
+	 * @param {String} evt Name of the event to create.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.defineEvent = function defineEvent(evt) {
+		this.getListeners(evt);
+		return this;
+	};
+
+	/**
+	 * Uses defineEvent to define multiple events.
+	 *
+	 * @param {String[]} evts An array of event names to define.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.defineEvents = function defineEvents(evts) {
+		for (var i = 0; i < evts.length; i += 1) {
+			this.defineEvent(evts[i]);
+		}
+		return this;
+	};
+
+	/**
+	 * Removes a listener function from the specified event.
+	 * When passed a regular expression as the event name, it will remove the listener from all events that match it.
+	 *
+	 * @param {String|RegExp} evt Name of the event to remove the listener from.
+	 * @param {Function} listener Method to remove from the event.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.removeListener = function removeListener(evt, listener) {
+		var listeners = this.getListenersAsObject(evt);
+		var index;
+		var key;
+
+		for (key in listeners) {
+			if (listeners.hasOwnProperty(key)) {
+				index = indexOfListener(listeners[key], listener);
+
+				if (index !== -1) {
+					listeners[key].splice(index, 1);
+				}
+			}
+		}
+
+		return this;
+	};
+
+	/**
+	 * Alias of removeListener
+	 */
+	proto.off = alias('removeListener');
+
+	/**
+	 * Adds listeners in bulk using the manipulateListeners method.
+	 * If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added.
+	 * You can also pass it a regular expression to add the array of listeners to all events that match it.
+	 * Yeah, this function does quite a bit. That's probably a bad thing.
+	 *
+	 * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once.
+	 * @param {Function[]} [listeners] An optional array of listener functions to add.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.addListeners = function addListeners(evt, listeners) {
+		// Pass through to manipulateListeners
+		return this.manipulateListeners(false, evt, listeners);
+	};
+
+	/**
+	 * Removes listeners in bulk using the manipulateListeners method.
+	 * If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.
+	 * You can also pass it an event name and an array of listeners to be removed.
+	 * You can also pass it a regular expression to remove the listeners from all events that match it.
+	 *
+	 * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once.
+	 * @param {Function[]} [listeners] An optional array of listener functions to remove.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.removeListeners = function removeListeners(evt, listeners) {
+		// Pass through to manipulateListeners
+		return this.manipulateListeners(true, evt, listeners);
+	};
+
+	/**
+	 * Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level.
+	 * The first argument will determine if the listeners are removed (true) or added (false).
+	 * If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.
+	 * You can also pass it an event name and an array of listeners to be added/removed.
+	 * You can also pass it a regular expression to manipulate the listeners of all events that match it.
+	 *
+	 * @param {Boolean} remove True if you want to remove listeners, false if you want to add.
+	 * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once.
+	 * @param {Function[]} [listeners] An optional array of listener functions to add/remove.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) {
+		var i;
+		var value;
+		var single = remove ? this.removeListener : this.addListener;
+		var multiple = remove ? this.removeListeners : this.addListeners;
+
+		// If evt is an object then pass each of it's properties to this method
+		if (typeof evt === 'object' && !(evt instanceof RegExp)) {
+			for (i in evt) {
+				if (evt.hasOwnProperty(i) && (value = evt[i])) {
+					// Pass the single listener straight through to the singular method
+					if (typeof value === 'function') {
+						single.call(this, i, value);
+					}
+					else {
+						// Otherwise pass back to the multiple function
+						multiple.call(this, i, value);
+					}
+				}
+			}
+		}
+		else {
+			// So evt must be a string
+			// And listeners must be an array of listeners
+			// Loop over it and pass each one to the multiple method
+			i = listeners.length;
+			while (i--) {
+				single.call(this, evt, listeners[i]);
+			}
+		}
+
+		return this;
+	};
+
+	/**
+	 * Removes all listeners from a specified event.
+	 * If you do not specify an event then all listeners will be removed.
+	 * That means every event will be emptied.
+	 * You can also pass a regex to remove all events that match it.
+	 *
+	 * @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.removeEvent = function removeEvent(evt) {
+		var type = typeof evt;
+		var events = this._getEvents();
+		var key;
+
+		// Remove different things depending on the state of evt
+		if (type === 'string') {
+			// Remove all listeners for the specified event
+			delete events[evt];
+		}
+		else if (type === 'object') {
+			// Remove all events matching the regex.
+			for (key in events) {
+				if (events.hasOwnProperty(key) && evt.test(key)) {
+					delete events[key];
+				}
+			}
+		}
+		else {
+			// Remove all listeners in all events
+			delete this._events;
+		}
+
+		return this;
+	};
+
+	/**
+	 * Alias of removeEvent.
+	 *
+	 * Added to mirror the node API.
+	 */
+	proto.removeAllListeners = alias('removeEvent');
+
+	/**
+	 * Emits an event of your choice.
+	 * When emitted, every listener attached to that event will be executed.
+	 * If you pass the optional argument array then those arguments will be passed to every listener upon execution.
+	 * Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately.
+	 * So they will not arrive within the array on the other side, they will be separate.
+	 * You can also pass a regular expression to emit to all events that match it.
+	 *
+	 * @param {String|RegExp} evt Name of the event to emit and execute listeners for.
+	 * @param {Array} [args] Optional array of arguments to be passed to each listener.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.emitEvent = function emitEvent(evt, args) {
+		var listeners = this.getListenersAsObject(evt);
+		var listener;
+		var i;
+		var key;
+		var response;
+
+		for (key in listeners) {
+			if (listeners.hasOwnProperty(key)) {
+				i = listeners[key].length;
+
+				while (i--) {
+					// If the listener returns true then it shall be removed from the event
+					// The function is executed either with a basic call or an apply if there is an args array
+					listener = listeners[key][i];
+
+					if (listener.once === true) {
+						this.removeListener(evt, listener.listener);
+					}
+
+					response = listener.listener.apply(this, args || []);
+
+					if (response === this._getOnceReturnValue()) {
+						this.removeListener(evt, listener.listener);
+					}
+				}
+			}
+		}
+
+		return this;
+	};
+
+	/**
+	 * Alias of emitEvent
+	 */
+	proto.trigger = alias('emitEvent');
+
+	/**
+	 * Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on.
+	 * As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it.
+	 *
+	 * @param {String|RegExp} evt Name of the event to emit and execute listeners for.
+	 * @param {...*} Optional additional arguments to be passed to each listener.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.emit = function emit(evt) {
+		var args = Array.prototype.slice.call(arguments, 1);
+		return this.emitEvent(evt, args);
+	};
+
+	/**
+	 * Sets the current value to check against when executing listeners. If a
+	 * listeners return value matches the one set here then it will be removed
+	 * after execution. This value defaults to true.
+	 *
+	 * @param {*} value The new value to check for when executing listeners.
+	 * @return {Object} Current instance of EventEmitter for chaining.
+	 */
+	proto.setOnceReturnValue = function setOnceReturnValue(value) {
+		this._onceReturnValue = value;
+		return this;
+	};
+
+	/**
+	 * Fetches the current value to check against when executing listeners. If
+	 * the listeners return value matches this one then it should be removed
+	 * automatically. It will return true by default.
+	 *
+	 * @return {*|Boolean} The current value to check for or the default, true.
+	 * @api private
+	 */
+	proto._getOnceReturnValue = function _getOnceReturnValue() {
+		if (this.hasOwnProperty('_onceReturnValue')) {
+			return this._onceReturnValue;
+		}
+		else {
+			return true;
+		}
+	};
+
+	/**
+	 * Fetches the events object and creates one if required.
+	 *
+	 * @return {Object} The events storage object.
+	 * @api private
+	 */
+	proto._getEvents = function _getEvents() {
+		return this._events || (this._events = {});
+	};
+
+	/**
+	 * Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version.
+	 *
+	 * @return {Function} Non conflicting EventEmitter class.
+	 */
+	EventEmitter.noConflict = function noConflict() {
+		exports.EventEmitter = originalGlobalValue;
+		return EventEmitter;
+	};
+
+	// Expose the class either via AMD, CommonJS or the global object
+	if (typeof define === 'function' && define.amd) {
+		define('eventEmitter/EventEmitter',[],function () {
+			return EventEmitter;
+		});
+	}
+	else if (typeof module === 'object' && module.exports){
+		module.exports = EventEmitter;
+	}
+	else {
+		this.EventEmitter = EventEmitter;
+	}
+}.call(this));
+
+/*!
+ * eventie v1.0.4
+ * event binding helper
+ *   eventie.bind( elem, 'click', myFn )
+ *   eventie.unbind( elem, 'click', myFn )
+ */
+
+/*jshint browser: true, undef: true, unused: true */
+/*global define: false */
+
+( function( window ) {
+
+
+
+var docElem = document.documentElement;
+
+var bind = function() {};
+
+function getIEEvent( obj ) {
+  var event = window.event;
+  // add event.target
+  event.target = event.target || event.srcElement || obj;
+  return event;
+}
+
+if ( docElem.addEventListener ) {
+  bind = function( obj, type, fn ) {
+    obj.addEventListener( type, fn, false );
+  };
+} else if ( docElem.attachEvent ) {
+  bind = function( obj, type, fn ) {
+    obj[ type + fn ] = fn.handleEvent ?
+      function() {
+        var event = getIEEvent( obj );
+        fn.handleEvent.call( fn, event );
+      } :
+      function() {
+        var event = getIEEvent( obj );
+        fn.call( obj, event );
+      };
+    obj.attachEvent( "on" + type, obj[ type + fn ] );
+  };
+}
+
+var unbind = function() {};
+
+if ( docElem.removeEventListener ) {
+  unbind = function( obj, type, fn ) {
+    obj.removeEventListener( type, fn, false );
+  };
+} else if ( docElem.detachEvent ) {
+  unbind = function( obj, type, fn ) {
+    obj.detachEvent( "on" + type, obj[ type + fn ] );
+    try {
+      delete obj[ type + fn ];
+    } catch ( err ) {
+      // can't delete window object properties
+      obj[ type + fn ] = undefined;
+    }
+  };
+}
+
+var eventie = {
+  bind: bind,
+  unbind: unbind
+};
+
+// transport
+if ( typeof define === 'function' && define.amd ) {
+  // AMD
+  define( 'eventie/eventie',eventie );
+} else {
+  // browser global
+  window.eventie = eventie;
+}
+
+})( this );
+
+/*!
+ * imagesLoaded v3.1.8
+ * JavaScript is all like "You images are done yet or what?"
+ * MIT License
+ */
+
+( function( window, factory ) { 
+  // universal module definition
+
+  /*global define: false, module: false, require: false */
+
+  if ( typeof define === 'function' && define.amd ) {
+    // AMD
+    define( [
+      'eventEmitter/EventEmitter',
+      'eventie/eventie'
+    ], function( EventEmitter, eventie ) {
+      return factory( window, EventEmitter, eventie );
+    });
+  } else if ( typeof exports === 'object' ) {
+    // CommonJS
+    module.exports = factory(
+      window,
+      require('wolfy87-eventemitter'),
+      require('eventie')
+    );
+  } else {
+    // browser global
+    window.imagesLoaded = factory(
+      window,
+      window.EventEmitter,
+      window.eventie
+    );
+  }
+
+})( window,
+
+// --------------------------  factory -------------------------- //
+
+function factory( window, EventEmitter, eventie ) {
+
+
+
+var $ = window.jQuery;
+var console = window.console;
+var hasConsole = typeof console !== 'undefined';
+
+// -------------------------- helpers -------------------------- //
+
+// extend objects
+function extend( a, b ) {
+  for ( var prop in b ) {
+    a[ prop ] = b[ prop ];
+  }
+  return a;
+}
+
+var objToString = Object.prototype.toString;
+function isArray( obj ) {
+  return objToString.call( obj ) === '[object Array]';
+}
+
+// turn element or nodeList into an array
+function makeArray( obj ) {
+  var ary = [];
+  if ( isArray( obj ) ) {
+    // use object if already an array
+    ary = obj;
+  } else if ( typeof obj.length === 'number' ) {
+    // convert nodeList to array
+    for ( var i=0, len = obj.length; i < len; i++ ) {
+      ary.push( obj[i] );
+    }
+  } else {
+    // array of single index
+    ary.push( obj );
+  }
+  return ary;
+}
+
+  // -------------------------- imagesLoaded -------------------------- //
+
+  /**
+   * @param {Array, Element, NodeList, String} elem
+   * @param {Object or Function} options - if function, use as callback
+   * @param {Function} onAlways - callback function
+   */
+  function ImagesLoaded( elem, options, onAlways ) {
+    // coerce ImagesLoaded() without new, to be new ImagesLoaded()
+    if ( !( this instanceof ImagesLoaded ) ) {
+      return new ImagesLoaded( elem, options );
+    }
+    // use elem as selector string
+    if ( typeof elem === 'string' ) {
+      elem = document.querySelectorAll( elem );
+    }
+
+    this.elements = makeArray( elem );
+    this.options = extend( {}, this.options );
+
+    if ( typeof options === 'function' ) {
+      onAlways = options;
+    } else {
+      extend( this.options, options );
+    }
+
+    if ( onAlways ) {
+      this.on( 'always', onAlways );
+    }
+
+    this.getImages();
+
+    if ( $ ) {
+      // add jQuery Deferred object
+      this.jqDeferred = new $.Deferred();
+    }
+
+    // HACK check async to allow time to bind listeners
+    var _this = this;
+    setTimeout( function() {
+      _this.check();
+    });
+  }
+
+  ImagesLoaded.prototype = new EventEmitter();
+
+  ImagesLoaded.prototype.options = {};
+
+  ImagesLoaded.prototype.getImages = function() {
+    this.images = [];
+
+    // filter & find items if we have an item selector
+    for ( var i=0, len = this.elements.length; i < len; i++ ) {
+      var elem = this.elements[i];
+      // filter siblings
+      if ( elem.nodeName === 'IMG' ) {
+        this.addImage( elem );
+      }
+      // find children
+      // no non-element nodes, #143
+      var nodeType = elem.nodeType;
+      if ( !nodeType || !( nodeType === 1 || nodeType === 9 || nodeType === 11 ) ) {
+        continue;
+      }
+      var childElems = elem.querySelectorAll('img');
+      // concat childElems to filterFound array
+      for ( var j=0, jLen = childElems.length; j < jLen; j++ ) {
+        var img = childElems[j];
+        this.addImage( img );
+      }
+    }
+  };
+
+  /**
+   * @param {Image} img
+   */
+  ImagesLoaded.prototype.addImage = function( img ) {
+    var loadingImage = new LoadingImage( img );
+    this.images.push( loadingImage );
+  };
+
+  ImagesLoaded.prototype.check = function() {
+    var _this = this;
+    var checkedCount = 0;
+    var length = this.images.length;
+    this.hasAnyBroken = false;
+    // complete if no images
+    if ( !length ) {
+      this.complete();
+      return;
+    }
+
+    function onConfirm( image, message ) {
+      if ( _this.options.debug && hasConsole ) {
+        console.log( 'confirm', image, message );
+      }
+
+      _this.progress( image );
+      checkedCount++;
+      if ( checkedCount === length ) {
+        _this.complete();
+      }
+      return true; // bind once
+    }
+
+    for ( var i=0; i < length; i++ ) {
+      var loadingImage = this.images[i];
+      loadingImage.on( 'confirm', onConfirm );
+      loadingImage.check();
+    }
+  };
+
+  ImagesLoaded.prototype.progress = function( image ) {
+    this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded;
+    // HACK - Chrome triggers event before object properties have changed. #83
+    var _this = this;
+    setTimeout( function() {
+      _this.emit( 'progress', _this, image );
+      if ( _this.jqDeferred && _this.jqDeferred.notify ) {
+        _this.jqDeferred.notify( _this, image );
+      }
+    });
+  };
+
+  ImagesLoaded.prototype.complete = function() {
+    var eventName = this.hasAnyBroken ? 'fail' : 'done';
+    this.isComplete = true;
+    var _this = this;
+    // HACK - another setTimeout so that confirm happens after progress
+    setTimeout( function() {
+      _this.emit( eventName, _this );
+      _this.emit( 'always', _this );
+      if ( _this.jqDeferred ) {
+        var jqMethod = _this.hasAnyBroken ? 'reject' : 'resolve';
+        _this.jqDeferred[ jqMethod ]( _this );
+      }
+    });
+  };
+
+  // -------------------------- jquery -------------------------- //
+
+  if ( $ ) {
+    $.fn.imagesLoaded = function( options, callback ) {
+      var instance = new ImagesLoaded( this, options, callback );
+      return instance.jqDeferred.promise( $(this) );
+    };
+  }
+
+
+  // --------------------------  -------------------------- //
+
+  function LoadingImage( img ) {
+    this.img = img;
+  }
+
+  LoadingImage.prototype = new EventEmitter();
+
+  LoadingImage.prototype.check = function() {
+    // first check cached any previous images that have same src
+    var resource = cache[ this.img.src ] || new Resource( this.img.src );
+    if ( resource.isConfirmed ) {
+      this.confirm( resource.isLoaded, 'cached was confirmed' );
+      return;
+    }
+
+    // If complete is true and browser supports natural sizes,
+    // try to check for image status manually.
+    if ( this.img.complete && this.img.naturalWidth !== undefined ) {
+      // report based on naturalWidth
+      this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );
+      return;
+    }
+
+    // If none of the checks above matched, simulate loading on detached element.
+    var _this = this;
+    resource.on( 'confirm', function( resrc, message ) {
+      _this.confirm( resrc.isLoaded, message );
+      return true;
+    });
+
+    resource.check();
+  };
+
+  LoadingImage.prototype.confirm = function( isLoaded, message ) {
+    this.isLoaded = isLoaded;
+    this.emit( 'confirm', this, message );
+  };
+
+  // -------------------------- Resource -------------------------- //
+
+  // Resource checks each src, only once
+  // separate class from LoadingImage to prevent memory leaks. See #115
+
+  var cache = {};
+
+  function Resource( src ) {
+    this.src = src;
+    // add to cache
+    cache[ src ] = this;
+  }
+
+  Resource.prototype = new EventEmitter();
+
+  Resource.prototype.check = function() {
+    // only trigger checking once
+    if ( this.isChecked ) {
+      return;
+    }
+    // simulate loading on detached element
+    var proxyImage = new Image();
+    eventie.bind( proxyImage, 'load', this );
+    eventie.bind( proxyImage, 'error', this );
+    proxyImage.src = this.src;
+    // set flag
+    this.isChecked = true;
+  };
+
+  // ----- events ----- //
+
+  // trigger specified handler for event type
+  Resource.prototype.handleEvent = function( event ) {
+    var method = 'on' + event.type;
+    if ( this[ method ] ) {
+      this[ method ]( event );
+    }
+  };
+
+  Resource.prototype.onload = function( event ) {
+    this.confirm( true, 'onload' );
+    this.unbindProxyEvents( event );
+  };
+
+  Resource.prototype.onerror = function( event ) {
+    this.confirm( false, 'onerror' );
+    this.unbindProxyEvents( event );
+  };
+
+  // ----- confirm ----- //
+
+  Resource.prototype.confirm = function( isLoaded, message ) {
+    this.isConfirmed = true;
+    this.isLoaded = isLoaded;
+    this.emit( 'confirm', this, message );
+  };
+
+  Resource.prototype.unbindProxyEvents = function( event ) {
+    eventie.unbind( event.target, 'load', this );
+    eventie.unbind( event.target, 'error', this );
+  };
+
+  // -----  ----- //
+
+  return ImagesLoaded;
+
+});

+ 1195 - 0
toujours/js/jquery.flexslider.js

@@ -0,0 +1,1195 @@
+/*
+ * jQuery FlexSlider v2.6.0
+ * Copyright 2012 WooThemes
+ * Contributing Author: Tyler Smith
+ */
+;
+(function ($) {
+
+  var focused = true;
+
+  //FlexSlider: Object Instance
+  $.flexslider = function(el, options) {
+    var slider = $(el);
+
+    // making variables public
+    slider.vars = $.extend({}, $.flexslider.defaults, options);
+
+    var namespace = slider.vars.namespace,
+        msGesture = window.navigator && window.navigator.msPointerEnabled && window.MSGesture,
+        touch = (( "ontouchstart" in window ) || msGesture || window.DocumentTouch && document instanceof DocumentTouch) && slider.vars.touch,
+        // depricating this idea, as devices are being released with both of these events
+        eventType = "click touchend MSPointerUp keyup",
+        watchedEvent = "",
+        watchedEventClearTimer,
+        vertical = slider.vars.direction === "vertical",
+        reverse = slider.vars.reverse,
+        carousel = (slider.vars.itemWidth > 0),
+        fade = slider.vars.animation === "fade",
+        asNav = slider.vars.asNavFor !== "",
+        methods = {};
+
+    // Store a reference to the slider object
+    $.data(el, "flexslider", slider);
+
+    // Private slider methods
+    methods = {
+      init: function() {
+        slider.animating = false;
+        // Get current slide and make sure it is a number
+        slider.currentSlide = parseInt( ( slider.vars.startAt ? slider.vars.startAt : 0), 10 );
+        if ( isNaN( slider.currentSlide ) ) { slider.currentSlide = 0; }
+        slider.animatingTo = slider.currentSlide;
+        slider.atEnd = (slider.currentSlide === 0 || slider.currentSlide === slider.last);
+        slider.containerSelector = slider.vars.selector.substr(0,slider.vars.selector.search(' '));
+        slider.slides = $(slider.vars.selector, slider);
+        slider.container = $(slider.containerSelector, slider);
+        slider.count = slider.slides.length;
+        // SYNC:
+        slider.syncExists = $(slider.vars.sync).length > 0;
+        // SLIDE:
+        if (slider.vars.animation === "slide") { slider.vars.animation = "swing"; }
+        slider.prop = (vertical) ? "top" : "marginLeft";
+        slider.args = {};
+        // SLIDESHOW:
+        slider.manualPause = false;
+        slider.stopped = false;
+        //PAUSE WHEN INVISIBLE
+        slider.started = false;
+        slider.startTimeout = null;
+        // TOUCH/USECSS:
+        slider.transitions = !slider.vars.video && !fade && slider.vars.useCSS && (function() {
+          var obj = document.createElement('div'),
+              props = ['perspectiveProperty', 'WebkitPerspective', 'MozPerspective', 'OPerspective', 'msPerspective'];
+          for (var i in props) {
+            if ( obj.style[ props[i] ] !== undefined ) {
+              slider.pfx = props[i].replace('Perspective','').toLowerCase();
+              slider.prop = "-" + slider.pfx + "-transform";
+              return true;
+            }
+          }
+          return false;
+        }());
+        slider.ensureAnimationEnd = '';
+        // CONTROLSCONTAINER:
+        if (slider.vars.controlsContainer !== "") slider.controlsContainer = $(slider.vars.controlsContainer).length > 0 && $(slider.vars.controlsContainer);
+        // MANUAL:
+        if (slider.vars.manualControls !== "") slider.manualControls = $(slider.vars.manualControls).length > 0 && $(slider.vars.manualControls);
+
+        // CUSTOM DIRECTION NAV:
+        if (slider.vars.customDirectionNav !== "") slider.customDirectionNav = $(slider.vars.customDirectionNav).length === 2 && $(slider.vars.customDirectionNav);
+
+        // RANDOMIZE:
+        if (slider.vars.randomize) {
+          slider.slides.sort(function() { return (Math.round(Math.random())-0.5); });
+          slider.container.empty().append(slider.slides);
+        }
+
+        slider.doMath();
+
+        // INIT
+        slider.setup("init");
+
+        // CONTROLNAV:
+        if (slider.vars.controlNav) { methods.controlNav.setup(); }
+
+        // DIRECTIONNAV:
+        if (slider.vars.directionNav) { methods.directionNav.setup(); }
+
+        // KEYBOARD:
+        if (slider.vars.keyboard && ($(slider.containerSelector).length === 1 || slider.vars.multipleKeyboard)) {
+          $(document).bind('keyup', function(event) {
+            var keycode = event.keyCode;
+            if (!slider.animating && (keycode === 39 || keycode === 37)) {
+              var target = (keycode === 39) ? slider.getTarget('next') :
+                           (keycode === 37) ? slider.getTarget('prev') : false;
+              slider.flexAnimate(target, slider.vars.pauseOnAction);
+            }
+          });
+        }
+        // MOUSEWHEEL:
+        if (slider.vars.mousewheel) {
+          slider.bind('mousewheel', function(event, delta, deltaX, deltaY) {
+            event.preventDefault();
+            var target = (delta < 0) ? slider.getTarget('next') : slider.getTarget('prev');
+            slider.flexAnimate(target, slider.vars.pauseOnAction);
+          });
+        }
+
+        // PAUSEPLAY
+        if (slider.vars.pausePlay) { methods.pausePlay.setup(); }
+
+        //PAUSE WHEN INVISIBLE
+        if (slider.vars.slideshow && slider.vars.pauseInvisible) { methods.pauseInvisible.init(); }
+
+        // SLIDSESHOW
+        if (slider.vars.slideshow) {
+          if (slider.vars.pauseOnHover) {
+            slider.hover(function() {
+              if (!slider.manualPlay && !slider.manualPause) { slider.pause(); }
+            }, function() {
+              if (!slider.manualPause && !slider.manualPlay && !slider.stopped) { slider.play(); }
+            });
+          }
+          // initialize animation
+          //If we're visible, or we don't use PageVisibility API
+          if(!slider.vars.pauseInvisible || !methods.pauseInvisible.isHidden()) {
+            (slider.vars.initDelay > 0) ? slider.startTimeout = setTimeout(slider.play, slider.vars.initDelay) : slider.play();
+          }
+        }
+
+        // ASNAV:
+        if (asNav) { methods.asNav.setup(); }
+
+        // TOUCH
+        if (touch && slider.vars.touch) { methods.touch(); }
+
+        // FADE&&SMOOTHHEIGHT || SLIDE:
+        if (!fade || (fade && slider.vars.smoothHeight)) { $(window).bind("resize orientationchange focus", methods.resize); }
+
+        slider.find("img").attr("draggable", "false");
+
+        // API: start() Callback
+        setTimeout(function(){
+          slider.vars.start(slider);
+        }, 200);
+      },
+      asNav: {
+        setup: function() {
+          slider.asNav = true;
+          slider.animatingTo = Math.floor(slider.currentSlide/slider.move);
+          slider.currentItem = slider.currentSlide;
+          slider.slides.removeClass(namespace + "active-slide").eq(slider.currentItem).addClass(namespace + "active-slide");
+          if(!msGesture){
+              slider.slides.on(eventType, function(e){
+                e.preventDefault();
+                var $slide = $(this),
+                    target = $slide.index();
+                var posFromLeft = $slide.offset().left - $(slider).scrollLeft(); // Find position of slide relative to left of slider container
+                if( posFromLeft <= 0 && $slide.hasClass( namespace + 'active-slide' ) ) {
+                  slider.flexAnimate(slider.getTarget("prev"), true);
+                } else if (!$(slider.vars.asNavFor).data('flexslider').animating && !$slide.hasClass(namespace + "active-slide")) {
+                  slider.direction = (slider.currentItem < target) ? "next" : "prev";
+                  slider.flexAnimate(target, slider.vars.pauseOnAction, false, true, true);
+                }
+              });
+          }else{
+              el._slider = slider;
+              slider.slides.each(function (){
+                  var that = this;
+                  that._gesture = new MSGesture();
+                  that._gesture.target = that;
+                  that.addEventListener("MSPointerDown", function (e){
+                      e.preventDefault();
+                      if(e.currentTarget._gesture) {
+                        e.currentTarget._gesture.addPointer(e.pointerId);
+                      }
+                  }, false);
+                  that.addEventListener("MSGestureTap", function (e){
+                      e.preventDefault();
+                      var $slide = $(this),
+                          target = $slide.index();
+                      if (!$(slider.vars.asNavFor).data('flexslider').animating && !$slide.hasClass('active')) {
+                          slider.direction = (slider.currentItem < target) ? "next" : "prev";
+                          slider.flexAnimate(target, slider.vars.pauseOnAction, false, true, true);
+                      }
+                  });
+              });
+          }
+        }
+      },
+      controlNav: {
+        setup: function() {
+          if (!slider.manualControls) {
+            methods.controlNav.setupPaging();
+          } else { // MANUALCONTROLS:
+            methods.controlNav.setupManual();
+          }
+        },
+        setupPaging: function() {
+          var type = (slider.vars.controlNav === "thumbnails") ? 'control-thumbs' : 'control-paging',
+              j = 1,
+              item,
+              slide;
+
+          slider.controlNavScaffold = $('<ol class="'+ namespace + 'control-nav ' + namespace + type + '"></ol>');
+
+          if (slider.pagingCount > 1) {
+            for (var i = 0; i < slider.pagingCount; i++) {
+              slide = slider.slides.eq(i);
+              if ( undefined === slide.attr( 'data-thumb-alt' ) ) { slide.attr( 'data-thumb-alt', '' ); }
+              altText = ( '' !== slide.attr( 'data-thumb-alt' ) ) ? altText = ' alt="' + slide.attr( 'data-thumb-alt' ) + '"' : '';
+              item = (slider.vars.controlNav === "thumbnails") ? '<img src="' + slide.attr( 'data-thumb' ) + '"' + altText + '/>' : '<a href="#">' + j + '</a>';
+              if ( 'thumbnails' === slider.vars.controlNav && true === slider.vars.thumbCaptions ) {
+                var captn = slide.attr( 'data-thumbcaption' );
+                if ( '' !== captn && undefined !== captn ) { item += '<span class="' + namespace + 'caption">' + captn + '</span>'; }
+              }
+              slider.controlNavScaffold.append('<li>' + item + '</li>');
+              j++;
+            }
+          }
+
+          // CONTROLSCONTAINER:
+          (slider.controlsContainer) ? $(slider.controlsContainer).append(slider.controlNavScaffold) : slider.append(slider.controlNavScaffold);
+          methods.controlNav.set();
+
+          methods.controlNav.active();
+
+          slider.controlNavScaffold.delegate('a, img', eventType, function(event) {
+            event.preventDefault();
+
+            if (watchedEvent === "" || watchedEvent === event.type) {
+              var $this = $(this),
+                  target = slider.controlNav.index($this);
+
+              if (!$this.hasClass(namespace + 'active')) {
+                slider.direction = (target > slider.currentSlide) ? "next" : "prev";
+                slider.flexAnimate(target, slider.vars.pauseOnAction);
+              }
+            }
+
+            // setup flags to prevent event duplication
+            if (watchedEvent === "") {
+              watchedEvent = event.type;
+            }
+            methods.setToClearWatchedEvent();
+
+          });
+        },
+        setupManual: function() {
+          slider.controlNav = slider.manualControls;
+          methods.controlNav.active();
+
+          slider.controlNav.bind(eventType, function(event) {
+            event.preventDefault();
+
+            if (watchedEvent === "" || watchedEvent === event.type) {
+              var $this = $(this),
+                  target = slider.controlNav.index($this);
+
+              if (!$this.hasClass(namespace + 'active')) {
+                (target > slider.currentSlide) ? slider.direction = "next" : slider.direction = "prev";
+                slider.flexAnimate(target, slider.vars.pauseOnAction);
+              }
+            }
+
+            // setup flags to prevent event duplication
+            if (watchedEvent === "") {
+              watchedEvent = event.type;
+            }
+            methods.setToClearWatchedEvent();
+          });
+        },
+        set: function() {
+          var selector = (slider.vars.controlNav === "thumbnails") ? 'img' : 'a';
+          slider.controlNav = $('.' + namespace + 'control-nav li ' + selector, (slider.controlsContainer) ? slider.controlsContainer : slider);
+        },
+        active: function() {
+          slider.controlNav.removeClass(namespace + "active").eq(slider.animatingTo).addClass(namespace + "active");
+        },
+        update: function(action, pos) {
+          if (slider.pagingCount > 1 && action === "add") {
+            slider.controlNavScaffold.append($('<li><a href="#">' + slider.count + '</a></li>'));
+          } else if (slider.pagingCount === 1) {
+            slider.controlNavScaffold.find('li').remove();
+          } else {
+            slider.controlNav.eq(pos).closest('li').remove();
+          }
+          methods.controlNav.set();
+          (slider.pagingCount > 1 && slider.pagingCount !== slider.controlNav.length) ? slider.update(pos, action) : methods.controlNav.active();
+        }
+      },
+      directionNav: {
+        setup: function() {
+          var directionNavScaffold = $('<ul class="' + namespace + 'direction-nav"><li class="' + namespace + 'nav-prev"><a class="' + namespace + 'prev" href="#">' + slider.vars.prevText + '</a></li><li class="' + namespace + 'nav-next"><a class="' + namespace + 'next" href="#">' + slider.vars.nextText + '</a></li></ul>');
+
+          // CUSTOM DIRECTION NAV:
+          if (slider.customDirectionNav) {
+            slider.directionNav = slider.customDirectionNav;
+          // CONTROLSCONTAINER:
+          } else if (slider.controlsContainer) {
+            $(slider.controlsContainer).append(directionNavScaffold);
+            slider.directionNav = $('.' + namespace + 'direction-nav li a', slider.controlsContainer);
+          } else {
+            slider.append(directionNavScaffold);
+            slider.directionNav = $('.' + namespace + 'direction-nav li a', slider);
+          }
+
+          methods.directionNav.update();
+
+          slider.directionNav.bind(eventType, function(event) {
+            event.preventDefault();
+            var target;
+
+            if (watchedEvent === "" || watchedEvent === event.type) {
+              target = ($(this).hasClass(namespace + 'next')) ? slider.getTarget('next') : slider.getTarget('prev');
+              slider.flexAnimate(target, slider.vars.pauseOnAction);
+            }
+
+            // setup flags to prevent event duplication
+            if (watchedEvent === "") {
+              watchedEvent = event.type;
+            }
+            methods.setToClearWatchedEvent();
+          });
+        },
+        update: function() {
+          var disabledClass = namespace + 'disabled';
+          if (slider.pagingCount === 1) {
+            slider.directionNav.addClass(disabledClass).attr('tabindex', '-1');
+          } else if (!slider.vars.animationLoop) {
+            if (slider.animatingTo === 0) {
+              slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "prev").addClass(disabledClass).attr('tabindex', '-1');
+            } else if (slider.animatingTo === slider.last) {
+              slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "next").addClass(disabledClass).attr('tabindex', '-1');
+            } else {
+              slider.directionNav.removeClass(disabledClass).removeAttr('tabindex');
+            }
+          } else {
+            slider.directionNav.removeClass(disabledClass).removeAttr('tabindex');
+          }
+        }
+      },
+      pausePlay: {
+        setup: function() {
+          var pausePlayScaffold = $('<div class="' + namespace + 'pauseplay"><a href="#"></a></div>');
+
+          // CONTROLSCONTAINER:
+          if (slider.controlsContainer) {
+            slider.controlsContainer.append(pausePlayScaffold);
+            slider.pausePlay = $('.' + namespace + 'pauseplay a', slider.controlsContainer);
+          } else {
+            slider.append(pausePlayScaffold);
+            slider.pausePlay = $('.' + namespace + 'pauseplay a', slider);
+          }
+
+          methods.pausePlay.update((slider.vars.slideshow) ? namespace + 'pause' : namespace + 'play');
+
+          slider.pausePlay.bind(eventType, function(event) {
+            event.preventDefault();
+
+            if (watchedEvent === "" || watchedEvent === event.type) {
+              if ($(this).hasClass(namespace + 'pause')) {
+                slider.manualPause = true;
+                slider.manualPlay = false;
+                slider.pause();
+              } else {
+                slider.manualPause = false;
+                slider.manualPlay = true;
+                slider.play();
+              }
+            }
+
+            // setup flags to prevent event duplication
+            if (watchedEvent === "") {
+              watchedEvent = event.type;
+            }
+            methods.setToClearWatchedEvent();
+          });
+        },
+        update: function(state) {
+          (state === "play") ? slider.pausePlay.removeClass(namespace + 'pause').addClass(namespace + 'play').html(slider.vars.playText) : slider.pausePlay.removeClass(namespace + 'play').addClass(namespace + 'pause').html(slider.vars.pauseText);
+        }
+      },
+      touch: function() {
+        var startX,
+          startY,
+          offset,
+          cwidth,
+          dx,
+          startT,
+          onTouchStart,
+          onTouchMove,
+          onTouchEnd,
+          scrolling = false,
+          localX = 0,
+          localY = 0,
+          accDx = 0;
+
+        if(!msGesture){
+            onTouchStart = function(e) {
+              if (slider.animating) {
+                e.preventDefault();
+              } else if ( ( window.navigator.msPointerEnabled ) || e.touches.length === 1 ) {
+                slider.pause();
+                // CAROUSEL:
+                cwidth = (vertical) ? slider.h : slider. w;
+                startT = Number(new Date());
+                // CAROUSEL:
+
+                // Local vars for X and Y points.
+                localX = e.touches[0].pageX;
+                localY = e.touches[0].pageY;
+
+                offset = (carousel && reverse && slider.animatingTo === slider.last) ? 0 :
+                         (carousel && reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) :
+                         (carousel && slider.currentSlide === slider.last) ? slider.limit :
+                         (carousel) ? ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.currentSlide :
+                         (reverse) ? (slider.last - slider.currentSlide + slider.cloneOffset) * cwidth : (slider.currentSlide + slider.cloneOffset) * cwidth;
+                startX = (vertical) ? localY : localX;
+                startY = (vertical) ? localX : localY;
+
+                el.addEventListener('touchmove', onTouchMove, false);
+                el.addEventListener('touchend', onTouchEnd, false);
+              }
+            };
+
+            onTouchMove = function(e) {
+              // Local vars for X and Y points.
+
+              localX = e.touches[0].pageX;
+              localY = e.touches[0].pageY;
+
+              dx = (vertical) ? startX - localY : startX - localX;
+              scrolling = (vertical) ? (Math.abs(dx) < Math.abs(localX - startY)) : (Math.abs(dx) < Math.abs(localY - startY));
+
+              var fxms = 500;
+
+              if ( ! scrolling || Number( new Date() ) - startT > fxms ) {
+                e.preventDefault();
+                if (!fade && slider.transitions) {
+                  if (!slider.vars.animationLoop) {
+                    dx = dx/((slider.currentSlide === 0 && dx < 0 || slider.currentSlide === slider.last && dx > 0) ? (Math.abs(dx)/cwidth+2) : 1);
+                  }
+                  slider.setProps(offset + dx, "setTouch");
+                }
+              }
+            };
+
+            onTouchEnd = function(e) {
+              // finish the touch by undoing the touch session
+              el.removeEventListener('touchmove', onTouchMove, false);
+
+              if (slider.animatingTo === slider.currentSlide && !scrolling && !(dx === null)) {
+                var updateDx = (reverse) ? -dx : dx,
+                    target = (updateDx > 0) ? slider.getTarget('next') : slider.getTarget('prev');
+
+                if (slider.canAdvance(target) && (Number(new Date()) - startT < 550 && Math.abs(updateDx) > 50 || Math.abs(updateDx) > cwidth/2)) {
+                  slider.flexAnimate(target, slider.vars.pauseOnAction);
+                } else {
+                  if (!fade) { slider.flexAnimate(slider.currentSlide, slider.vars.pauseOnAction, true); }
+                }
+              }
+              el.removeEventListener('touchend', onTouchEnd, false);
+
+              startX = null;
+              startY = null;
+              dx = null;
+              offset = null;
+            };
+
+            el.addEventListener('touchstart', onTouchStart, false);
+        }else{
+            el.style.msTouchAction = "none";
+            el._gesture = new MSGesture();
+            el._gesture.target = el;
+            el.addEventListener("MSPointerDown", onMSPointerDown, false);
+            el._slider = slider;
+            el.addEventListener("MSGestureChange", onMSGestureChange, false);
+            el.addEventListener("MSGestureEnd", onMSGestureEnd, false);
+
+            function onMSPointerDown(e){
+                e.stopPropagation();
+                if (slider.animating) {
+                    e.preventDefault();
+                }else{
+                    slider.pause();
+                    el._gesture.addPointer(e.pointerId);
+                    accDx = 0;
+                    cwidth = (vertical) ? slider.h : slider. w;
+                    startT = Number(new Date());
+                    // CAROUSEL:
+
+                    offset = (carousel && reverse && slider.animatingTo === slider.last) ? 0 :
+                        (carousel && reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) :
+                            (carousel && slider.currentSlide === slider.last) ? slider.limit :
+                                (carousel) ? ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.currentSlide :
+                                    (reverse) ? (slider.last - slider.currentSlide + slider.cloneOffset) * cwidth : (slider.currentSlide + slider.cloneOffset) * cwidth;
+                }
+            }
+
+            function onMSGestureChange(e) {
+                e.stopPropagation();
+                var slider = e.target._slider;
+                if(!slider){
+                    return;
+                }
+                var transX = -e.translationX,
+                    transY = -e.translationY;
+
+                //Accumulate translations.
+                accDx = accDx + ((vertical) ? transY : transX);
+                dx = accDx;
+                scrolling = (vertical) ? (Math.abs(accDx) < Math.abs(-transX)) : (Math.abs(accDx) < Math.abs(-transY));
+
+                if(e.detail === e.MSGESTURE_FLAG_INERTIA){
+                    setImmediate(function (){
+                        el._gesture.stop();
+                    });
+
+                    return;
+                }
+
+                if (!scrolling || Number(new Date()) - startT > 500) {
+                    e.preventDefault();
+                    if (!fade && slider.transitions) {
+                        if (!slider.vars.animationLoop) {
+                            dx = accDx / ((slider.currentSlide === 0 && accDx < 0 || slider.currentSlide === slider.last && accDx > 0) ? (Math.abs(accDx) / cwidth + 2) : 1);
+                        }
+                        slider.setProps(offset + dx, "setTouch");
+                    }
+                }
+            }
+
+            function onMSGestureEnd(e) {
+                e.stopPropagation();
+                var slider = e.target._slider;
+                if(!slider){
+                    return;
+                }
+                if (slider.animatingTo === slider.currentSlide && !scrolling && !(dx === null)) {
+                    var updateDx = (reverse) ? -dx : dx,
+                        target = (updateDx > 0) ? slider.getTarget('next') : slider.getTarget('prev');
+
+                    if (slider.canAdvance(target) && (Number(new Date()) - startT < 550 && Math.abs(updateDx) > 50 || Math.abs(updateDx) > cwidth/2)) {
+                        slider.flexAnimate(target, slider.vars.pauseOnAction);
+                    } else {
+                        if (!fade) { slider.flexAnimate(slider.currentSlide, slider.vars.pauseOnAction, true); }
+                    }
+                }
+
+                startX = null;
+                startY = null;
+                dx = null;
+                offset = null;
+                accDx = 0;
+            }
+        }
+      },
+      resize: function() {
+        if (!slider.animating && slider.is(':visible')) {
+          if (!carousel) { slider.doMath(); }
+
+          if (fade) {
+            // SMOOTH HEIGHT:
+            methods.smoothHeight();
+          } else if (carousel) { //CAROUSEL:
+            slider.slides.width(slider.computedW);
+            slider.update(slider.pagingCount);
+            slider.setProps();
+          }
+          else if (vertical) { //VERTICAL:
+            slider.viewport.height(slider.h);
+            slider.setProps(slider.h, "setTotal");
+          } else {
+            // SMOOTH HEIGHT:
+            if (slider.vars.smoothHeight) { methods.smoothHeight(); }
+            slider.newSlides.width(slider.computedW);
+            slider.setProps(slider.computedW, "setTotal");
+          }
+        }
+      },
+      smoothHeight: function(dur) {
+        if (!vertical || fade) {
+          var $obj = (fade) ? slider : slider.viewport;
+          (dur) ? $obj.animate({"height": slider.slides.eq(slider.animatingTo).height()}, dur) : $obj.height(slider.slides.eq(slider.animatingTo).height());
+        }
+      },
+      sync: function(action) {
+        var $obj = $(slider.vars.sync).data("flexslider"),
+            target = slider.animatingTo;
+
+        switch (action) {
+          case "animate": $obj.flexAnimate(target, slider.vars.pauseOnAction, false, true); break;
+          case "play": if (!$obj.playing && !$obj.asNav) { $obj.play(); } break;
+          case "pause": $obj.pause(); break;
+        }
+      },
+      uniqueID: function($clone) {
+        // Append _clone to current level and children elements with id attributes
+        $clone.filter( '[id]' ).add($clone.find( '[id]' )).each(function() {
+          var $this = $(this);
+          $this.attr( 'id', $this.attr( 'id' ) + '_clone' );
+        });
+        return $clone;
+      },
+      pauseInvisible: {
+        visProp: null,
+        init: function() {
+          var visProp = methods.pauseInvisible.getHiddenProp();
+          if (visProp) {
+            var evtname = visProp.replace(/[H|h]idden/,'') + 'visibilitychange';
+            document.addEventListener(evtname, function() {
+              if (methods.pauseInvisible.isHidden()) {
+                if(slider.startTimeout) {
+                  clearTimeout(slider.startTimeout); //If clock is ticking, stop timer and prevent from starting while invisible
+                } else {
+                  slider.pause(); //Or just pause
+                }
+              }
+              else {
+                if(slider.started) {
+                  slider.play(); //Initiated before, just play
+                } else {
+                  if (slider.vars.initDelay > 0) {
+                    setTimeout(slider.play, slider.vars.initDelay);
+                  } else {
+                    slider.play(); //Didn't init before: simply init or wait for it
+                  }
+                }
+              }
+            });
+          }
+        },
+        isHidden: function() {
+          var prop = methods.pauseInvisible.getHiddenProp();
+          if (!prop) {
+            return false;
+          }
+          return document[prop];
+        },
+        getHiddenProp: function() {
+          var prefixes = ['webkit','moz','ms','o'];
+          // if 'hidden' is natively supported just return it
+          if ('hidden' in document) {
+            return 'hidden';
+          }
+          // otherwise loop over all the known prefixes until we find one
+          for ( var i = 0; i < prefixes.length; i++ ) {
+              if ((prefixes[i] + 'Hidden') in document) {
+                return prefixes[i] + 'Hidden';
+              }
+          }
+          // otherwise it's not supported
+          return null;
+        }
+      },
+      setToClearWatchedEvent: function() {
+        clearTimeout(watchedEventClearTimer);
+        watchedEventClearTimer = setTimeout(function() {
+          watchedEvent = "";
+        }, 3000);
+      }
+    };
+
+    // public methods
+    slider.flexAnimate = function(target, pause, override, withSync, fromNav) {
+      if (!slider.vars.animationLoop && target !== slider.currentSlide) {
+        slider.direction = (target > slider.currentSlide) ? "next" : "prev";
+      }
+
+      if (asNav && slider.pagingCount === 1) slider.direction = (slider.currentItem < target) ? "next" : "prev";
+
+      if (!slider.animating && (slider.canAdvance(target, fromNav) || override) && slider.is(":visible")) {
+        if (asNav && withSync) {
+          var master = $(slider.vars.asNavFor).data('flexslider');
+          slider.atEnd = target === 0 || target === slider.count - 1;
+          master.flexAnimate(target, true, false, true, fromNav);
+          slider.direction = (slider.currentItem < target) ? "next" : "prev";
+          master.direction = slider.direction;
+
+          if (Math.ceil((target + 1)/slider.visible) - 1 !== slider.currentSlide && target !== 0) {
+            slider.currentItem = target;
+            slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide");
+            target = Math.floor(target/slider.visible);
+          } else {
+            slider.currentItem = target;
+            slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide");
+            return false;
+          }
+        }
+
+        slider.animating = true;
+        slider.animatingTo = target;
+
+        // SLIDESHOW:
+        if (pause) { slider.pause(); }
+
+        // API: before() animation Callback
+        slider.vars.before(slider);
+
+        // SYNC:
+        if (slider.syncExists && !fromNav) { methods.sync("animate"); }
+
+        // CONTROLNAV
+        if (slider.vars.controlNav) { methods.controlNav.active(); }
+
+        // !CAROUSEL:
+        // CANDIDATE: slide active class (for add/remove slide)
+        if (!carousel) { slider.slides.removeClass(namespace + 'active-slide').eq(target).addClass(namespace + 'active-slide'); }
+
+        // INFINITE LOOP:
+        // CANDIDATE: atEnd
+        slider.atEnd = target === 0 || target === slider.last;
+
+        // DIRECTIONNAV:
+        if (slider.vars.directionNav) { methods.directionNav.update(); }
+
+        if (target === slider.last) {
+          // API: end() of cycle Callback
+          slider.vars.end(slider);
+          // SLIDESHOW && !INFINITE LOOP:
+          if (!slider.vars.animationLoop) { slider.pause(); }
+        }
+
+        // SLIDE:
+        if (!fade) {
+          var dimension = (vertical) ? slider.slides.filter(':first').height() : slider.computedW,
+              margin, slideString, calcNext;
+
+          // INFINITE LOOP / REVERSE:
+          if (carousel) {
+            margin = slider.vars.itemMargin;
+            calcNext = ((slider.itemW + margin) * slider.move) * slider.animatingTo;
+            slideString = (calcNext > slider.limit && slider.visible !== 1) ? slider.limit : calcNext;
+          } else if (slider.currentSlide === 0 && target === slider.count - 1 && slider.vars.animationLoop && slider.direction !== "next") {
+            slideString = (reverse) ? (slider.count + slider.cloneOffset) * dimension : 0;
+          } else if (slider.currentSlide === slider.last && target === 0 && slider.vars.animationLoop && slider.direction !== "prev") {
+            slideString = (reverse) ? 0 : (slider.count + 1) * dimension;
+          } else {
+            slideString = (reverse) ? ((slider.count - 1) - target + slider.cloneOffset) * dimension : (target + slider.cloneOffset) * dimension;
+          }
+          slider.setProps(slideString, "", slider.vars.animationSpeed);
+          if (slider.transitions) {
+            if (!slider.vars.animationLoop || !slider.atEnd) {
+              slider.animating = false;
+              slider.currentSlide = slider.animatingTo;
+            }
+
+            // Unbind previous transitionEnd events and re-bind new transitionEnd event
+            slider.container.unbind("webkitTransitionEnd transitionend");
+            slider.container.bind("webkitTransitionEnd transitionend", function() {
+              clearTimeout(slider.ensureAnimationEnd);
+              slider.wrapup(dimension);
+            });
+
+            // Insurance for the ever-so-fickle transitionEnd event
+            clearTimeout(slider.ensureAnimationEnd);
+            slider.ensureAnimationEnd = setTimeout(function() {
+              slider.wrapup(dimension);
+            }, slider.vars.animationSpeed + 100);
+
+          } else {
+            slider.container.animate(slider.args, slider.vars.animationSpeed, slider.vars.easing, function(){
+              slider.wrapup(dimension);
+            });
+          }
+        } else { // FADE:
+          if (!touch) {
+            //slider.slides.eq(slider.currentSlide).fadeOut(slider.vars.animationSpeed, slider.vars.easing);
+            //slider.slides.eq(target).fadeIn(slider.vars.animationSpeed, slider.vars.easing, slider.wrapup);
+
+            slider.slides.eq(slider.currentSlide).css({"zIndex": 1}).animate({"opacity": 0}, slider.vars.animationSpeed, slider.vars.easing);
+            slider.slides.eq(target).css({"zIndex": 2}).animate({"opacity": 1}, slider.vars.animationSpeed, slider.vars.easing, slider.wrapup);
+
+          } else {
+            slider.slides.eq(slider.currentSlide).css({ "opacity": 0, "zIndex": 1 });
+            slider.slides.eq(target).css({ "opacity": 1, "zIndex": 2 });
+            slider.wrapup(dimension);
+          }
+        }
+        // SMOOTH HEIGHT:
+        if (slider.vars.smoothHeight) { methods.smoothHeight(slider.vars.animationSpeed); }
+      }
+    };
+    slider.wrapup = function(dimension) {
+      // SLIDE:
+      if (!fade && !carousel) {
+        if (slider.currentSlide === 0 && slider.animatingTo === slider.last && slider.vars.animationLoop) {
+          slider.setProps(dimension, "jumpEnd");
+        } else if (slider.currentSlide === slider.last && slider.animatingTo === 0 && slider.vars.animationLoop) {
+          slider.setProps(dimension, "jumpStart");
+        }
+      }
+      slider.animating = false;
+      slider.currentSlide = slider.animatingTo;
+      // API: after() animation Callback
+      slider.vars.after(slider);
+    };
+
+    // SLIDESHOW:
+    slider.animateSlides = function() {
+      if (!slider.animating && focused ) { slider.flexAnimate(slider.getTarget("next")); }
+    };
+    // SLIDESHOW:
+    slider.pause = function() {
+      clearInterval(slider.animatedSlides);
+      slider.animatedSlides = null;
+      slider.playing = false;
+      // PAUSEPLAY:
+      if (slider.vars.pausePlay) { methods.pausePlay.update("play"); }
+      // SYNC:
+      if (slider.syncExists) { methods.sync("pause"); }
+    };
+    // SLIDESHOW:
+    slider.play = function() {
+      if (slider.playing) { clearInterval(slider.animatedSlides); }
+      slider.animatedSlides = slider.animatedSlides || setInterval(slider.animateSlides, slider.vars.slideshowSpeed);
+      slider.started = slider.playing = true;
+      // PAUSEPLAY:
+      if (slider.vars.pausePlay) { methods.pausePlay.update("pause"); }
+      // SYNC:
+      if (slider.syncExists) { methods.sync("play"); }
+    };
+    // STOP:
+    slider.stop = function () {
+      slider.pause();
+      slider.stopped = true;
+    };
+    slider.canAdvance = function(target, fromNav) {
+      // ASNAV:
+      var last = (asNav) ? slider.pagingCount - 1 : slider.last;
+      return (fromNav) ? true :
+             (asNav && slider.currentItem === slider.count - 1 && target === 0 && slider.direction === "prev") ? true :
+             (asNav && slider.currentItem === 0 && target === slider.pagingCount - 1 && slider.direction !== "next") ? false :
+             (target === slider.currentSlide && !asNav) ? false :
+             (slider.vars.animationLoop) ? true :
+             (slider.atEnd && slider.currentSlide === 0 && target === last && slider.direction !== "next") ? false :
+             (slider.atEnd && slider.currentSlide === last && target === 0 && slider.direction === "next") ? false :
+             true;
+    };
+    slider.getTarget = function(dir) {
+      slider.direction = dir;
+      if (dir === "next") {
+        return (slider.currentSlide === slider.last) ? 0 : slider.currentSlide + 1;
+      } else {
+        return (slider.currentSlide === 0) ? slider.last : slider.currentSlide - 1;
+      }
+    };
+
+    // SLIDE:
+    slider.setProps = function(pos, special, dur) {
+      var target = (function() {
+        var posCheck = (pos) ? pos : ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo,
+            posCalc = (function() {
+              if (carousel) {
+                return (special === "setTouch") ? pos :
+                       (reverse && slider.animatingTo === slider.last) ? 0 :
+                       (reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) :
+                       (slider.animatingTo === slider.last) ? slider.limit : posCheck;
+              } else {
+                switch (special) {
+                  case "setTotal": return (reverse) ? ((slider.count - 1) - slider.currentSlide + slider.cloneOffset) * pos : (slider.currentSlide + slider.cloneOffset) * pos;
+                  case "setTouch": return (reverse) ? pos : pos;
+                  case "jumpEnd": return (reverse) ? pos : slider.count * pos;
+                  case "jumpStart": return (reverse) ? slider.count * pos : pos;
+                  default: return pos;
+                }
+              }
+            }());
+
+            return (posCalc * -1) + "px";
+          }());
+
+      if (slider.transitions) {
+        target = (vertical) ? "translate3d(0," + target + ",0)" : "translate3d(" + target + ",0,0)";
+        dur = (dur !== undefined) ? (dur/1000) + "s" : "0s";
+        slider.container.css("-" + slider.pfx + "-transition-duration", dur);
+         slider.container.css("transition-duration", dur);
+      }
+
+      slider.args[slider.prop] = target;
+      if (slider.transitions || dur === undefined) { slider.container.css(slider.args); }
+
+      slider.container.css('transform',target);
+    };
+
+    slider.setup = function(type) {
+      // SLIDE:
+      if (!fade) {
+        var sliderOffset, arr;
+
+        if (type === "init") {
+          slider.viewport = $('<div class="' + namespace + 'viewport"></div>').css({"overflow": "hidden", "position": "relative"}).appendTo(slider).append(slider.container);
+          // INFINITE LOOP:
+          slider.cloneCount = 0;
+          slider.cloneOffset = 0;
+          // REVERSE:
+          if (reverse) {
+            arr = $.makeArray(slider.slides).reverse();
+            slider.slides = $(arr);
+            slider.container.empty().append(slider.slides);
+          }
+        }
+        // INFINITE LOOP && !CAROUSEL:
+        if (slider.vars.animationLoop && !carousel) {
+          slider.cloneCount = 2;
+          slider.cloneOffset = 1;
+          // clear out old clones
+          if (type !== "init") { slider.container.find('.clone').remove(); }
+          slider.container.append(methods.uniqueID(slider.slides.first().clone().addClass('clone')).attr('aria-hidden', 'true'))
+                          .prepend(methods.uniqueID(slider.slides.last().clone().addClass('clone')).attr('aria-hidden', 'true'));
+        }
+        slider.newSlides = $(slider.vars.selector, slider);
+
+        sliderOffset = (reverse) ? slider.count - 1 - slider.currentSlide + slider.cloneOffset : slider.currentSlide + slider.cloneOffset;
+        // VERTICAL:
+        if (vertical && !carousel) {
+          slider.container.height((slider.count + slider.cloneCount) * 200 + "%").css("position", "absolute").width("100%");
+          setTimeout(function(){
+            slider.newSlides.css({"display": "block"});
+            slider.doMath();
+            slider.viewport.height(slider.h);
+            slider.setProps(sliderOffset * slider.h, "init");
+          }, (type === "init") ? 100 : 0);
+        } else {
+          slider.container.width((slider.count + slider.cloneCount) * 200 + "%");
+          slider.setProps(sliderOffset * slider.computedW, "init");
+          setTimeout(function(){
+            slider.doMath();
+            slider.newSlides.css({"width": slider.computedW, "marginRight" : slider.computedM, "float": "left", "display": "block"});
+            // SMOOTH HEIGHT:
+            if (slider.vars.smoothHeight) { methods.smoothHeight(); }
+          }, (type === "init") ? 100 : 0);
+        }
+      } else { // FADE:
+        slider.slides.css({"width": "100%", "float": "left", "marginRight": "-100%", "position": "relative"});
+        if (type === "init") {
+          if (!touch) {
+            //slider.slides.eq(slider.currentSlide).fadeIn(slider.vars.animationSpeed, slider.vars.easing);
+            if (slider.vars.fadeFirstSlide == false) {
+              slider.slides.css({ "opacity": 0, "display": "block", "zIndex": 1 }).eq(slider.currentSlide).css({"zIndex": 2}).css({"opacity": 1});
+            } else {
+              slider.slides.css({ "opacity": 0, "display": "block", "zIndex": 1 }).eq(slider.currentSlide).css({"zIndex": 2}).animate({"opacity": 1},slider.vars.animationSpeed,slider.vars.easing);
+            }
+          } else {
+            slider.slides.css({ "opacity": 0, "display": "block", "webkitTransition": "opacity " + slider.vars.animationSpeed / 1000 + "s ease", "zIndex": 1 }).eq(slider.currentSlide).css({ "opacity": 1, "zIndex": 2});
+          }
+        }
+        // SMOOTH HEIGHT:
+        if (slider.vars.smoothHeight) { methods.smoothHeight(); }
+      }
+      // !CAROUSEL:
+      // CANDIDATE: active slide
+      if (!carousel) { slider.slides.removeClass(namespace + "active-slide").eq(slider.currentSlide).addClass(namespace + "active-slide"); }
+
+      //FlexSlider: init() Callback
+      slider.vars.init(slider);
+    };
+
+    slider.doMath = function() {
+      var slide = slider.slides.first(),
+          slideMargin = slider.vars.itemMargin,
+          minItems = slider.vars.minItems,
+          maxItems = slider.vars.maxItems;
+
+      slider.w = (slider.viewport===undefined) ? slider.width() : slider.viewport.width();
+      slider.h = slide.height();
+      slider.boxPadding = slide.outerWidth() - slide.width();
+
+      // CAROUSEL:
+      if (carousel) {
+        slider.itemT = slider.vars.itemWidth + slideMargin;
+        slider.itemM = slideMargin;
+        slider.minW = (minItems) ? minItems * slider.itemT : slider.w;
+        slider.maxW = (maxItems) ? (maxItems * slider.itemT) - slideMargin : slider.w;
+        slider.itemW = (slider.minW > slider.w) ? (slider.w - (slideMargin * (minItems - 1)))/minItems :
+                       (slider.maxW < slider.w) ? (slider.w - (slideMargin * (maxItems - 1)))/maxItems :
+                       (slider.vars.itemWidth > slider.w) ? slider.w : slider.vars.itemWidth;
+
+        slider.visible = Math.floor(slider.w/(slider.itemW));
+        slider.move = (slider.vars.move > 0 && slider.vars.move < slider.visible ) ? slider.vars.move : slider.visible;
+        slider.pagingCount = Math.ceil(((slider.count - slider.visible)/slider.move) + 1);
+        slider.last =  slider.pagingCount - 1;
+        slider.limit = (slider.pagingCount === 1) ? 0 :
+                       (slider.vars.itemWidth > slider.w) ? (slider.itemW * (slider.count - 1)) + (slideMargin * (slider.count - 1)) : ((slider.itemW + slideMargin) * slider.count) - slider.w - slideMargin;
+      } else {
+        slider.itemW = slider.w;
+        slider.itemM = slideMargin;
+        slider.pagingCount = slider.count;
+        slider.last = slider.count - 1;
+      }
+      slider.computedW = slider.itemW - slider.boxPadding;
+      slider.computedM = slider.itemM;
+    };
+
+    slider.update = function(pos, action) {
+      slider.doMath();
+
+      // update currentSlide and slider.animatingTo if necessary
+      if (!carousel) {
+        if (pos < slider.currentSlide) {
+          slider.currentSlide += 1;
+        } else if (pos <= slider.currentSlide && pos !== 0) {
+          slider.currentSlide -= 1;
+        }
+        slider.animatingTo = slider.currentSlide;
+      }
+
+      // update controlNav
+      if (slider.vars.controlNav && !slider.manualControls) {
+        if ((action === "add" && !carousel) || slider.pagingCount > slider.controlNav.length) {
+          methods.controlNav.update("add");
+        } else if ((action === "remove" && !carousel) || slider.pagingCount < slider.controlNav.length) {
+          if (carousel && slider.currentSlide > slider.last) {
+            slider.currentSlide -= 1;
+            slider.animatingTo -= 1;
+          }
+          methods.controlNav.update("remove", slider.last);
+        }
+      }
+      // update directionNav
+      if (slider.vars.directionNav) { methods.directionNav.update(); }
+
+    };
+
+    slider.addSlide = function(obj, pos) {
+      var $obj = $(obj);
+
+      slider.count += 1;
+      slider.last = slider.count - 1;
+
+      // append new slide
+      if (vertical && reverse) {
+        (pos !== undefined) ? slider.slides.eq(slider.count - pos).after($obj) : slider.container.prepend($obj);
+      } else {
+        (pos !== undefined) ? slider.slides.eq(pos).before($obj) : slider.container.append($obj);
+      }
+
+      // update currentSlide, animatingTo, controlNav, and directionNav
+      slider.update(pos, "add");
+
+      // update slider.slides
+      slider.slides = $(slider.vars.selector + ':not(.clone)', slider);
+      // re-setup the slider to accomdate new slide
+      slider.setup();
+
+      //FlexSlider: added() Callback
+      slider.vars.added(slider);
+    };
+    slider.removeSlide = function(obj) {
+      var pos = (isNaN(obj)) ? slider.slides.index($(obj)) : obj;
+
+      // update count
+      slider.count -= 1;
+      slider.last = slider.count - 1;
+
+      // remove slide
+      if (isNaN(obj)) {
+        $(obj, slider.slides).remove();
+      } else {
+        (vertical && reverse) ? slider.slides.eq(slider.last).remove() : slider.slides.eq(obj).remove();
+      }
+
+      // update currentSlide, animatingTo, controlNav, and directionNav
+      slider.doMath();
+      slider.update(pos, "remove");
+
+      // update slider.slides
+      slider.slides = $(slider.vars.selector + ':not(.clone)', slider);
+      // re-setup the slider to accomdate new slide
+      slider.setup();
+
+      // FlexSlider: removed() Callback
+      slider.vars.removed(slider);
+    };
+
+    //FlexSlider: Initialize
+    methods.init();
+  };
+
+  // Ensure the slider isn't focussed if the window loses focus.
+  $( window ).blur( function ( e ) {
+    focused = false;
+  }).focus( function ( e ) {
+    focused = true;
+  });
+
+  //FlexSlider: Default Settings
+  $.flexslider.defaults = {
+    namespace: "flex-",             //{NEW} String: Prefix string attached to the class of every element generated by the plugin
+    selector: ".slides > li",       //{NEW} Selector: Must match a simple pattern. '{container} > {slide}' -- Ignore pattern at your own peril
+    animation: "fade",              //String: Select your animation type, "fade" or "slide"
+    easing: "swing",                //{NEW} String: Determines the easing method used in jQuery transitions. jQuery easing plugin is supported!
+    direction: "horizontal",        //String: Select the sliding direction, "horizontal" or "vertical"
+    reverse: false,                 //{NEW} Boolean: Reverse the animation direction
+    animationLoop: true,            //Boolean: Should the animation loop? If false, directionNav will received "disable" classes at either end
+    smoothHeight: false,            //{NEW} Boolean: Allow height of the slider to animate smoothly in horizontal mode
+    startAt: 0,                     //Integer: The slide that the slider should start on. Array notation (0 = first slide)
+    slideshow: true,                //Boolean: Animate slider automatically
+    slideshowSpeed: 7000,           //Integer: Set the speed of the slideshow cycling, in milliseconds
+    animationSpeed: 600,            //Integer: Set the speed of animations, in milliseconds
+    initDelay: 0,                   //{NEW} Integer: Set an initialization delay, in milliseconds
+    randomize: false,               //Boolean: Randomize slide order
+    fadeFirstSlide: true,           //Boolean: Fade in the first slide when animation type is "fade"
+    thumbCaptions: false,           //Boolean: Whether or not to put captions on thumbnails when using the "thumbnails" controlNav.
+
+    // Usability features
+    pauseOnAction: true,            //Boolean: Pause the slideshow when interacting with control elements, highly recommended.
+    pauseOnHover: false,            //Boolean: Pause the slideshow when hovering over slider, then resume when no longer hovering
+    pauseInvisible: true,   		//{NEW} Boolean: Pause the slideshow when tab is invisible, resume when visible. Provides better UX, lower CPU usage.
+    useCSS: true,                   //{NEW} Boolean: Slider will use CSS3 transitions if available
+    touch: true,                    //{NEW} Boolean: Allow touch swipe navigation of the slider on touch-enabled devices
+    video: false,                   //{NEW} Boolean: If using video in the slider, will prevent CSS3 3D Transforms to avoid graphical glitches
+
+    // Primary Controls
+    controlNav: true,               //Boolean: Create navigation for paging control of each slide? Note: Leave true for manualControls usage
+    directionNav: true,             //Boolean: Create navigation for previous/next navigation? (true/false)
+    prevText: "Previous",           //String: Set the text for the "previous" directionNav item
+    nextText: "Next",               //String: Set the text for the "next" directionNav item
+
+    // Secondary Navigation
+    keyboard: true,                 //Boolean: Allow slider navigating via keyboard left/right keys
+    multipleKeyboard: false,        //{NEW} Boolean: Allow keyboard navigation to affect multiple sliders. Default behavior cuts out keyboard navigation with more than one slider present.
+    mousewheel: false,              //{UPDATED} Boolean: Requires jquery.mousewheel.js (https://github.com/brandonaaron/jquery-mousewheel) - Allows slider navigating via mousewheel
+    pausePlay: false,               //Boolean: Create pause/play dynamic element
+    pauseText: "Pause",             //String: Set the text for the "pause" pausePlay item
+    playText: "Play",               //String: Set the text for the "play" pausePlay item
+
+    // Special properties
+    controlsContainer: "",          //{UPDATED} jQuery Object/Selector: Declare which container the navigation elements should be appended too. Default container is the FlexSlider element. Example use would be $(".flexslider-container"). Property is ignored if given element is not found.
+    manualControls: "",             //{UPDATED} jQuery Object/Selector: Declare custom control navigation. Examples would be $(".flex-control-nav li") or "#tabs-nav li img", etc. The number of elements in your controlNav should match the number of slides/tabs.
+    customDirectionNav: "",         //{NEW} jQuery Object/Selector: Custom prev / next button. Must be two jQuery elements. In order to make the events work they have to have the classes "prev" and "next" (plus namespace)
+    sync: "",                       //{NEW} Selector: Mirror the actions performed on this slider with another slider. Use with care.
+    asNavFor: "",                   //{NEW} Selector: Internal property exposed for turning the slider into a thumbnail navigation for another slider
+
+    // Carousel Options
+    itemWidth: 0,                   //{NEW} Integer: Box-model width of individual carousel items, including horizontal borders and padding.
+    itemMargin: 0,                  //{NEW} Integer: Margin between carousel items.
+    minItems: 1,                    //{NEW} Integer: Minimum number of carousel items that should be visible. Items will resize fluidly when below this.
+    maxItems: 0,                    //{NEW} Integer: Maxmimum number of carousel items that should be visible. Items will resize fluidly when above this limit.
+    move: 0,                        //{NEW} Integer: Number of carousel items that should move on animation. If 0, slider will move all visible items.
+    allowOneSlide: true,           //{NEW} Boolean: Whether or not to allow a slider comprised of a single slide
+
+    // Callback API
+    start: function(){},            //Callback: function(slider) - Fires when the slider loads the first slide
+    before: function(){},           //Callback: function(slider) - Fires asynchronously with each slider animation
+    after: function(){},            //Callback: function(slider) - Fires after each slider animation completes
+    end: function(){},              //Callback: function(slider) - Fires when the slider reaches the last slide (asynchronous)
+    added: function(){},            //{NEW} Callback: function(slider) - Fires after a slide is added
+    removed: function(){},           //{NEW} Callback: function(slider) - Fires after a slide is removed
+    init: function() {}             //{NEW} Callback: function(slider) - Fires after the slider is initially setup
+  };
+
+  //FlexSlider: Plugin Function
+  $.fn.flexslider = function(options) {
+    if (options === undefined) { options = {}; }
+
+    if (typeof options === "object") {
+      return this.each(function() {
+        var $this = $(this),
+            selector = (options.selector) ? options.selector : ".slides > li",
+            $slides = $this.find(selector);
+
+      if ( ( $slides.length === 1 && options.allowOneSlide === true ) || $slides.length === 0 ) {
+          $slides.fadeIn(400);
+          if (options.start) { options.start($this); }
+        } else if ($this.data('flexslider') === undefined) {
+          new $.flexslider(this, options);
+        }
+      });
+    } else {
+      // Helper strings to quickly perform functions on the slider
+      var $slider = $(this).data('flexslider');
+      switch (options) {
+        case "play": $slider.play(); break;
+        case "pause": $slider.pause(); break;
+        case "stop": $slider.stop(); break;
+        case "next": $slider.flexAnimate($slider.getTarget("next"), true); break;
+        case "prev":
+        case "previous": $slider.flexAnimate($slider.getTarget("prev"), true); break;
+        default: if (typeof options === "number") { $slider.flexAnimate(options, true); }
+      }
+    }
+  };
+})(jQuery);

+ 81 - 0
toujours/js/navigation.js

@@ -0,0 +1,81 @@
+/**
+ * navigation.js
+ *
+ * Handles toggling the navigation menu for small screens and enables tab
+ * support for dropdown menus.
+ */
+( function() {
+	var container, button, menu, links, subMenus;
+
+	container = document.getElementById( 'site-navigation' );
+	if ( ! container ) {
+		return;
+	}
+
+	button = container.getElementsByTagName( 'button' )[0];
+	if ( 'undefined' === typeof button ) {
+		return;
+	}
+
+	menu = container.getElementsByTagName( 'ul' )[0];
+
+	// Hide menu toggle button if menu is empty and return early.
+	if ( 'undefined' === typeof menu ) {
+		button.style.display = 'none';
+		return;
+	}
+
+	menu.setAttribute( 'aria-expanded', 'false' );
+	if ( -1 === menu.className.indexOf( 'nav-menu' ) ) {
+		menu.className += ' nav-menu';
+	}
+
+	button.onclick = function() {
+		if ( -1 !== container.className.indexOf( 'toggled' ) ) {
+			container.className = container.className.replace( ' toggled', '' );
+			button.setAttribute( 'aria-expanded', 'false' );
+			menu.setAttribute( 'aria-expanded', 'false' );
+		} else {
+			container.className += ' toggled';
+			button.setAttribute( 'aria-expanded', 'true' );
+			menu.setAttribute( 'aria-expanded', 'true' );
+		}
+	};
+
+	// Get all the link elements within the menu.
+	links    = menu.getElementsByTagName( 'a' );
+	subMenus = menu.getElementsByTagName( 'ul' );
+
+	// Set menu items with submenus to aria-haspopup="true".
+	for ( var i = 0, len = subMenus.length; i < len; i++ ) {
+		subMenus[i].parentNode.setAttribute( 'aria-haspopup', 'true' );
+	}
+
+	// Each time a menu link is focused or blurred, toggle focus.
+	for ( i = 0, len = links.length; i < len; i++ ) {
+		links[i].addEventListener( 'focus', toggleFocus, true );
+		links[i].addEventListener( 'blur', toggleFocus, true );
+	}
+
+	/**
+	 * Sets or removes .focus class on an element.
+	 */
+	function toggleFocus() {
+		var self = this;
+
+		// Move up through the ancestors of the current link until we hit .nav-menu.
+		while ( -1 === self.className.indexOf( 'nav-menu' ) ) {
+
+			// On li elements toggle the class .focus.
+			if ( 'li' === self.tagName.toLowerCase() ) {
+				if ( -1 !== self.className.indexOf( 'focus' ) ) {
+					self.className = self.className.replace( ' focus', '' );
+				} else {
+					self.className += ' focus';
+				}
+			}
+
+			self = self.parentElement;
+		}
+	}
+} )();

+ 33 - 0
toujours/js/skip-link-focus-fix.js

@@ -0,0 +1,33 @@
+/**
+ * skip-link-focus-fix.js
+ *
+ * Helps with accessibility for keyboard only users.
+ *
+ * Learn more: https://git.io/vWdr2
+ */
+( 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 );
+	}
+})();

二進制
toujours/languages/de.mo


+ 207 - 0
toujours/languages/de.po

@@ -0,0 +1,207 @@
+# Translation of WordPress.com - Themes - Toujours in German
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-03-23 09:23:11+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 - Toujours\n"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "Links im Content, Website-Titel"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "Navigation, Beitragstitel"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "Letzte Slide"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "Nächste Slide"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;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."
+
+#: template-parts/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."
+
+#: template-parts/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>."
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "Nichts gefunden"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "Seiten:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "Bemerkenswert"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "%s weiterlesen <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "Weiter"
+
+#: single.php:21
+msgid "Previous"
+msgstr "Vorheriger Beitrag"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "Suchergebnisse für: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "Bearbeiten %s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "Kategorien %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% Kommentare"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1 Kommentar"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "Kommentar hinterlassen"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "von %s"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "Theme-Optionen"
+
+#: header.php:50
+msgid "Menu"
+msgstr "Menü"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "Zum Inhalt springen"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "Footer"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "Seitenleiste"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "Mehr"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "Social Media-Menü"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "Primäres Menü"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Theme: %1$s von %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Stolz präsentiert von %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "Kommentare sind geschlossen."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "Neuere Kommentare"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "Ältere Kommentare"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "Kommentar-Navigation"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "Ein Kommentar zu &bdquo;%2$s&ldquo;"
+msgstr[1] "%1$s Kommentare zu &bdquo;%2$s&ldquo;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "Vielleicht findest Du etwas in den monatlichen Archiven."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "Oft verwendete Kategorien"
+
+#: 404.php:21
+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:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "Diese Seite konnte leider nicht gefunden werden."

二進制
toujours/languages/fa.mo


+ 246 - 0
toujours/languages/fa.po

@@ -0,0 +1,246 @@
+# Translation of WordPress.com - Themes - Toujours in Persian
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2018-02-22 02:47:27+0000\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: GlotPress/2.4.0-alpha\n"
+"Language: fa\n"
+"Project-Id-Version: WordPress.com - Themes - Toujours\n"
+
+#: inc/customizer.php:42
+msgid "Display a thin inset border on featured images"
+msgstr "نمایش یک حاشیهٔ داخلی روی تصاویر ویژه"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "پیوندهای درون مطلب، عنوان وب‌گاه"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "ناوبری، عنوان نوشته‌ها"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "پردهٔ قبلی"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "پردهٔ بعدی"
+
+#. Description of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts."
+msgstr "Toujours یک پوستهٔ ساده با طراحی بسیار زیبا است که برای اشتراک‌گذاری لحظات عروسی شما در نظر گرفته شده‌است. با استفاده از نمایش پرده‌ای، تصاویر ویژه و چیدمانی بی همتا برای نوشته‌های اخیر به مطالب شما جلوه می‌بخشد."
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "دفتر میهمانان"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "به‌نظر می‌رسد نمی‌توانیم چیزی که شما به دنبال آن هستید را بیابیم. شاید جستجو بتواند به شما کمک کند."
+
+#: template-parts/content-none.php:24
+msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
+msgstr "بدبختانه جستجوی شما نتیجه‌ای در بر نداشت. با واژگانی دیگر جستجو کنید."
+
+#: template-parts/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>. "
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "چیزی یافت نشد"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "صفحه‌ها:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "برگزیده"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "به خواندن %s ادامه دهید <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "پسین"
+
+#: single.php:21
+msgid "Previous"
+msgstr "پیشین"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "نتایج جستجو برای: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "ویرایش %s"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "برچسب‌های %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "رده‌های %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr "، "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "همهٔ %1$s نوشته"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% دیدگاه"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "۱ دیدگاه"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "دیدگاهی بنویسید"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "به دست %s"
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr "منتشرشده در %s"
+
+#: inc/customizer.php:29
+msgid "Display the three most recent posts in a special area above your other posts"
+msgstr "نمایش‌دادن سه نوشتهٔ اخیر در یک پهنهٔ ویژه در بالای نوشته‌هایتان"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "گزینه‌های پوسته"
+
+#: header.php:50
+msgid "Menu"
+msgstr "فهرست"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "رفتن به محتوا"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "پسایند"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "نوار کناری"
+
+#. Translators: If there are characters in your language that are not supported
+#. by Open Sans, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "روشن"
+
+#. Translators: If there are characters in your language that are not supported
+#. by Alegreya Sans, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr "off"
+
+#: functions.php:141
+msgid "More"
+msgstr "بیشتر"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "گزینگان اجتماعی"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "فهرست اصلی"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "قالب %1$s از %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "با افتخار نیرو گرفته از %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "امکان ثبت دیدگاه وجود ندارد."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "دیدگاه‌های تازه‌تر"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "دیدگاه‌های کهنه‌تر"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "هدایت دیدگاه"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "%1$s دیدگاه برای «%2$s»"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "نگاهی به بایگانی‌های ماهانه داشته باشید."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "دسته‌های بیشتر استفاده شده"
+
+#: 404.php:21
+msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
+msgstr "به نظر می‌رسد که چیزی این جا نیست. می‌خواهید از لینک‌های زیر یا جستجو استفاده کنید؟"
+
+#: 404.php:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "اوه! این برگه پیدا نمی‌شه."

二進制
toujours/languages/fr.mo


+ 234 - 0
toujours/languages/fr.po

@@ -0,0 +1,234 @@
+# Translation of WordPress.com - Themes - Toujours in French (France)
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-09-23 19:07:27+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 - Toujours\n"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "Liens dans le contenu, titre du site"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "Navigation, titres des articles"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "Diapositive précédente"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "Diapositive suivante"
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "Livre d&rsquo;Or"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "Contenu Introuvable. Voulez-vous lancer une nouvelle recherche&nbsp;?"
+
+#: template-parts/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."
+
+#: template-parts/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&nbsp;? <a href=\"%1$s\">Lancez-vous</a>&nbsp;!"
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "Rien de trouvé"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "Pages&nbsp;:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "à la Une"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Lire la suite de %s <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "Suivant"
+
+#: single.php:21
+msgid "Previous"
+msgstr "Précédent"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "Résultat de Recherche pour: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "Modifier %s"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "Mots clés %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "Catégories %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "Tous les articles %1$s"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% commentaires"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1 commentaire"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "Laisser un commentaire"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "par %s"
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr "Publié le %s"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "Options du thème"
+
+#: header.php:50
+msgid "Menu"
+msgstr "Menu"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "Accéder au contenu principal"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "Pied de page"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "Colonne latérale"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "on"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Alegreya Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "Plus"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "Menu Social"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "Menu principal"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Thème&nbsp;: %1$s par %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Fièrement propulsé par %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://fr.wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "Les commentaires sont fermés."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "Commentaires plus récents"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "Commentaires plus anciens"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "Navigation dans les commentaires"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "Un commentaire sur &laquo;&nbsp;%2$s&nbsp;&raquo;"
+msgstr[1] "%1$s commentaires sur &laquo;&nbsp;%2$s&nbsp;&raquo;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "Essayez de parcourir les archives mensuelles."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "Catégories les plus utilisées"
+
+#: 404.php:21
+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:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "Oups&nbsp;! Cette page est introuvable."

二進制
toujours/languages/he.mo


+ 208 - 0
toujours/languages/he.po

@@ -0,0 +1,208 @@
+# Translation of WordPress.com - Themes - Toujours in Hebrew
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-04-20 10:50:07+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: he_IL\n"
+"Project-Id-Version: WordPress.com - Themes - Toujours\n"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "קישורים בתוכן, כותרת אתר"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "ניווט, כותרות פוסטים"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "שקף קודם"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "שקף הבא"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "נראה כי לא ניתן למצוא את מה שחיפשת, אולי חיפוש יעזור."
+
+#: template-parts/content-none.php:24
+msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
+msgstr "לא נמצאו תוצאות התואמות לביטוי החיפוש, ניתן לנסות שוב עם ביטויים אחרים."
+
+#: template-parts/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>."
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "לא נמצא כלום"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "עמודים:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "‎פוסט נבחר"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "להמשיך לקרוא %s <span class=\"meta-nav\">&larr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "הבא"
+
+#: single.php:21
+msgid "Previous"
+msgstr "קודם"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "תוצאות חיפוש עבור %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "לערוך את %s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "כל הפוסטים מסוג %1$s"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% תגובות"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "תגובה אחת"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "כתיבת תגובה"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "מאת %s"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "אפשרויות"
+
+#: header.php:50
+msgid "Menu"
+msgstr "תפריט"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "דלג לתוכן"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "פוטר"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr " סרגל צדדי"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "off"
+
+#: functions.php:141
+msgid "More"
+msgstr "עוד"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "תפריט חברתי"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "תפריט ראשי"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "ערכת עיצוב: %1$s של %2$s"
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "פועל על %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://he.wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "סגור לתגובות."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "תגובות חדשות"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "תגובות ישנות"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "ניווט תגובות"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "תגובה אחת בנושא &ldquo;%2$s&rdquo;"
+msgstr[1] "%1$s תגובות בנושא &ldquo;%2$s&rdquo;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "נסה לחפש בארכיון לפי חודשים."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "קטגוריות בולטות"
+
+#: 404.php:21
+msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
+msgstr "לא הצלחנו למצוא שום דבר בכתובת זו. כדאי לנסות את הקישורים הבאים, או את החיפוש."
+
+#: 404.php:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "העמוד לא נמצא."

二進制
toujours/languages/hi.mo


+ 197 - 0
toujours/languages/hi.po

@@ -0,0 +1,197 @@
+# Translation of WordPress.com - Themes - Toujours in Hindi
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2016-07-05 04:11:29+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.1.0-beta.2\n"
+"Language: hi_IN\n"
+"Project-Id-Version: WordPress.com - Themes - Toujours\n"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "पिछली स्लाइड"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "अगली स्लाइड"
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "गेस्ट बुक (अतिथि पुस्तक)"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "ऐसा लगता है आप जो देख रहे हैं हमें नहीं मिल रहा है। शायद खोज मदद कर सकता है।"
+
+#: template-parts/content-none.php:24
+msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
+msgstr "क्षमा करें, लेकिन कुछ भी आपके खोज शब्दों से मेल नहीं खाते। कृपया कुछ अलग खोजशब्दों के साथ फिर से प्रयास करें।"
+
+#: template-parts/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>।"
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "कुछ नहीं मिला"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "पृष्ठ:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "विशेष रुप से प्रदर्शित"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "पढ़ना जारी रखें %s <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "आगे "
+
+#: single.php:21
+msgid "Previous"
+msgstr "पिछला"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "%s के लिए खोज परिणाम:"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "%s संपादित करें"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "सभी %1$s पोस्टस"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% टिप्पणियाँ"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1 टिप्पणी"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "टिप्पणी करे"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "%s द्वारा"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "थीम विकल्प"
+
+#: header.php:50
+msgid "Menu"
+msgstr "मेनु"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "सामग्री पर जाएं"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "फुटर"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "साइडबार"
+
+#: functions.php:141
+msgid "More"
+msgstr "अधिक"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "सामाजिक मेनू"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "प्राथमिक मेनू"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "थीम: %2$s द्वारा %1$s।"
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "%s द्वारा गर्व के साथ संचालित"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "टिप्पणियाँ बंद कर दी गयी है।"
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "नई टिप्पणियाँ"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "पुरानी टिप्पणियाँ"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "टिप्पणी नेविगेशन"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "&ldquo;%2$s&rdquo पर एक विचार;"
+msgstr[1] "%1$s विचार &ldquo;%2$s&rdquo पर;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "मासिक अभिलेखागार में देखने की कोशिश कीजिए।"
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "अधिकतर उपयोग किये गये श्रेणियाँ"
+
+#: 404.php:21
+msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
+msgstr "ऐसा लगता है कि कुछ भी नहीं इस स्थान पर पाया गया। शायद नीचे दिए गए लिंक्स या खोज से एक कोशिश करें?"
+
+#: 404.php:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "उफ़! वह पृष्ठ नहीं पाया जा सकता है।"

二進制
toujours/languages/it.mo


+ 243 - 0
toujours/languages/it.po

@@ -0,0 +1,243 @@
+# Translation of WordPress.com - Themes - Toujours in Italian
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-10-13 09:24:36+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: it\n"
+"Project-Id-Version: WordPress.com - Themes - Toujours\n"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "Link nei contenuti, titolo del sito"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "Navigazione, titoli degli articoli"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "Slide precedente"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "Prossima slide"
+
+#. Description of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts."
+msgstr "Toujours ha un design semplice ed elegante che è perfetto per pianificare e condividere i più bei momenti del tuo matrimonio. Il tema mette in evidenza i tuoi contenuti con presentazioni, immagini di grandi dimensioni e un layout unico per gli ultimi post."
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "Guestbook"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "Non riusciamo a trovare quello che cerchi. Forse eseguire una ricerca potrebbe essere di aiuto."
+
+#: template-parts/content-none.php:24
+msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
+msgstr "Spiacente, nulla corrisponde ai termini della tua ricerca. Riprova con parole chiave diverse."
+
+#: template-parts/content-none.php:20
+msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
+msgstr "Sei pronto a pubblicare il tuo primo articolo? <a href=\"%1$s\">Comincia da qui</a>."
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "Nessun risultato"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "Pagine: "
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "In evidenza"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Continua a leggere %s <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "Avanti"
+
+#: single.php:21
+msgid "Previous"
+msgstr "Precedente"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "Risultati ricerca per: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "Modifica %s"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "Tags %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "Categorie %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "Tutti %1$s gli articoli"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% commenti"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1 commento"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "Lascia un commento"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "da %s"
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr "Pubblicato %s"
+
+#: inc/customizer.php:29
+msgid "Display the three most recent posts in a special area above your other posts"
+msgstr "Mostra i tre articoli più recenti in un'area speciale sopra gli altri articoli"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "Opzioni tema"
+
+#: header.php:50
+msgid "Menu"
+msgstr "Menu"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "Vai al contenuto"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "Pié di pagina"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "Barra laterale"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "on"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Alegreya Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "Altro"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "Menu Social"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "Menu principale"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Tema: %1$s di %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Orgogliosamente fornito da %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "I commenti sono chiusi."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "Nuovi commenti"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "Commenti più vecchi"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "Navigazione commenti"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "Un pensiero riguardo &ldquo;%2$s&rdquo;"
+msgstr[1] "%1$s pensieri riguardo &ldquo;%2$s&rdquo;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "Prova a cercare negli archivi mensili."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "Categorie più utilizzate"
+
+#: 404.php:21
+msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
+msgstr "Sembra che non ci sia nulla a questo indirizzo. Perché non provi con uno dei link in basso o una ricerca?"
+
+#: 404.php:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "Oops! La pagina non è stata trovata."

二進制
toujours/languages/ja.mo


+ 242 - 0
toujours/languages/ja.po

@@ -0,0 +1,242 @@
+# Translation of WordPress.com - Themes - Toujours in Japanese
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-03-23 09:23:11+0000\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: GlotPress/2.4.0-alpha\n"
+"Language: ja_JP\n"
+"Project-Id-Version: WordPress.com - Themes - Toujours\n"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "コンテンツのリンク、サイト名"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "ナビゲーション、投稿タイトル"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "前のスライド"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "次のスライド"
+
+#. Description of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts."
+msgstr "Toujours は結婚式の計画や思い出を投稿するのにぴったりなシンプルでエレガントなデザインです。このテーマではスライドショーや大きなアイキャッチ画像、最近の投稿用のユニークなレイアウトででコンテンツを強調します。"
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "ゲストブック"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "お探しのコンテンツを見つけられませんでした。検索をお試しください。"
+
+#: template-parts/content-none.php:24
+msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
+msgstr "ご指定の検索条件に一致する投稿がありませんでした。他のキーワードでもう一度検索してみてください。"
+
+#: template-parts/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>してください。"
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "何も見つかりませんでした。"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "ページ:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "注目"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "%s の続きを読む <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "次へ"
+
+#: single.php:21
+msgid "Previous"
+msgstr "前"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "検索結果: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "「%s」を編集"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "タグ %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "カテゴリー %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "全投稿 (%1$s件)"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "%件のコメント"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1件のコメント"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "コメントをどうぞ"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "投稿者: %s"
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr "投稿日: %s"
+
+#: inc/customizer.php:29
+msgid "Display the three most recent posts in a special area above your other posts"
+msgstr "最新の投稿3件を他の投稿の上に表示する"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "テーマオプション"
+
+#: header.php:50
+msgid "Menu"
+msgstr "メニュー"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "コンテンツへ移動"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "フッター"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "サイドバー"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "on"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Alegreya Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "続き"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "ソーシャルメニュー"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "メインメニュー"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Theme: %1$s by %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Proudly powered by %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://ja.wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "コメントは受け付けていません。"
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "新しいコメント"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "過去のコメント"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "コメントナビゲーション"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "&ldquo;%2$s&rdquo; への%1$s件のフィードバック"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "月別のアーカイブを探してみてください。"
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "よく使われているカテゴリー"
+
+#: 404.php:21
+msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
+msgstr "ここには何も見つかりませんでした。以下のリンクまたは検索をお試しください。"
+
+#: 404.php:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "ページが見つかりません。"

二進制
toujours/languages/no.mo


+ 213 - 0
toujours/languages/no.po

@@ -0,0 +1,213 @@
+# Translation of WordPress.com - Themes - Toujours in Norwegian
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-11-25 17:55:49+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 - Toujours\n"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "Forrige lysbilde"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "Neste lysbilde"
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "Gjestebok"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "Vi klarer ikke å finne det du leter etter. Prøv å søke."
+
+#: template-parts/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."
+
+#: template-parts/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>."
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "Ingenting funnet"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "Sider:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "Fremhevet"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Les mer %s <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "Neste"
+
+#: single.php:21
+msgid "Previous"
+msgstr "Forrige"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "Søkeresultater for: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "Rediger %s"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "Stikkordene %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "Kategoriene %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "Alle %1$s innlegg"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% kommentarer"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1 kommentar"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "Legg igjen en kommentar"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "av %s"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "Temainnstillinger"
+
+#: header.php:50
+msgid "Menu"
+msgstr "Meny"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "Gå til innhold"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "Bunntekst"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "Sidekolonnen"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "Mer"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "Sosiale medier-meny"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "Primærmeny"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Tema: %1$s av %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Stolt drevet av %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://nb.wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "Kommentarer er stengt."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "Nyere kommentarer"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "Eldre kommentarer"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "Kommentarnavigasjon"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "En kommentar om &ldquo;%2$s&rdquo;"
+msgstr[1] "%1$s kommentarer om &ldquo;%2$s&rdquo;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "Prøv å søke i månedsarkivet."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "Mest brukte kategorier"
+
+#: 404.php:21
+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:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "Auda! Den siden finnes ikke."

二進制
toujours/languages/pt-br.mo


+ 243 - 0
toujours/languages/pt-br.po

@@ -0,0 +1,243 @@
+# Translation of WordPress.com - Themes - Toujours in Portuguese (Brazil)
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-03-23 09:23:11+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 - Toujours\n"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "Links no Conteúdo, Título do Site"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "Navegação, TítuloS dos Posts"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "Anterior"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "Próximo"
+
+#. Description of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts."
+msgstr "Toujours tem um simples e elegante design que é perfeito para você planejar e compartilhar momentos do seu casamento. O tema evidencia seu conteúdo usando um slideshow, grandes imagens destacadas e um layout único para suas recentes publicações."
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "Livro de visitantes"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;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."
+
+#: template-parts/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."
+
+#: template-parts/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>."
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "Nenhum resultado"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "Páginas:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "Destaque"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Continuar lendo %s <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "Avançar"
+
+#: single.php:21
+msgid "Previous"
+msgstr "Anterior"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "Resultados da busca por: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "Editar %s"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "Tags %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "Categorias %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "Todos os %1$s posts"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% Comentários"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1 Comentário"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "Deixe um comentário"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "por %s"
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr "Publicado em %s"
+
+#: inc/customizer.php:29
+msgid "Display the three most recent posts in a special area above your other posts"
+msgstr "Exibe os três posts mais recentes em uma área especial, logo acima de suas outras publicações."
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "Opções do tema"
+
+#: header.php:50
+msgid "Menu"
+msgstr "Menu"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "Ir para conteúdo"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "Rodapé"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "Lateral"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "ligada"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Alegreya Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "Mais"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "Menu social"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "Menu Principal"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Tema: %1$s por %2$s "
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Mantido com %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "Os comentários estão encerrados."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "Comentários mais recentes"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "Comentários mais antigos"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "Navegação dos comentários"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "Um comentário em &ldquo;%2$s&rdquo;"
+msgstr[1] "%1$s comentários em &ldquo;%2$s&rdquo;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "Tente olhar nos arquivos mensais."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "Categorias mais Usadas"
+
+#: 404.php:21
+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:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "Ops! Essa página não pode ser encontrada."

二進制
toujours/languages/ro.mo


+ 248 - 0
toujours/languages/ro.po

@@ -0,0 +1,248 @@
+# Translation of WordPress.com - Themes - Toujours in Romanian
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2018-02-22 13:30:28+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 - Toujours\n"
+
+#: inc/customizer.php:42
+msgid "Display a thin inset border on featured images"
+msgstr "Afișează un chenar de inserare subțire pentru imaginile reprezentative"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "Legături în conținut, titlu sit"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "Navigare, titluri articol"
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr "Diapozitivul anterior"
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr "Diapozitivul următor"
+
+#. Description of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts."
+msgstr "Toujours are un design simplu, elegant, care este perfect pentru planificarea și împărtășirea  momentelor de la nunta ta. Tema îți scoate în evidență conținutul cu un carusel de diapozitive, imagini reprezentative de mari dimensiuni și un aranjament unic pentru articolele recente."
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "Guestbook"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;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."
+
+#: template-parts/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."
+
+#: template-parts/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>."
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "Nimic găsit"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "Pagini:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "Reprezentativ"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Citește în continuare %s <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "Următor"
+
+#: single.php:21
+msgid "Previous"
+msgstr "Precedent"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "Rezultatele căutării pentru: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "Editează %s"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "Etichete %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "Categorii %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "Toate articolele %1$s"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% comentarii"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "Un comentariu"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "Lasă un comentariu"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "de %s"
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr "Publicat pe %s"
+
+#: inc/customizer.php:29
+msgid "Display the three most recent posts in a special area above your other posts"
+msgstr "Afișează ultimele tale trei articole într-o zonă specială deasupra celorlalte articole"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "Opțiuni temă"
+
+#: header.php:50
+msgid "Menu"
+msgstr "Meniu"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "Sari la conținut"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "Subsol"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "Bară laterală"
+
+#. Translators: If there are characters in your language that are not supported
+#. by Open Sans, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "on"
+
+#. Translators: If there are characters in your language that are not supported
+#. by Alegreya Sans, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "Mai mult"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "Meniu socializare"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "Meniu principal"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Tema: %1$s de %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Propulsat cu mândrie de %s"
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://ro.wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "Comentariile sunt închise."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "Comentarii mai noi"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "Comentarii mai vechi"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "Navigare în comentarii"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "Un gând despre &#8222;%2$s&#8221;"
+msgstr[1] "%1$s gânduri despre &#8222;%2$s&#8221;"
+msgstr[2] "%1$s de gânduri despre &#8222;%2$s&#8221;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "Încearcă să cauți în arhivele lunare."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "Cele mai folosite categorii"
+
+#: 404.php:21
+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:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "Hopa! Pagina aceea nu a fost găsită."

二進制
toujours/languages/sq.mo


+ 235 - 0
toujours/languages/sq.po

@@ -0,0 +1,235 @@
+# Translation of WordPress.com - Themes - Toujours in Albanian
+# This file is distributed under the same license as the WordPress.com - Themes - Toujours package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2017-03-23 09:23:11+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: sq_AL\n"
+"Project-Id-Version: WordPress.com - Themes - Toujours\n"
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr "Lidhje në Lëndë, Titull Sajti"
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr "Lëvizje, Tituj Postimesh"
+
+#. Description of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts."
+msgstr "Toujours përmban një skemë grafike të thjeshtë, elegante, për të planifikuar dhe ndarë me të tjerët çaste nga dasma juaj. Tema nxjerr në pah lëndën tuaj me një shfaqje figurash, figura të mëdha të zgjedhura, dhe një skemë unike për postimet më të reja."
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr "Libër Vizitorësh"
+
+#: template-parts/content-none.php:29
+msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
+msgstr "Duket se s&#8217;qemë në gjendje të gjenim ç&#8217;po kërkonit. Ndoshta mund t&#8217;ju ndihë kërkimi."
+
+#: template-parts/content-none.php:24
+msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
+msgstr "Na ndjeni, por &#8217;u përputh gjë me kriterin tuaj të kërkimit. Ju lutemi, riprovoni me ndonjë fjalëkyç tjetër."
+
+#: template-parts/content-none.php:20
+msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
+msgstr "Gati për botimin e postimit tuaj të parë? <a href=\"%1$s\">Fillojani këtu</a>."
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr "S&#8217;u Gjet Gjë"
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr "Faqe:"
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr "E zgjedhur"
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Vazhdoni me leximin e %s <span class=\"meta-nav\">&rarr;</span>"
+
+#: single.php:22
+msgid "Next"
+msgstr "Pasuesi"
+
+#: single.php:21
+msgid "Previous"
+msgstr "I Mëparshmi"
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr "Përfundime Kërkimi për: %s"
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr "Përpunojeni %s"
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr "Etiketa %1$s"
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr "Kategoritë %1$s"
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ", "
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr "Krejt %1$s postimet"
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr "% Komente"
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr "1 Koment"
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr "Lini një koment"
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr "nga %s"
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr "Publikuar më %s"
+
+#: inc/customizer.php:29
+msgid "Display the three most recent posts in a special area above your other posts"
+msgstr "Shfaqni në një fushë speciale sipër postimeve tuaja të tjera tre postimet më të reja"
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr "Mundësi Teme"
+
+#: header.php:50
+msgid "Menu"
+msgstr "Menu"
+
+#: header.php:25
+msgid "Skip to content"
+msgstr "Kaloni te lënda"
+
+#: functions.php:291
+msgid "Footer"
+msgstr "Fundfaqe"
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr "Anështyllë"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Open Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr "on"
+
+#. Translators: If there are characters in your language that are not
+#. * supported by Alegreya Sans, translate this to 'off'. Do not translate
+#. * into your own language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr "on"
+
+#: functions.php:141
+msgid "More"
+msgstr "Më shumë"
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr "Menu Shoqërore"
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr "Menuja Parësore"
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr "Temë: %1$s nga %2$s."
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr "Bazohet me krenari në %s."
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr "https://wordpress.org/"
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr "Komentet janë të mbyllura."
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr "Komentet Më të Reja"
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr "Komentet Më të Vjetra"
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr "Lëvizje te komentet"
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] "Një mendim mbi &ldquo;%2$s&rdquo;"
+msgstr[1] "%1$s mendime mbi &ldquo;%2$s&rdquo;"
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr "Provoni të shihni te arkivat mujore."
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr "Kategoritë Më të Përdorura"
+
+#: 404.php:21
+msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
+msgstr "Duket se s&#8217;u gjend gjë në këtë vend. Të provohet një nga lidhjet më poshtë ose një kërkim?"
+
+#: 404.php:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr "Hmm! Ajo faqe s&#8217;gjendet dot."

+ 279 - 0
toujours/languages/toujours.pot

@@ -0,0 +1,279 @@
+# Copyright (C) 2018 Automattic
+# This file is distributed under the GNU General Public License v2 or later.
+msgid ""
+msgstr ""
+"Project-Id-Version: Toujours 1.1.0-wpcom\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/toujours\n"
+"POT-Creation-Date: 2018-02-15 04:10:19+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+
+#: 404.php:17
+msgid "Oops! That page can&rsquo;t be found."
+msgstr ""
+
+#: 404.php:21
+msgid ""
+"It looks like nothing was found at this location. Maybe try one of the links "
+"below or a search?"
+msgstr ""
+
+#: 404.php:29
+msgid "Most Used Categories"
+msgstr ""
+
+#: 404.php:45
+msgid "Try looking in the monthly archives."
+msgstr ""
+
+#: comments.php:31
+msgctxt "comments title"
+msgid "One thought on &ldquo;%2$s&rdquo;"
+msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
+msgstr[0] ""
+msgstr[1] ""
+
+#: comments.php:40 comments.php:68
+msgid "Comment navigation"
+msgstr ""
+
+#: comments.php:43 comments.php:71
+msgid "Older Comments"
+msgstr ""
+
+#: comments.php:44 comments.php:72
+msgid "Newer Comments"
+msgstr ""
+
+#: comments.php:84
+msgid "Comments are closed."
+msgstr ""
+
+#: footer.php:30
+msgid "https://wordpress.org/"
+msgstr ""
+
+#: footer.php:30
+msgid "Proudly powered by %s"
+msgstr ""
+
+#: footer.php:32
+msgid "Theme: %1$s by %2$s."
+msgstr ""
+
+#: functions.php:64 functions.php:69
+msgid "Primary Menu"
+msgstr ""
+
+#: functions.php:65
+msgid "Social Menu"
+msgstr ""
+
+#: functions.php:141
+msgid "More"
+msgstr ""
+
+#. Translators: If there are characters in your language that are not supported
+#. by Alegreya Sans, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:244
+msgctxt "Alegreya Sans font: on or off"
+msgid "on"
+msgstr ""
+
+#. Translators: If there are characters in your language that are not supported
+#. by Open Sans, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:250
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr ""
+
+#: functions.php:281
+msgid "Sidebar"
+msgstr ""
+
+#: functions.php:291
+msgid "Footer"
+msgstr ""
+
+#: functions.php:375
+msgid "Next Slide"
+msgstr ""
+
+#: functions.php:376
+msgid "Previous Slide"
+msgstr ""
+
+#: header.php:25
+msgid "Skip to content"
+msgstr ""
+
+#: header.php:50
+msgid "Menu"
+msgstr ""
+
+#: inc/customizer.php:19
+msgid "Theme Options"
+msgstr ""
+
+#: inc/customizer.php:29
+msgid ""
+"Display the three most recent posts in a special area above your other posts"
+msgstr ""
+
+#: inc/customizer.php:42
+msgid "Display a thin inset border on featured images"
+msgstr ""
+
+#: inc/template-tags.php:28
+msgctxt "post date"
+msgid "Published on %s"
+msgstr ""
+
+#: inc/template-tags.php:33
+msgctxt "post author"
+msgid "by %s"
+msgstr ""
+
+#: inc/template-tags.php:50
+msgid "Leave a comment"
+msgstr ""
+
+#: inc/template-tags.php:50
+msgid "1 Comment"
+msgstr ""
+
+#: inc/template-tags.php:50
+msgid "% Comments"
+msgstr ""
+
+#: inc/template-tags.php:66
+msgctxt "post format archives link"
+msgid "All %1$s posts"
+msgstr ""
+
+#. translators: used between list items, there is a space after the comma
+#: inc/template-tags.php:84 inc/template-tags.php:86
+msgid ", "
+msgstr ""
+
+#: inc/template-tags.php:89
+msgid "Categories %1$s"
+msgstr ""
+
+#: inc/template-tags.php:98
+msgid "Tags %1$s"
+msgstr ""
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:105 template-parts/content-page.php:33
+#: template-parts/content-quote.php:60 template-parts/content-status.php:55
+msgid "Edit %s"
+msgstr ""
+
+#: inc/wpcom-colors.php:28
+msgid "Navigation, Post Titles"
+msgstr ""
+
+#: inc/wpcom-colors.php:82
+msgid "Links in Content, Site Title"
+msgstr ""
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr ""
+
+#: single.php:21
+msgid "Previous"
+msgstr ""
+
+#: single.php:22
+msgid "Next"
+msgstr ""
+
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post.
+#. translators: %s: Name of current post
+#. translators: %s: Name of current post.
+#: template-parts/content-audio.php:15 template-parts/content-gallery.php:51
+#: template-parts/content-link.php:50 template-parts/content-quote.php:28
+#: template-parts/content-status.php:23 template-parts/content-video.php:15
+#: template-parts/content.php:50
+msgid "Continue reading %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: template-parts/content-audio.php:40 template-parts/content-gallery.php:25
+#: template-parts/content-link.php:24 template-parts/content-quote.php:20
+#: template-parts/content-status.php:15 template-parts/content-video.php:42
+#: template-parts/content.php:24
+msgid "Featured"
+msgstr ""
+
+#: template-parts/content-audio.php:67 template-parts/content-gallery.php:58
+#: template-parts/content-link.php:57 template-parts/content-page.php:21
+#: template-parts/content-quote.php:35 template-parts/content-status.php:30
+#: template-parts/content-video.php:69 template-parts/content.php:57
+msgid "Pages:"
+msgstr ""
+
+#: template-parts/content-none.php:14
+msgid "Nothing Found"
+msgstr ""
+
+#: template-parts/content-none.php:20
+msgid ""
+"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
+msgstr ""
+
+#: template-parts/content-none.php:24
+msgid ""
+"Sorry, but nothing matched your search terms. Please try again with some "
+"different keywords."
+msgstr ""
+
+#: template-parts/content-none.php:29
+msgid ""
+"It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps "
+"searching can help."
+msgstr ""
+
+#. Theme Name of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Toujours"
+msgstr ""
+
+#. Theme URI of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "http://wordpress.com/themes/toujours/"
+msgstr ""
+
+#. Description of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid ""
+"Toujours has a simple, elegant design that's perfect for planning and "
+"sharing moments from your wedding. The theme highlights your content with a "
+"slideshow, large featured images, and a unique layout for recent posts."
+msgstr ""
+
+#. Author of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "Automattic"
+msgstr ""
+
+#. Author URI of the plugin/theme
+#: wp-content/themes/pub/toujours/style.css
+msgid "http://automattic.com/"
+msgstr ""
+
+#. Template Name of the plugin/theme
+#: wp-content/themes/pub/toujours/guestbook.php
+msgid "Guestbook"
+msgstr ""

+ 37 - 0
toujours/page.php

@@ -0,0 +1,37 @@
+<?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 may use a
+ * different template.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+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( 'template-parts/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(); ?>

+ 83 - 0
toujours/readme.txt

@@ -0,0 +1,83 @@
+=== Toujours ===
+
+Requires at least: 4.0
+Tested up to: 4.4
+Stable tag: 1.0.0
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts.
+
+== 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? =
+
+Toujours includes support for a few Jetpack features, including Infinite Scroll, Site Logo, and Featured Content (the posts are displayed in the slideshow in the blog page).
+
+= How do I use the Guestbook Template? =
+
+You can use the Guestbook Template by following these steps:
+
+1. Create a new page, or edit an existing page.
+2. Under Page Attributes, change the Template to Guestbook.
+3. Under Discussion, make sure that 'Allow comments.' is checked.
+
+= How do I add the Featured Content slideshow =
+
+The Featured Content slideshow requires the Jetpack plugin (https://wordpress.org/plugins/jetpack/). Once installed, it can be set up following these steps:
+
+1. In the Customizer > Featured Content, enter a post tag to use to mark Featured Content. Click Save & Publish.
+2. Add that tag to posts you would like to show in the Featured Content slideshow.
+3. The posts will automatically appear in the slideshow, at the top of the blog page. They will use the Featured Image from each post, and display the title and published date overtop.
+
+= How do I add the three most recent posts above the rest on the blog page? =
+
+Toujours allows you to display the three most recent posts in a special area above the other posts on the blog page. To do this:
+
+1. Navigate to the Customizer > Theme Options.
+2. Check the checkbox labelled "Display the three most recent posts in a special area above your other posts". Click Save & Publish.
+3. Your three most recent posts will automatically appear above the rest of the posts on the blog page. They will each display a Featured Image, and an excerpt from the post.
+
+== Credits ==
+
+* Based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
+* normalize.css http://necolas.github.io/normalize.css/, (C) 2012-2017 Nicolas Gallagher and Jonathan Neal, [MIT](http://opensource.org/licenses/MIT)
+
+== Licensing ==
+
+Toujours WordPress theme, Copyright 2015 Automattic
+Distributed under the GNU GPL
+
+Toujours WordPress theme bundles the following third-party resources:
+
+jQuery FlexSlider v2.6.0 Copyright 2012 WooThemes
+Licensed under the terms of the GNU GPL, Version 2 (or later) (https://www.gnu.org/licenses/gpl-2.0.html)
+Source: https://github.com/woothemes/FlexSlider
+
+Genericons icon font, Copyright 2015 Automattic
+Licensed under the terms of the GNU GPL, Version 2 (or later) (https://www.gnu.org/licenses/gpl-2.0.html)
+Source: http://www.genericons.com
+
+imagesLoaded v4.0.0
+Licensed under the terms of the MIT License (http://opensource.org/licenses/MIT)
+Source: https://github.com/desandro/imagesloaded
+
+Alegreya Sans Font
+Licensed under SIL Open Font License, 1.1 (http://scripts.sil.org/OFL)
+Source: https://www.google.com/fonts/specimen/Alegreya+Sans
+
+Merriweather Font
+Licensed under SIL Open Font License, 1.1 (http://scripts.sil.org/OFL)
+Source: https://www.google.com/fonts/specimen/Merriweather
+
+Theme screenshot uses an image from Unsplash
+Licensed under Creative Commons Zero, 1.0 (http://creativecommons.org/publicdomain/zero/1.0/)
+Source: https://unsplash.com/photos/51QcRqMjy6w

+ 500 - 0
toujours/rtl.css

@@ -0,0 +1,500 @@
+/*
+Theme Name: Toujours
+
+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;
+}
+
+blockquote {
+	border-left: 0;
+	border-right: 4px solid #f0f0f0;;
+	padding-left: 0;
+	padding-right: 30px;
+}
+
+
+li > ul,
+li > ol {
+	margin-left: 0;
+	margin-right: 1.5em;
+}
+
+th,
+td {
+	text-align: right;
+}
+
+textarea {
+	padding-left: 0;
+	padding-right: 3px;
+}
+
+.search-form label:before {
+	left: 0;
+	right: auto;
+}
+
+.search-form .search-submit {
+	left: 0;
+	right: auto;
+}
+
+/*--------------------------------------------------------------
+## Menus
+--------------------------------------------------------------*/
+
+.main-navigation ul {
+	padding-right: 0;
+}
+
+.main-navigation .menu-item-has-children > a:after,
+.main-navigation .page_item_has_children > a:after {
+	margin-left: 0;
+	margin-right: 5px;
+}
+
+.main-navigation ul ul {
+	float: right;
+	left: auto;
+	right: -999em;
+	text-align: right;
+}
+
+.main-navigation ul ul:before {
+	left: auto;
+	right: 50%;
+	margin-left: 0;
+	margin-right: -8px;
+}
+
+.main-navigation ul ul .menu-item-has-children > a,
+.main-navigation ul ul .page_item_has_children > a {
+	padding-left: 30px;
+	padding-right: 15px;
+}
+
+.main-navigation ul ul .menu-item-has-children > a:after,
+.main-navigation ul ul .page_item_has_children > a:after {
+	left: 10px;
+	right: auto;
+	-webkit-transform: rotate(90deg);
+	-moz-transform: rotate(90deg);
+	-ms-transform: rotate(90deg);
+	transform: rotate(90deg);
+}
+
+.main-navigation ul ul ul {
+	left: auto;
+	right: -999em;
+}
+
+.main-navigation ul li:hover > ul,
+.main-navigation ul li.focus > ul {
+	left: auto;
+	margin-left: 0;
+	margin-right: -120px;
+	right: 50%;
+}
+
+.main-navigation ul ul li:hover > ul,
+.main-navigation ul ul li.focus > ul {
+	left: auto;
+	margin-right: 0;
+	right: 100%;
+}
+
+.comment-navigation .nav-previous,
+.posts-navigation .nav-previous,
+.post-navigation .nav-previous {
+	float: right;
+	text-align: right;
+}
+
+.comment-navigation .nav-next,
+.posts-navigation .nav-next,
+.post-navigation .nav-next {
+	float: left;
+	text-align: left;
+}
+
+/*--------------------------------------------------------------
+# Widgets
+--------------------------------------------------------------*/
+
+.widget_archive ul ul,
+.widget_categories ul ul,
+.widget_links ul ul,
+.widget_meta ul ul,
+.widget_nav_menu ul ul,
+.widget_pages ul ul,
+.widget_recent_entries ul ul,
+.widget_rss ul ul {
+	margin-left: 0;
+	margin-right: 15px;
+}
+
+
+/* Widget Calendar */
+
+.widget_calendar #next {
+	text-align: left;
+}
+
+.widget_calendar #prev {
+	text-align: right;
+}
+
+/*--------------------------------------------------------------
+# Structure
+--------------------------------------------------------------*/
+
+#primary {
+	float: right;
+}
+
+.no-sidebar #primary {
+	float: none;
+}
+
+#secondary {
+	border-left: 0;
+	border-right: 1px solid #e1e1e1;
+	float: left;
+	padding-left: 0;
+	padding-right: 30px;
+}
+
+/*--------------------------------------------------------------
+# Slideshow
+--------------------------------------------------------------*/
+
+.slideshow {
+	direction: ltr;
+}
+
+.slideshow .slide-info {
+	left: auto;
+	right: 0;
+	text-align: right;
+}
+
+.slideshow .slide-info:after {
+	border: 1px solid;
+	border-right: 0;
+	left: 3px;
+	right: 0;
+}
+
+/*--------------------------------------------------------------
+## Featured Post Trio
+--------------------------------------------------------------*/
+#featured-post-trio article {
+	float: right;
+	margin-left: 30px;
+	margin-right: 0;
+}
+
+#featured-post-trio article:last-child {
+	margin-left: 0;
+}
+
+/*--------------------------------------------------------------
+## Posts and pages
+--------------------------------------------------------------*/
+
+.featured-post {
+	left: auto;
+	right: -3px;
+}
+
+.featured-image span {
+	float: right;
+}
+
+.featured-image a {
+	float: right;
+}
+
+.entry-meta .comments-link {
+	float: left;
+}
+
+.cat-links a:first-of-type,
+.tags-links a:first-of-type {
+	margin-left: 0;
+	margin-right: 0.25em;
+}
+
+
+.post-format-label:before {
+	margin-left: 2px;
+	margin-right: 0;
+}
+
+.nav-links .nav-previous .nav-subtitle:before {
+	left: auto;
+	right: -3px;
+}
+
+.nav-links .nav-next .nav-subtitle:after {
+	left: -3px;
+	right: auto;
+}
+
+/*--------------------------------------------------------------
+## Audio
+--------------------------------------------------------------*/
+
+.entry-audio .mejs-container .mejs-controls,
+.entry-content .mejs-container.mejs-audio .mejs-controls {
+	left: auto;
+	right: 4%;
+}
+
+/*--------------------------------------------------------------
+## Comments
+--------------------------------------------------------------*/
+
+.comment-list .children {
+	padding-left: 0;
+	padding-right: 45px;
+}
+
+.comment .avatar-container {
+	left: auto;
+	right: 0;
+}
+
+.bypostauthor .avatar-container:before {
+	left: 0;
+	right: auto;
+}
+
+.bypostauthor .avatar-container:after {
+	left: 1px;
+	right: auto;
+}
+
+.children .bypostauthor .avatar-container:after {
+	left: 0;
+	right: auto;
+}
+
+.comment-author,
+.comment-metadata,
+.comment-content,
+.reply,
+.comment-awaiting-moderation {
+	margin-left: 0;
+	margin-right: 110px;
+}
+
+.children .comment-author,
+.children .comment-metadata,
+.children .comment-content,
+.children .reply,
+.children .comment-awaiting-moderation {
+	margin-left: 0;
+	margin-right: 90px;
+}
+
+.comment-respond #reply-title small {
+	float: left;
+}
+
+/*--------------------------------------------------------------
+## 404 Page
+--------------------------------------------------------------*/
+
+.error404 #primary {
+	float: none;
+}
+
+/*--------------------------------------------------------------
+## Guestbook Page
+--------------------------------------------------------------*/
+
+.page-template-guestbook #comments .comment {
+	float: right;
+}
+
+.page-template-guestbook #primary {
+	float: none;
+}
+
+/*--------------------------------------------------------------
+# Footer
+--------------------------------------------------------------*/
+
+#footer-widgets .widget {
+	float: right;
+}
+
+/*--------------------------------------------------------------
+# Infinite scroll
+--------------------------------------------------------------*/
+
+.infinite-loader .spinner {
+	left: auto !important;
+	right: 50% !important; /* !important to override inline styles */
+	margin-left: 0;
+	margin-right: -10px;
+}
+
+#infinite-handle span {
+	border: 0;
+}
+
+#infinite-handle span:before {
+	display: none;
+}
+
+/*--------------------------------------------------------------
+## Galleries
+--------------------------------------------------------------*/
+
+.gallery-columns-6 .gallery-item,
+.gallery-columns-7 .gallery-item,
+.gallery-columns-8 .gallery-item,
+.gallery-columns-9 .gallery-item {
+	padding-left: 2px;
+	padding-right: 0;
+}
+
+/*--------------------------------------------------------------
+## Media Queries
+--------------------------------------------------------------*/
+
+@media only screen and (max-width: 1024px) {
+
+	#primary,
+	#secondary {
+		float: none;
+	}
+
+	#secondary {
+		padding-right: 0;
+	}
+
+	/* Featured trio */
+	#featured-post-trio article {
+		float: none;
+	}
+
+	#featured-post-trio article.has-post-thumbnail .featured-image {
+		float: right;
+		margin-left: 30px;
+		margin-right: 0;
+	}
+
+	#featured-post-trio article.has-post-thumbnail .entry-text {
+		float: right;
+	}
+
+	/* Guestbook Template */
+	.page-template-guestbook #comments .comment {
+		float: none;
+	}
+}
+
+
+@media only screen and (max-width: 680px) {
+	/* Navigation */
+	.main-navigation {
+		text-align: right;
+	}
+
+	.main-navigation ul ul {
+		float: none;
+		padding-left: 0;
+		padding-right: 15px;
+	}
+
+	.main-navigation ul li:hover > ul,
+	.main-navigation ul li.focus > ul {
+		right: auto;
+		margin-right: 0;
+	}
+
+	.menu-toggle:before {
+		margin-left: 5px;
+		margin-right: 0;
+	}
+
+	.slideshow .slide-info {
+		text-align: center;
+	}
+
+	#featured-post-trio article.has-post-thumbnail .featured-image,
+	#featured-post-trio article.has-post-thumbnail .entry-text {
+		float: none;
+	}
+
+	.entry-footer .edit-link {
+		float: none;
+	}
+
+	.nav-links .nav-previous,
+	.nav-links .nav-next {
+		float: none;
+		text-align: center;
+	}
+
+	.comment .avatar-container:after,
+	.comment .avatar-crop:after {
+		left: 1px;
+		right: auto;
+	}
+
+	.comment .comment-author,
+	.comment .comment-metadata,
+	.comment .comment-content,
+	.comment .reply,
+	.comment .comment-awaiting-moderation {
+		margin-left: 0;
+		margin-right: 90px;
+	}
+
+	.comment-list .children {
+		padding-left: 0;
+		padding-right: 20px;
+	}
+
+	.children .comment .avatar-container:after,
+	.children .comment .avatar-crop:after {
+		left: 0;
+		right: auto;
+	}
+
+	.children .comment .comment-author,
+	.children .comment .comment-metadata,
+	.children .comment .comment-content,
+	.children .comment .reply,
+	.children .comment .reply {
+		margin-left: 0;
+		margin-right: 70px;
+	}
+
+}
+
+@media only screen and (max-width: 540px) {
+
+	/* Posts and pages */
+	.entry-meta .comments-link {
+		float: none;
+	}
+
+	.comment-list .children {
+		padding-right: 0;
+	}
+}

二進制
toujours/screenshot.png


+ 47 - 0
toujours/search.php

@@ -0,0 +1,47 @@
+<?php
+/**
+ * The template for displaying search results pages.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
+ *
+ * @package Toujours
+ */
+
+get_header(); ?>
+
+	<section id="primary" class="content-area">
+		<main id="main" class="site-main" role="main">
+
+		<?php if ( have_posts() ) : ?>
+
+			<header class="page-header">
+				<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'toujours' ), '<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( 'template-parts/content', 'search' );
+				?>
+
+			<?php endwhile; ?>
+
+			<?php the_posts_navigation(); ?>
+
+		<?php else : ?>
+
+			<?php get_template_part( 'template-parts/content', 'none' ); ?>
+
+		<?php endif; ?>
+
+		</main><!-- #main -->
+	</section><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 17 - 0
toujours/sidebar.php

@@ -0,0 +1,17 @@
+<?php
+/**
+ * The sidebar containing the main widget area.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
+ *
+ * @package Toujours
+ */
+
+if ( ! is_active_sidebar( 'sidebar-1' ) ) {
+	return;
+}
+?>
+
+<div id="secondary" class="widget-area" role="complementary">
+	<?php dynamic_sidebar( 'sidebar-1' ); ?>
+</div><!-- #secondary -->

+ 39 - 0
toujours/single.php

@@ -0,0 +1,39 @@
+<?php
+/**
+ * The template for displaying all single posts.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
+ *
+ * @package Toujours
+ */
+
+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( 'template-parts/content', get_post_format() ); ?>
+
+			<?php
+				the_post_navigation( array(
+					'prev_text' => '<span class="nav-subtitle">' . esc_html__( 'Previous', 'toujours' ) . '</span> <span class="nav-title">%title</span>',
+					'next_text' => '<span class="nav-subtitle">' . esc_html__( 'Next', 'toujours' ) . '</span> <span class="nav-title">%title</span>',
+				) );
+			?>
+
+			<?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(); ?>

+ 3915 - 0
toujours/style.css

@@ -0,0 +1,3915 @@
+/*
+Theme Name: Toujours
+Theme URI: http://wordpress.com/themes/toujours/
+Author: Automattic
+Author URI: http://automattic.com/
+Description: Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts.
+Version: 1.1.0-wpcom
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Text Domain: toujours
+Tags: blue, bright, classic-menu, clean, custom-background, custom-colors, custom-menu, editor-style, elegant, featured-images, gray, infinite-scroll, journal, light, one-column, post-formats, post-slider, responsive-layout, right-sidebar, rtl-language-support, simple, site-logo, sticky-post, theme-options, translation-ready, two-column, wedding, white
+
+This theme, like WordPress, is licensed under the GPL.
+Use it to make something cool, have fun, and share what you've learned with others.
+
+_s is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
+Underscores is distributed under the terms of the GNU GPL v2 or later.
+
+Normalizing styles have been helped along thanks to the fine work of
+Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
+*/
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+0. Normalize
+1. Typography
+2. Elements
+3. Forms
+4. Genericons
+5. Navigation
+	5.1 Links
+	5.2 Menus
+6. Accessibility
+7. Alignments
+8. Clearings
+9. Widgets
+10. Shortcodes
+11.Password form
+12. Structure
+13. Header
+14. Featured Content
+15. Tagline
+16. Featured Post Trio
+17. Primary Content
+	17.1 Posts and pages
+	17.2 Little Titles
+	17.3 Audio Post Format
+	17.4 Image Post Format
+	17.5 Quote Post Format
+	17.6 Status Post Format
+	17.7 Archives
+	17.8 Comments
+	17.9 404 Page
+	17.10 Guestbook Template
+18. Secondary Content
+19. Footer
+	19.1 Infinite Scroll
+20. Media
+	20.1 Captions
+	20.2 Galleries
+21. Media Queries
+
+--------------------------------------------------------------*/
+/*--------------------------------------------------------------
+0. Normalize
+--------------------------------------------------------------*/
+html {
+	font-family: sans-serif;
+	-webkit-text-size-adjust: 100%;
+	-ms-text-size-adjust: 100%;
+}
+
+body {
+	margin: 0;
+}
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+main,
+menu,
+nav,
+section,
+summary {
+	display: block;
+}
+
+audio,
+canvas,
+progress,
+video {
+	display: inline-block;
+	vertical-align: baseline;
+}
+
+audio:not([controls]) {
+	display: none;
+	height: 0;
+}
+
+[hidden],
+template {
+	display: none;
+}
+
+a {
+	background-color: transparent;
+}
+
+a:active,
+a:hover {
+	outline: 0;
+}
+
+abbr[title] {
+	border-bottom: 1px dotted;
+}
+
+b,
+strong {
+	font-weight: bold;
+}
+
+dfn {
+	font-style: italic;
+}
+
+h1 {
+	font-size: 2em;
+	margin: 0.67em 0;
+}
+
+mark {
+	background: #ff0;
+	color: #000;
+}
+
+small {
+	font-size: 80%;
+}
+
+sub,
+sup {
+	font-size: 75%;
+	line-height: 0;
+	position: relative;
+	vertical-align: baseline;
+}
+
+sup {
+	top: -0.5em;
+}
+
+sub {
+	bottom: -0.25em;
+}
+
+img {
+	border: 0;
+}
+
+svg:not(:root) {
+	overflow: hidden;
+}
+
+figure {
+	margin: 0;
+}
+
+hr {
+	box-sizing: content-box;
+	height: 0;
+}
+
+pre {
+	overflow: auto;
+}
+
+code,
+kbd,
+pre,
+samp {
+	font-family: monospace, monospace;
+	font-size: 1em;
+}
+
+button,
+input,
+optgroup,
+select,
+textarea {
+	color: inherit;
+	font: inherit;
+	margin: 0;
+}
+
+button {
+	overflow: visible;
+}
+
+button,
+select {
+	text-transform: none;
+}
+
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+	-webkit-appearance: button;
+	cursor: pointer;
+}
+
+button[disabled],
+html input[disabled] {
+	cursor: default;
+}
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+	border: 0;
+	padding: 0;
+}
+
+input {
+	line-height: normal;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+	box-sizing: border-box;
+	padding: 0;
+}
+
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+	height: auto;
+}
+
+input[type="search"] {
+	-webkit-appearance: textfield;
+}
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+	-webkit-appearance: none;
+}
+
+fieldset {
+	border: 1px solid #c0c0c0;
+	margin: 0 2px;
+	padding: 0.35em 0.625em 0.75em;
+}
+
+legend {
+	border: 0;
+	padding: 0;
+}
+
+textarea {
+	overflow: auto;
+}
+
+optgroup {
+	font-weight: bold;
+}
+
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+}
+
+td,
+th {
+	padding: 0;
+}
+
+/*--------------------------------------------------------------
+1. Typography
+--------------------------------------------------------------*/
+body,
+button,
+input,
+select,
+textarea {
+	color: #404040;
+	font-family: "Merriweather", Georgia, "Times New Roman", serif;
+	font-size: 17px;
+	font-weight: 400;
+	line-height: 1.8;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	clear: both;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-weight: 300;
+	line-height: 1.2;
+	margin: 0;
+	padding: 0 0 15px;
+}
+
+h1 {
+	font-size: 40px;
+}
+
+h2 {
+	font-size: 35px;
+}
+
+h3 {
+	font-size: 30px;
+}
+
+h4 {
+	font-size: 20px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+h5 {
+	font-size: 18px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+h6 {
+	font-size: 16px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+p {
+	margin: 0 0 1.5em;
+	padding: 0;
+}
+
+dfn,
+cite,
+em,
+i {
+	font-style: italic;
+}
+
+blockquote {
+	color: #888;
+	border-left: 4px solid #f0f0f0;
+	margin: 0 0 1.5em;
+	padding: 0 0 0 30px;
+}
+
+blockquote p:last-child {
+	margin-bottom: 0;
+}
+
+blockquote cite {
+	display: block;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 18px;
+	font-style: normal;
+	font-weight: 300;
+	margin-top: 5px;
+}
+
+address {
+	margin: 0 0 1.5em;
+}
+
+pre {
+	background: #333;
+	color: #ddd;
+	font-family: "Courier 10 Pitch", Courier, monospace;
+	line-height: 1.6;
+	margin-bottom: 1.6em;
+	max-width: 100%;
+	overflow: auto;
+	padding: 1.6em;
+	position: relative;
+}
+	pre:before {
+		border: 1px solid rgba(255, 255, 255, 0.4);
+		bottom: 3px;
+		content: "";
+		display: block;
+		left: 3px;
+		position: absolute;
+		right: 3px;
+		top: 3px;
+}
+
+code,
+kbd,
+tt,
+var {
+	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
+	font-size: 15px;
+	font-size: 0.9375rem;
+}
+
+abbr,
+acronym {
+	border-bottom: 1px dotted #666;
+	cursor: help;
+}
+
+mark,
+ins {
+	background: #fff9c0;
+	text-decoration: none;
+}
+
+big {
+	font-size: 125%;
+}
+
+/*--------------------------------------------------------------
+2. Elements
+--------------------------------------------------------------*/
+html {
+	box-sizing: border-box;
+}
+
+*,
+*:before,
+*:after {
+	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
+	box-sizing: inherit;
+}
+
+body {
+	background-color: #eee;
+	background-size: 48px auto;
+}
+
+body.user-background {
+	background-size: auto auto;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+	content: "";
+}
+
+blockquote,
+q {
+	quotes: "" "";
+}
+
+blockquote {
+	font-size: 120%;
+	font-style: italic;
+	position: relative;
+}
+
+blockquote blockquote {
+	font-size: 100%;
+}
+
+hr {
+	background-color: #ccc;
+	border: 0;
+	height: 1px;
+	margin-bottom: 1.5em;
+}
+
+ul,
+ol {
+	margin: 0 0 30px;
+}
+
+ul {
+	list-style: disc;
+}
+
+ol {
+	list-style: decimal;
+}
+
+li > ul,
+li > ol {
+	margin-bottom: 0;
+	margin-left: 1.5em;
+}
+
+dl {
+	margin-bottom: 30px;
+	margin-top: 0;
+}
+
+dt {
+	font-weight: bold;
+}
+
+dd {
+	margin: 0 1.5em 1.5em;
+}
+
+img {
+	height: auto; /* Make sure images are scaled correctly. */
+	max-width: 100%; /* Adhere to container width. */
+}
+
+table {
+	border-bottom: 4px double #e1e1e1;
+	border-top: 4px double #e1e1e1;
+	margin: 0 0 30px;
+	max-width: 100%;
+	overflow: auto;
+	width: 100%;
+}
+
+.table-responsive {
+	overflow: auto;
+}
+
+tr {
+	border-bottom: 1px solid #e1e1e1;
+}
+
+th,
+td {
+	font-size: 90%;
+	padding: 10px;
+	text-align: left;
+}
+
+thead {
+	font-weight: 700;
+}
+
+/*--------------------------------------------------------------
+3. Forms
+--------------------------------------------------------------*/
+button,
+input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+	background-color: #2590ec;
+	border: 0;
+	color: #fff;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 14px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	line-height: 1;
+	padding: 15px 30px;
+	text-transform: uppercase;
+	-webkit-transition: background-color 0.2s;
+	-moz-transition: background-color 0.2s;
+	transition: background-color 0.2s;
+}
+
+button:hover,
+input[type="button"]:hover,
+input[type="reset"]:hover,
+input[type="submit"]:hover {
+	background-color: #444;
+}
+
+input[type="text"],
+input[type="email"],
+input[type="url"],
+input[type="password"],
+input[type="search"],
+input[type="number"],
+input[type="tel"],
+input[type="range"],
+input[type="date"],
+input[type="month"],
+input[type="week"],
+input[type="time"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="color"],
+textarea {
+	background-color: #f6f6f6;
+	border: 1px solid #ccc;
+	border-radius: 3px;
+	color: #666;
+	-webkit-transition: background-color 0.2s;
+	-moz-transition: background-color 0.2s;
+	transition: background-color 0.2s;
+}
+
+input[type="text"]:focus,
+input[type="email"]:focus,
+input[type="url"]:focus,
+input[type="password"]:focus,
+input[type="search"]:focus,
+input[type="number"]:focus,
+input[type="tel"]:focus,
+input[type="range"]:focus,
+input[type="date"]:focus,
+input[type="month"]:focus,
+input[type="week"]:focus,
+input[type="time"]:focus,
+input[type="datetime"]:focus,
+input[type="datetime-local"]:focus,
+input[type="color"]:focus,
+textarea:focus {
+	background-color: #fff;
+	color: #111;
+}
+
+input[type="text"],
+input[type="email"],
+input[type="url"],
+input[type="password"],
+input[type="search"],
+input[type="number"],
+input[type="tel"],
+input[type="range"],
+input[type="date"],
+input[type="month"],
+input[type="week"],
+input[type="time"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="color"] {
+	padding: 3px;
+}
+
+textarea {
+	padding-left: 3px;
+	width: 100%;
+}
+
+/**
+ * Search
+ */
+.search-form {
+	display: block;
+	position: relative;
+}
+
+.search-form label:before {
+	content: "\f400";
+	display: block;
+	font-size: 23px;
+	line-height: 1.6;
+	position: absolute;
+	right: 0;
+	text-align: center;
+	width: 40px;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+	z-index: 2;
+}
+
+.search-form.hover-button label:before {
+	color: #2590ec;
+}
+
+.search-form .search-field {
+	display: block;
+	width: 100%;
+}
+
+.search-form ::-webkit-input-placeholder {
+	font-style: italic;
+}
+
+.search-form :-moz-placeholder {
+	/* Firefox 18- */
+	font-style: italic;
+}
+
+.search-form ::-moz-placeholder {
+	/* Firefox 19+ */
+	font-style: italic;
+}
+
+.search-form :-ms-input-placeholder {
+	font-style: italic;
+}
+
+.search-form .search-submit {
+	background-color: transparent;
+	border: 0;
+	bottom: 0;
+	cursor: pointer;
+	display: block;
+	overflow: hidden;
+	position: absolute;
+	right: 0;
+	text-indent: -99999em;
+	top: 0;
+	width: 40px;
+	z-index: 3;
+}
+
+.search-form .search-submit:hover {
+	background-color: transparent;
+}
+
+/*--------------------------------------------------------------
+4. Genericons
+--------------------------------------------------------------*/
+
+.prev-slide:before,
+.next-slide:before,
+.menu-toggle:before,
+.menu-item-has-children > a:after,
+.page_item_has_children > a:after,
+.post-format-label:before,
+.blog .format-link .entry-title a:after,
+.archive .format-link .entry-title a:after,
+.single .format-link .entry-title a:after,
+.nav-previous .nav-subtitle:before,
+.nav-next .nav-subtitle:after,
+.bypostauthor .avatar-container:after,
+.comment-metadata .edit-link:before,
+.search-form label:before,
+.entry-audio .mejs-container .mejs-controls .mejs-button button:before,
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-button button:before {
+	font-family: "Genericons";
+	font-style: normal;
+	font-variant: normal;
+	font-weight: normal;
+	text-decoration: inherit;
+	text-transform: none;
+	-webkit-font-smoothing: antialiased;
+	-moz-osx-font-smoothing: grayscale;
+	speak: none;
+}
+
+/*--------------------------------------------------------------
+5. Navigation
+--------------------------------------------------------------*/
+/*--------------------------------------------------------------
+5.1 Links
+--------------------------------------------------------------*/
+a {
+	color: #2590ec;
+	-ms-word-wrap: break-word;
+	word-wrap: break-word;
+}
+
+a:focus {
+	outline: thin dotted;
+}
+
+a:hover {
+	color: #666;
+}
+
+a:hover,
+a:active {
+	outline: 0;
+}
+
+/*--------------------------------------------------------------
+5.2 Menus
+--------------------------------------------------------------*/
+.main-navigation {
+	border-bottom: 4px double #e1e1e1;
+	border-top: 4px double #e1e1e1;
+	clear: both;
+	display: block;
+	margin-top: 60px;
+	padding: 5px 0;
+	text-align: center;
+	width: 100%;
+}
+
+.has-header-image .main-navigation,
+.has-site-logo .main-navigation {
+	margin-top: 40px;
+}
+
+.main-navigation ul {
+	display: none;
+	list-style: none;
+	margin: 0;
+	padding-left: 0;
+}
+
+.main-navigation li {
+	display: inline-block;
+	position: relative;
+}
+
+.main-navigation a {
+	color: #333;
+	display: inline-block;
+	font-size: 15px;
+	padding: 10px 20px;
+	position: relative;
+	text-decoration: none;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.main-navigation a:focus,
+.main-navigation a:hover {
+	color: #2590ec;
+}
+
+.main-navigation .menu-item-has-children > a:after,
+.main-navigation .page_item_has_children > a:after {
+	content: "\f431";
+	display: inline-block;
+	margin-left: 5px;
+	position: relative;
+	top: 2px;
+}
+
+.main-navigation ul ul {
+	background: #eee;
+	float: left;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-weight: 300;
+	left: -999em;
+	position: absolute;
+	opacity: 0;
+	text-align: left;
+	top: 100%;
+	-webkit-transition: opacity 0.5s;
+	-moz-transition: opacity 0.5s;
+	transition: opacity 0.5s;
+	width: 240px;
+	z-index: 99999;
+}
+
+.main-navigation ul ul:before {
+	border-color: transparent transparent #eee transparent;
+	border-style: solid;
+	border-width: 0 8px 8px 8px;
+	content: "";
+	height: 0;
+	left: 50%;
+	margin-left: -8px;
+	position: absolute;
+	top: -8px;
+	width: 0;
+}
+
+.main-navigation ul ul li {
+	display: block;
+}
+
+.main-navigation ul ul a {
+	display: block;
+	font-size: 17px;
+	line-height: 1.3;
+	padding: 10px 15px;
+	-webkit-transition: background-color 0.2s;
+	-moz-transition: background-color 0.2s;
+	transition: background-color 0.2s;
+}
+
+.main-navigation ul ul a:hover {
+	background-color: #f6f6f6;
+}
+
+.main-navigation ul ul .menu-item-has-children > a,
+.main-navigation ul ul .page_item_has_children > a {
+	padding-right: 30px;
+}
+
+.main-navigation ul ul .menu-item-has-children > a:after,
+.main-navigation ul ul .page_item_has_children > a:after {
+	position: absolute;
+	right: 10px;
+	top: 10px;
+	-webkit-transform: rotate(-90deg);
+	-moz-transform: rotate(-90deg);
+	-ms-transform: rotate(-90deg);
+	transform: rotate(-90deg);
+}
+
+.main-navigation ul ul ul {
+	left: -999em;
+	top: 0;
+}
+
+.main-navigation ul ul ul:before {
+	display: none;
+}
+
+.main-navigation ul li:hover > ul,
+.main-navigation ul li.focus > ul {
+	left: 50%;
+	margin-left: -120px;
+	opacity: 1.0;
+}
+
+.main-navigation ul ul li:hover > ul,
+.main-navigation ul ul li.focus > ul {
+	left: 100%;
+	margin-left: 0;
+}
+
+/* Small menu. */
+.menu-toggle,
+.main-navigation.toggled ul {
+	display: block;
+}
+
+@media screen and (min-width: 681px) {
+	.menu-toggle {
+		display: none;
+	}
+
+	.main-navigation ul {
+		display: block;
+	}
+}
+
+.site-main .comment-navigation,
+.site-main .posts-navigation,
+.site-main .post-navigation {
+	margin: 0 0 1.5em;
+}
+
+.comment-navigation .nav-previous,
+.posts-navigation .nav-previous,
+.post-navigation .nav-previous {
+	float: left;
+	width: 50%;
+}
+
+.comment-navigation .nav-next,
+.posts-navigation .nav-next,
+.post-navigation .nav-next {
+	float: right;
+	text-align: right;
+	width: 50%;
+}
+
+/*--------------------------------------------------------------
+6. Accessibility
+--------------------------------------------------------------*/
+/* Text meant only for screen readers. */
+.screen-reader-text {
+	clip: rect(1px, 1px, 1px, 1px);
+	position: absolute !important;
+	height: 1px;
+	width: 1px;
+	overflow: hidden;
+}
+
+.screen-reader-text:focus {
+	background-color: #f1f1f1;
+	border-radius: 3px;
+	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+	clip: auto !important;
+	color: #21759b;
+	display: block;
+	font-size: 14px;
+	font-size: 0.875rem;
+	font-weight: bold;
+	height: auto;
+	left: 5px;
+	line-height: normal;
+	padding: 15px 23px 14px;
+	text-decoration: none;
+	top: 5px;
+	width: auto;
+	z-index: 100000;
+	/* Above WP toolbar. */ }
+
+/* Do not show the outline on the skip link target. */
+#content[tabindex="-1"]:focus {
+	outline: 0;
+}
+
+:focus {
+	outline: 1px dotted #333;
+}
+
+/*--------------------------------------------------------------
+7. Alignments
+--------------------------------------------------------------*/
+.alignleft {
+	display: inline;
+	float: left;
+	margin: 0 1.5em 1em 0;
+}
+
+.alignright {
+	display: inline;
+	float: right;
+	margin: 0 0 1em 1.5em;
+}
+
+.aligncenter {
+	clear: both;
+	display: block;
+	margin: 0 auto 1em;
+}
+
+/*--------------------------------------------------------------
+8. Clearings
+--------------------------------------------------------------*/
+.clear:before,
+.clear:after,
+.wrap:before,
+.wrap:after,
+.featured-image:before,
+.featured-image:after,
+.slideshow-navigation:before,
+.slideshow-navigation:after,
+#featured-post-trio article:before,
+#featured-post-trio article:after,
+.entry-content:before,
+.entry-content:after,
+.nav-links:before,
+.nav-links:after,
+.comment-content:before,
+.comment-content:after,
+.site-header:before,
+.site-header:after,
+.site-content:before,
+.site-content:after,
+.site-footer:before,
+.site-footer:after {
+	content: "";
+	display: table;
+	table-layout: fixed;
+}
+
+.clear:after,
+.wrap:after,
+.featured-image:after,
+.slideshow-navigation:after,
+#featured-post-trio article:after,
+.entry-content:after,
+.nav-links:after,
+.comment-content:after,
+.site-header:after,
+.site-content:after,
+.site-footer:after {
+	clear: both;
+}
+
+/*--------------------------------------------------------------
+9. Widgets
+--------------------------------------------------------------*/
+.widget {
+	font-size: 90%;
+}
+
+.widget a {
+	text-decoration: none;
+}
+
+.widget h1 {
+	font-size: 28px;
+}
+
+.widget h2 {
+	font-size: 24px;
+}
+
+.widget h3 {
+	font-size: 22px;
+}
+
+.widget h4 {
+	font-size: 18px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.widget h5 {
+	font-size: 16px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.widget h6 {
+	font-size: 14px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+/* Make sure select elements fit in widgets. */
+.widget select {
+	max-width: 100%;
+}
+
+/* Make some lists unlist-y */
+.widget_archive ul,
+.widget_archive li,
+.widget_categories ul,
+.widget_categories li,
+.widget_jp_blogs_i_follow ol,
+.widget_jp_blogs_i_follow li,
+.widget_jetpack_posts_i_like ul,
+.widget_jetpack_posts_i_like li,
+.widget_links ul,
+.widget_links li,
+.widget_meta ul,
+.widget_meta li,
+.widget_nav_menu ul,
+.widget_nav_menu li,
+.widget_pages ul,
+.widget_pages li,
+.widget_recent_entries ul,
+.widget_recent_entries li,
+.widget_recent_comments ul,
+.widget_recent_comments li,
+.widget_rss ul,
+.widget_rss li,
+.widget_rss_links ul,
+.widget_rss_links li,
+.widget_wpcom_social_media_icons_widget ul,
+.widget_wpcom_social_media_icons_widget li,
+.widget_top-clicks ul,
+.widget_top-clicks li,
+.widget_top-posts ul,
+.widget_top-posts li,
+.top_rated ul,
+.widget.top_rated li {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+.widget_archive > ul,
+.widget_categories > ul,
+.widget_jp_blogs_i_follow > ol,
+.widget_jetpack_posts_i_like > ul,
+.widget_links > ul,
+.widget_meta > ul,
+.widget_nav_menu > ul,
+.widget_pages > ul,
+.widget_recent_entries > ul,
+.widget_recent_comments > ul,
+.widget_rss > ul,
+.widget_rss_links > ul,
+.widget_top-clicks > ul,
+.widget_top-posts > ul,
+.widget.top_rated #top_posts {
+	border-bottom: 1px solid #ddd;
+}
+
+.widget_archive li,
+.widget_categories li,
+.widget_jp_blogs_i_follow li,
+.widget_jetpack_posts_i_like li,
+.widget_links li,
+.widget_meta li,
+.widget_nav_menu li,
+.widget_pages li,
+.widget_recent_entries li,
+.widget_recent_comments li,
+.widget_rss li,
+.widget_rss_links li,
+.widget_top-clicks li,
+.widget_top-posts li,
+.widget.top_rated li {
+	border-top: 1px solid #ddd;
+	display: block;
+	padding: 5px 0;
+}
+
+.widget_archive ul ul,
+.widget_categories ul ul,
+.widget_links ul ul,
+.widget_meta ul ul,
+.widget_nav_menu ul ul,
+.widget_pages ul ul,
+.widget_recent_entries ul ul,
+.widget_recent_comments ul ul,
+.widget_rss ul ul {
+	margin-left: 15px;
+}
+
+.widget_archive ul ul li,
+.widget_categories ul ul li,
+.widget_links ul ul li,
+.widget_meta ul ul li,
+.widget_nav_menu ul ul li,
+.widget_pages ul ul li,
+.widget_recent_entries ul ul li,
+.widget_recent_comments ul ul li,
+.widget_rss ul ul li {
+	border: 0;
+}
+
+.widget_archive ul ul li:last-child,
+.widget_categories ul ul li:last-child,
+.widget_links ul ul li:last-child,
+.widget_meta ul ul li:last-child,
+.widget_nav_menu ul ul li:last-child,
+.widget_pages ul ul li:last-child,
+.widget_recent_entries ul ul li:last-child,
+.widget_recent_comments ul ul li:last-child,
+.widget_rss ul ul li:last-child {
+	padding-bottom: 0;
+}
+
+/* Archive widget */
+
+.widget_archive ul {
+	color: #999;
+}
+
+/* Widget - Author Grid */
+
+.widget_author_grid ul,
+.widget_author_grid li {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+/* Widget - Authors */
+.widget_authors ul,
+.widget_authors li {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+.widget_authors .avatar-container,
+.widget_authors strong {
+	display: inline-block;
+	vertical-align: middle;
+}
+
+.widget_authors ul ul {
+	margin-bottom: 30px;
+}
+
+.widget_authors ul ul li {
+	border-bottom: 1px solid #ddd;
+	display: block;
+	padding: 5px 0;
+}
+
+/* Blog Stats widget */
+.widget_blog-stats ul,
+.widget_blog-stats li {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+/* Widget Calendar */
+
+.widget_calendar caption {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	padding: 0 0 5px;
+	text-transform: uppercase;
+	text-align: left;
+}
+
+.widget_calendar th,
+.widget_calendar td {
+	padding-left: 0;
+	padding-right: 0;
+	text-align: center;
+}
+
+.widget_calendar #next {
+	text-align: right;
+}
+
+.widget_calendar #prev {
+	text-align: left;
+}
+
+/* Widget - Category */
+
+.widget_categories ul {
+	color: #999;
+}
+
+/* Contact Info Widget */
+.widget_contact_info .contact-map {
+	margin-bottom: 10px;
+}
+
+/* Flickr Widget */
+
+.widget_flickr table {
+	border: 0;
+}
+
+.widget_flickr table tr {
+	border: 0;
+}
+
+.widget_flickr table td {
+	padding: 0;
+}
+
+.widget_flickr #flickr_badge_wrapper {
+	background-color: transparent;
+	border: 0;
+}
+
+.widget #flickr_badge_uber_wrapper a:hover,
+.widget #flickr_badge_uber_wrapper a:link,
+.widget #flickr_badge_uber_wrapper a:active,
+.widget #flickr_badge_uber_wrapper a:visited {
+	color: #2590ec;
+}
+
+/* Goodreads */
+
+.widget_goodreads div[class^="gr_custom_container"] {
+	background-color: transparent;
+	border: 0;
+	border-radius: 0;
+	border-top: 1px solid #eee;
+}
+
+.widget_goodreads div[class^="gr_custom_each_container"] {
+	border-color: #eee;
+}
+
+.widget_goodreads div[class^="gr_custom_author"] {
+	color: #999;
+	display: block;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13px;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+/* Posts I like */
+
+.widget_jetpack_posts_i_like .widgets-list-layout li {
+	margin-bottom: 0;
+}
+
+.widget_jetpack_posts_i_like .widgets-list-layout .widgets-list-layout-blavatar {
+	height: 48px;
+	line-height: 1;
+	max-width: 100%;
+	vertical-align: middle;
+	width: 48px;
+}
+
+.widget_jetpack_posts_i_like .widgets-list-layout-links {
+	width: calc( 100% - 60px );
+}
+
+/* Recent Comments */
+
+.widget_recent_comments table {
+	border: 0;
+	border-top: 1px solid #e1e1e1;
+}
+
+.widget_recent_comments table td {
+	height: auto !important;
+}
+
+.widget_recent_comments td.recentcommentsavatartop,
+.widget_recent_comments td.recentcommentsavatarend {
+	padding-top: 5px;
+}
+
+.widget_recent_comments .avatar-crop {
+	line-height: 1;
+}
+
+/* Recent Entries */
+
+.widget_recent_entries .post-date {
+	display: block;
+	font-size: 90%;
+}
+
+/* RSS Widget */
+
+.widget_rss li {
+	padding: 10px 0;
+}
+
+.widget_rss .rsswidget {
+	font-size: 110%;
+}
+
+.widget_rss .rss-date {
+	color: #999;
+	display: block;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 14px;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+/* Tag cloud */
+
+.widget_tag_cloud a,
+.wp_widget_tag_cloud a {
+	display: inline-block;
+	font-size: 14px !important;
+	margin: 0 0 3px 0 !important;
+	padding: 4px 7px !important;
+	-webkit-transition: color 0.2s, background-color 0.2s;
+	-moz-transition: color 0.2s, background-color 0.2s;
+	transition: color 0.2s, background-color 0.2s;
+}
+
+.widget_tag_cloud a:hover,
+.wp_widget_tag_cloud a:hover {
+		text-decoration: none;
+}
+
+/* Twitter widget */
+.widget_twitter_timeline {
+	min-height: 450px;
+}
+
+/*--------------------------------------------------------------
+10. Shortcodes
+--------------------------------------------------------------*/
+
+.embed-vimeo,
+.embed-youtube {
+	display: block;
+	margin-bottom: 1.5em;
+}
+
+.PDS_Poll {
+	margin-bottom: 1.5em;
+}
+
+iframe[src*='embed.spotify'] {
+	margin-bottom: 1.5em !important; /* !important to override inline styles */
+}
+
+iframe[src*='bandcamp'] {
+	margin-bottom: 1.5em;
+}
+
+.contact-form input[type="text"],
+.contact-form input[type="email"],
+.contact-form input[type="url"],
+.contact-form label {
+	display: block;
+}
+
+.contact-form label {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 14px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+/*--------------------------------------------------------------
+11. Password
+--------------------------------------------------------------*/
+
+.post-password-form label {
+	color: #999;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 14px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.post-password-form input[type="submit"] {
+	padding-bottom: 12px;
+	padding-top: 12px;
+}
+
+/*--------------------------------------------------------------
+12. Structure
+--------------------------------------------------------------*/
+#page {
+	background: #fff;
+	border: 1px solid #ccc;
+	margin: 30px auto;
+	max-width: 1280px;
+	padding: 60px 0 0;
+}
+
+#content .wrap {
+	padding: 45px 0 30px;
+}
+
+#primary {
+	float: left;
+	min-height: 200px;
+	width: calc(66.666% - 10px);
+}
+
+.no-sidebar #primary {
+	float: none;
+	margin: auto;
+	max-width: 760px;
+	width: 100%;
+}
+
+#secondary {
+	border-left: 1px solid #e1e1e1;
+	float: right;
+	padding-left: 30px;
+	width: calc(33.333% - 20px);
+	word-wrap: break-word;
+}
+
+.wrap {
+	margin-left: 60px;
+	margin-right: 60px;
+}
+
+/*--------------------------------------------------------------
+13. Header
+--------------------------------------------------------------*/
+.site-header {
+	text-align: center;
+}
+
+.site-title {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 75px;
+	font-weight: 300;
+	line-height: 1.1;
+	margin: 0;
+	padding: 0;
+}
+
+.has-header-image .site-title {
+	margin-top: 30px;
+}
+
+.site-title a {
+	color: #2590ec;
+	text-decoration: none;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.site-title a:hover {
+	color: #666;
+}
+
+.site-logo {
+	height: auto;
+	max-height: 200px;
+	margin-bottom: 10px;
+	width: auto;
+}
+
+.has-header-image .site-logo {
+	margin-bottom: 20px;
+}
+
+/*--------------------------------------------------------------
+14. Featured Content
+--------------------------------------------------------------*/
+
+/* Flexslider styles */
+
+/* General slideshow styles */
+#featured-slideshow .wrap {
+	padding-top: 30px;
+}
+
+#featured-slideshow .slideshow {
+	position: relative;
+}
+
+#featured-slideshow ul,
+#featured-slideshow li {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+#featured-slideshow .slideshow .slides > li {
+	display: none;
+}
+
+.no-js #featured-slideshow .slides > li:first-child {
+	display: block;
+}
+
+.slideshow .slide {
+	position: relative;
+}
+
+.slideshow .slide-media {
+	background-color: #eee;
+	background-size: 100% auto; /* for IE9 */
+	background-size: cover;
+	background-position: center center;
+	height: 0;
+	min-height: 0;
+	padding-bottom: 40.678%;
+	position: relative;
+	-webkit-transition: opacity 0.2s;
+	-moz-transition: opacity 0.2s;
+	transition: opacity 0.2s;
+	-webkit-backface-visibility: hidden;
+}
+
+.slideshow .slide:hover .slide-media {
+	opacity: 0.8;
+}
+
+.slideshow .slide-info {
+	background: rgba(0, 0, 0, 0.4);
+	bottom: 30px;
+	color: #fff;
+	left: 0;
+	padding: 30px;
+	position: absolute;
+	-webkit-backface-visibility: hidden;
+	width: 50%;
+	z-index: 5;
+}
+
+.slideshow .slide-info:after {
+	border: 1px solid rgba(255, 255, 255, 0.4);
+	border-left: 0;
+	bottom: 3px;
+	content: "";
+	display: block;
+	left: 0;
+	position: absolute;
+	right: 3px;
+	top: 3px;
+}
+
+.slideshow .slide-info .slide-title {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 30px;
+	font-weight: 300;
+	line-height: 1.3;
+	position: relative;
+	z-index: 4;
+}
+
+.slideshow .slide-info .slide-title a {
+	color: #fff;
+	text-decoration: none;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.slideshow .slide-info .slide-title a:hover {
+	color: rgba(255, 255, 255, 0.8);
+}
+
+.slideshow .slide-info .posted-on,
+.slideshow .slide-info .byline {
+	color: #ddd;
+	font-style: italic;
+	font-size: 14px;
+	opacity: 0.8;
+	position: relative;
+	z-index: 4;
+}
+
+.slideshow .slide-info .posted-on a,
+.slideshow .slide-info .byline a {
+	color: #ddd;
+	text-decoration: none;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.slideshow .slide-info .posted-on a:hover,
+.slideshow .slide-info .byline a:hover {
+	color: #fff;
+}
+
+.slideshow-navigation {
+	text-align: center;
+}
+
+.slideshow .prev-slide,
+.slideshow .next-slide {
+	bottom: -6px;
+	color: #aaa;
+	cursor: pointer;
+	font-size: 26px;
+	height: 10px;
+	position: relative;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.slideshow .prev-slide:hover,
+.slideshow .next-slide:hover {
+	color: #2590ec;
+}
+
+.slideshow .prev-slide:before {
+	content: "\f431";
+}
+
+.slideshow .next-slide:before {
+	content: "\f432";
+}
+
+.slideshow .prev-slide:before,
+.slideshow .next-slide:before {
+	display: inline-block;
+	-webkit-transform: rotate(90deg);
+	-ms-transform: rotate(90deg);
+	transform: rotate(90deg);
+}
+
+.slideshow .flex-direction-nav {
+	text-align: center;
+}
+
+.slideshow .flex-control-nav {
+	display: inline-block;
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+.slideshow .flex-control-nav li {
+	display: inline;
+	margin: 0;
+	padding: 0;
+}
+
+.slideshow .flex-control-nav li a {
+	background-color: #f0f0f0;
+	border: 1px solid #ccc;
+	border-radius: 30px;
+	cursor: pointer;
+	display: inline-block;
+	height: 15px;
+	margin: 0 5px;
+	overflow: hidden;
+	padding: 0;
+	text-indent: -9999em;
+	-webkit-transition: background-color 0.2s, border-color 0.2s;
+	-moz-transition: background-color 0.2s, border-color 0.2s;
+	transition: background-color 0.2s, border-color 0.2s;
+	width: 15px;
+}
+
+.slideshow .flex-control-nav li a:hover {
+	background-color: #fff;
+	border-color: #aaa;
+}
+
+.slideshow .flex-control-nav li a.flex-active {
+	background-color: #888;
+	border-color: #888;
+}
+
+/*--------------------------------------------------------------
+15. Tagline
+--------------------------------------------------------------*/
+#tagline {
+	text-align: center;
+}
+
+#tagline .wrap {
+	border-bottom: 4px double #e1e1e1;
+	border-top: 4px double #e1e1e1;
+	margin-top: 5px;
+	padding: 30px 0;
+}
+
+#tagline p {
+	color: #666;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 32px;
+	font-weight: 300;
+	line-height: 1.2;
+	margin: 0;
+}
+
+.site-header + #tagline .wrap {
+	border-top: 0;
+	margin-top: 0;
+}
+
+/*--------------------------------------------------------------
+16. Featured Post Trio
+--------------------------------------------------------------*/
+#featured-post-trio .wrap {
+	border-bottom: 4px double #e1e1e1;
+	padding: 30px 0 0;
+}
+
+#featured-post-trio article {
+	float: left;
+	font-size: 16px;
+	margin-bottom: 30px;
+	margin-right: 30px;
+	width: calc(33.333% - 20px);
+}
+
+#featured-post-trio article:last-child {
+	margin-right: 0;
+}
+
+#featured-post-trio article .entry-header {
+	border: 0;
+	margin: 0;
+	padding: 0 0 15px;
+}
+
+#featured-post-trio article h2 {
+	font-size: 28px;
+	margin-bottom: 0;
+	padding-bottom: 0;
+}
+
+#featured-post-trio article h2 a {
+	color: #333;
+	text-decoration: none;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+#featured-post-trio article h2 a:hover {
+	color: #2590ec;
+}
+
+#featured-post-trio article p {
+	margin-bottom: 0;
+}
+
+#featured-post-trio article p a {
+	font-style: italic;
+	text-transform: lowercase;
+}
+
+#featured-post-trio article .entry-footer {
+	border: 0;
+	padding: 0;
+}
+
+#featured-post-trio article .entry-footer .cat-links,
+#featured-post-trio article .entry-footer .tags-links,
+#featured-post-trio article .entry-footer .sep,
+#featured-post-trio article .post-format-label {
+	display: none;
+}
+
+#featured-post-trio article .entry-footer .edit-link {
+	float: none;
+}
+
+/*--------------------------------------------------------------
+17. Primary Content
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+17.1 Posts and pages
+--------------------------------------------------------------*/
+.sticky {
+	background: #fafafa;
+	border: 1px solid #e0e0e0;
+	display: block;
+	padding: 70px 20px 20px;
+}
+
+.featured-post {
+	background-color: #2590ec;
+	color: #fff;
+	display: inline-block;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	left: -3px;
+	line-height: 1;
+	margin-bottom: 20px;
+	position: absolute;
+	padding: 6px 10px 5px;
+	text-transform: uppercase;
+	top: 20px;
+}
+
+.has-post-thumbnail.sticky,
+.format-gallery.sticky {
+	padding-top: 20px;
+}
+
+.has-post-thumbnail .featured-post,
+.format-gallery .featured-post {
+	top: 40px;
+}
+
+.hentry {
+	margin: 0 0 90px;
+	position: relative;
+}
+
+.single .hentry,
+.page .hentry {
+	margin-bottom: 60px;
+}
+
+.byline,
+.updated:not(.published) {
+	display: none;
+}
+
+.group-blog .byline {
+	display: inline;
+}
+
+.featured-image {
+	display: block;
+	line-height: 0;
+	margin: 0 auto 30px;
+}
+
+.featured-image span {
+	display: block;
+	float: left;
+	max-width: 100%;
+	position: relative;
+}
+
+.featured-image a {
+	display: block;
+	float: left;
+	max-width: 100%;
+	position: relative;
+	-webkit-transition: opacity 0.2s;
+	-moz-transition: opacity 0.2s;
+	transition: opacity 0.2s;
+}
+
+body:not(.hide-featured-image-borders) .featured-image a:after {
+	border: 1px solid rgba(255, 255, 255, 0.7);
+	bottom: 3px;
+	content: "";
+	display: block;
+	left: 3px;
+	position: absolute;
+	right: 3px;
+	top: 3px;
+	-webkit-transition: border-color 0.2s;
+	-moz-transition: border-color 0.2s;
+	transition: border-color 0.2s;
+}
+
+.featured-image a:hover {
+	opacity: 0.8;
+}
+
+body:not(.hide-featured-image-borders) .featured-image a:hover:after {
+	border-color: rgba(255, 255, 255, 0.8);
+}
+
+body:not(.hide-featured-image-borders).single .featured-image span:after {
+	border: 1px solid rgba(255, 255, 255, 0.7);
+	bottom: 3px;
+	content: "";
+	display: block;
+	left: 3px;
+	position: absolute;
+	right: 3px;
+	top: 3px;
+	-webkit-transition: border-color 0.2s;
+	-moz-transition: border-color 0.2s;
+	transition: border-color 0.2s;
+}
+
+.entry-header {
+	border-bottom: 1px solid #e1e1e1;
+	margin-bottom: 30px;
+	padding-bottom: 10px;
+}
+
+.entry-header + .entry-footer {
+	margin-top: -31px;
+}
+
+.entry-title {
+	font-size: 40px;
+}
+
+.entry-title a {
+	color: #333;
+	text-decoration: none;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.entry-title a:hover {
+	color: #2590ec;
+}
+
+.entry-meta,
+.entry-footer {
+	color: #999;
+	font-size: 15px;
+	font-style: italic;
+	line-height: 1.5;
+}
+
+.entry-meta span,
+.entry-footer span,
+.post-format-label {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13.5px;
+	font-style: normal;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.entry-meta a,
+.entry-footer a {
+	text-decoration: none;
+}
+
+.cat-links a:first-of-type,
+.tags-links a:first-of-type {
+	margin-left: 0.25em;
+}
+
+.entry-meta a:not(.post-edit-link),
+.entry-meta span.byline {
+	font-family: "Merriweather", Georgia, "Times New Roman", serif;
+	font-size: 15px;
+	font-style: italic;
+	font-weight: 400;
+	letter-spacing: 0;
+	text-transform: none;
+}
+
+.entry-meta .sep,
+.entry-footer .sep {
+	display: inline-block;
+	font-size: 18px;
+	line-height: 1;
+	margin: 0 10px;
+}
+
+.entry-footer .edit-link:first-child .sep,
+.entry-footer .sep + .edit-link .sep {
+	display: none;
+}
+
+.entry-meta .comments-link {
+	float: right;
+}
+
+.entry-footer {
+	border-top: 1px solid #efefef;
+	padding-top: 10px;
+}
+
+.post-format-label:before {
+	bottom: -2px;
+	margin-right: 2px;
+	position: relative;
+}
+
+.entry-format-aside:before {
+	content: "\f101";
+}
+
+.entry-format-image:before {
+	content: "\f102";
+}
+
+.entry-format-gallery:before {
+	content: "\f103";
+}
+
+.entry-format-video:before {
+	content: "\f104";
+}
+
+.entry-format-status:before {
+	content: "\f105";
+}
+
+.entry-format-quote:before {
+	content: "\f106";
+}
+
+.entry-format-link:before {
+	content: "\f107";
+}
+
+.entry-format-audio:before {
+	content: "\f109";
+}
+
+.type-page .entry-footer .edit-link .sep {
+	display: none;
+}
+
+.page-links {
+	clear: both;
+	margin: 0 0 1.5em;
+}
+
+.nav-links {
+	padding-bottom: 45px;
+}
+
+.nav-links a {
+	text-decoration: none;
+}
+
+.nav-links .nav-subtitle,
+.nav-links .nav-title {
+	display: block;
+}
+
+.nav-links .nav-subtitle {
+	color: #999;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13.5px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.nav-links .nav-previous .nav-subtitle:before,
+.nav-links .nav-next .nav-subtitle:after {
+	bottom: -6px;
+	font-size: 24px;
+	position: relative;
+}
+
+.nav-links .nav-previous .nav-subtitle:before {
+	content: "\f430";
+	left: -3px;
+}
+
+.nav-links .nav-next .nav-subtitle:after {
+	content: "\f429";
+	right: -3px;
+}
+
+.nav-links .nav-title {
+	color: #333;
+	font-size: 18px;
+	font-style: italic;
+	line-height: 1.5;
+}
+
+.page-links {
+	color: #999;
+}
+
+.page-links .page-links-title {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13.5px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.page-links .page-links-num {
+	border: 1px solid #e0e0e0;
+	display: inline-block;
+	padding: 1px 12px;
+
+}
+
+.page-links a .page-links-num {
+	background-color: #eee;
+	border-color: #eee;
+	-webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
+	-moz-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
+	transition: background-color 0.2s, border-color 0.2s, color 0.2s;
+}
+
+.page-links a:hover .page-links-num {
+	background-color: #2590ec;
+	border-color: #2590ec;
+	color: #fff;
+}
+
+/*--------------------------------------------------------------
+17.2 Little Titles
+--------------------------------------------------------------*/
+.blog #primary .format-aside .entry-title,
+.archive #primary .format-aside .entry-title,
+.blog #primary .format-audio .entry-title,
+.archive #primary .format-audio .entry-title,
+.blog #primary .format-link .entry-title,
+.archive #primary .format-link .entry-title,
+.blog #primary .format-image .entry-title,
+.archive #primary .format-image .entry-title  {
+	font-size: 20px;
+	font-weight: 500;
+	padding-bottom: 0;
+	text-transform: uppercase;
+	letter-spacing: 0.05em;
+}
+
+.blog #primary .format-aside .entry-title a,
+.archive #primary .format-aside .entry-title a,
+.blog #primary .format-audio .entry-title a,
+.archive #primary .format-audio .entry-title a,
+.blog #primary .format-image .entry-title a,
+.archive #primary .format-image .entry-title a,
+.blog #primary .format-link .entry-title a,
+.archive #primary .format-link .entry-title a {
+	color: #666;
+}
+
+.blog #primary .format-aside .entry-title a:hover,
+.archive #primary .format-aside .entry-title a:hover,
+.blog #primary .format-audio .entry-title a:hover,
+.archive #primary .format-audio .entry-title a:hover,
+.blog #primary .format-image .entry-title a:hover,
+.archive #primary .format-image .entry-title a:hover,
+.blog #primary .format-link .entry-title a:hover,
+.archive #primary .format-image .entry-title a:hover {
+	color: #2590ec;
+}
+
+/*--------------------------------------------------------------
+17.3 Audio
+--------------------------------------------------------------*/
+
+.entry-audio {
+	margin-bottom: 30px;
+}
+
+.entry-audio .mejs-container,
+.entry-content .mejs-container.mejs-audio {
+	height: 90px !important;
+}
+
+.entry-content .mejs-container.mejs-audio {
+	margin-bottom: 1.5em;
+}
+
+.entry-content .mejs-container.mejs-audio,
+.entry-content .mejs-container.mejs-audio .mejs-controls {
+	background-color: #ddd;
+}
+
+.entry-audio .mejs-container,
+.entry-audio .mejs-container .mejs-controls {
+	background-color: #1c82d9;
+}
+
+.entry-audio .mejs-container .mejs-controls,
+.entry-content .mejs-container.mejs-audio .mejs-controls {
+	bottom: 30px;
+	left: 4%;
+	width: 90%;
+}
+
+.entry-audio .mejs-container .mejs-controls .mejs-time {
+	color: rgba( 255, 255, 255, 0.6 );
+}
+
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-time {
+	color: #999;
+}
+
+.entry-audio .mejs-container .mejs-controls .mejs-button button,
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-button button {
+	background-image: none;
+	font-size: 22px;
+	top: 2px;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.entry-audio .mejs-container .mejs-controls .mejs-button button {
+	color: rgba( 255, 255, 255, 0.8 );
+}
+
+.entry-audio .mejs-container .mejs-controls .mejs-button button:hover {
+	color: #fff;
+}
+
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-button button {
+	color: #888;
+}
+
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-button button:hover {
+	color: #666;
+}
+
+.entry-audio .mejs-controls .mejs-time-rail .mejs-time-total,
+.entry-audio .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
+	background-color: rgba( 255, 255, 255, 0.3 );
+}
+
+.entry-audio .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-total {
+	background-color: rgba( 255, 255, 255, 0.3 );
+}
+
+.entry-content .mejs-audio .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
+	background-color: #aaa;
+}
+
+.entry-audio .mejs-controls .mejs-time-rail .mejs-time-loaded,
+.entry-audio .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
+	background-color: rgba( 255, 255, 255, 0.3 );
+}
+
+.entry-content .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-loaded,
+.entry-content .mejs-audio .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
+	background-color: #efefef;
+}
+
+.entry-audio .mejs-controls .mejs-time-rail .mejs-time-current {
+	background-color: #fff;
+}
+
+.entry-content .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-current {
+	background-color: #2590ec;
+}
+
+.entry-audio .mejs-container.mejs-audio .mejs-controls .mejs-playpause-button,
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-playpause-button {
+	width: 40px;
+}
+
+.entry-audio .mejs-container.mejs-audio .mejs-controls .mejs-playpause-button.mejs-play button:before,
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-playpause-button.mejs-play button:before {
+	content: "\f104";
+}
+
+.entry-audio .mejs-container.mejs-audio .mejs-controls .mejs-playpause-button.mejs-pause button:before,
+.entry-content .mejs-container.mejs-audio .mejs-controls .mejs-playpause-button.mejs-pause button:before {
+	content: "\f448";
+}
+
+.entry-audio .mejs-audio .mejs-button.mejs-volume-button.mejs-mute button:before,
+.entry-audio .mejs-audio .mejs-button.mejs-volume-button.mejs-unmute button:before,
+.entry-content .mejs-audio .mejs-button.mejs-volume-button.mejs-mute button:before,
+.entry-content .mejs-audio .mejs-button.mejs-volume-button.mejs-unmute button:before {
+	content: "\f109";
+}
+
+.wp-playlist-current-item {
+	height: auto;
+}
+
+.wp-playlist-caption {
+	padding: 3px 0;
+}
+
+/*--------------------------------------------------------------
+17.4 Image
+--------------------------------------------------------------*/
+
+/* Link */
+.blog .format-link .entry-title a:after,
+.archive .format-link .entry-title a:after {
+	bottom: -5px;
+	content: "\f442";
+	display: inline-block;
+	font-size: 24px;
+	line-height: 1;
+	position: relative;
+}
+
+/*--------------------------------------------------------------
+17.5 Quote
+--------------------------------------------------------------*/
+
+.blog #primary .format-quote,
+.archive #primary .format-quote,
+.single #primary .format-quote {
+	background-color: #333;
+	background-position: center center;
+	background-size: 100% auto;
+	background-size: cover;
+	color: #fff;
+	padding: 30px 30px 20px;
+}
+
+.blog #primary .format-quote .entry-title,
+.archive #primary .format-quote .entry-title,
+.single #primary .format-quote .entry-title {
+	font-size: 16px;
+	font-style: normal;
+	font-weight: 500;
+	padding-bottom: 0;
+	text-transform: uppercase;
+	letter-spacing: 0.05em;
+}
+
+.blog #primary .format-quote .entry-title a,
+.archive #primary .format-quote .entry-title a,
+.single #primary .format-quote .entry-title a,
+.blog #primary .format-quote .entry-meta a,
+.archive #primary .format-quote .entry-meta a,
+.single #primary .format-quote .entry-meta a,
+.blog #primary .format-quote .entry-content a,
+.archive #primary .format-quote .entry-content a,
+.single #primary .format-quote .entry-content a {
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+.blog #primary .format-quote .entry-title a,
+.archive #primary .format-quote .entry-title a,
+.single #primary .format-quote .entry-title a {
+	color: rgba( 255, 255, 255, 0.7 );
+}
+
+.blog #primary .format-quote .entry-meta,
+.archive #primary .format-quote .entry-meta,
+.single #primary .format-quote .entry-meta,
+.blog #primary .format-quote .entry-meta a,
+.archive #primary .format-quote .entry-meta a,
+.single #primary .format-quote .entry-meta a {
+	color: rgba( 255, 255, 255, 0.6 );
+}
+
+.blog #primary .format-quote .post-format-label a,
+.archive #primary .format-quote .post-format-label a,
+.single #primary .format-quote .post-format-label a {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13.5px;
+	font-style: normal;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.blog #primary .format-quote .entry-content,
+.archive #primary .format-quote .entry-content,
+.single #primary .format-quote .entry-content {
+	margin-left: auto;
+	margin-right: auto;
+	max-width: 85%;
+}
+
+.blog #primary .format-quote .entry-content a,
+.archive #primary .format-quote .entry-content a,
+.single #primary .format-quote .entry-content a {
+	color: rgba( 255, 255, 255, 0.7 );
+}
+
+.blog #primary .format-quote .entry-title a:hover,
+.archive #primary .format-quote .entry-title a:hover,
+.single #primary .format-quote .entry-title a:hover,
+.blog #primary .format-quote .entry-meta a:hover,
+.archive #primary .format-quote .entry-meta a:hover,
+.single #primary .format-quote .entry-meta a:hover,
+.blog #primary .format-quote .entry-content a:hover,
+.archive #primary .format-quote .entry-content a:hover,
+.single #primary .format-quote .entry-content a:hover {
+	color: rgba( 255, 255, 255, 0.9 );
+}
+
+.blog #primary .format-quote blockquote,
+.archive #primary .format-quote blockquote,
+.single #primary .format-quote blockquote {
+	border: 0;
+	color: rgba( 255, 255, 255, 0.8 );
+	font-size: 140%;
+	padding: 60px 0;
+	text-align: center;
+}
+
+.blog #primary .format-quote blockquote:last-child,
+.archive #primary .format-quote blockquote:last-child,
+.single #primary .format-quote blockquote:last-child {
+	margin-bottom: 0;
+}
+
+.blog #primary .format-quote.has-post-thumbnail:before,
+.archive #primary .format-quote.has-post-thumbnail:before,
+.single #primary .format-quote.has-post-thumbnail:before {
+	background: rgba( 0, 0, 0, 0.6 );
+	bottom: 0;
+	content: "";
+	left: 0;
+	position: absolute;
+	right: 0;
+	top: 0;
+}
+
+.blog #primary .format-quote.has-post-thumbnail .entry-title,
+.archive #primary .format-quote.has-post-thumbnail .entry-title,
+.single #primary .format-quote.has-post-thumbnail .entry-title,
+.blog #primary .format-quote.has-post-thumbnail .entry-content,
+.archive #primary .format-quote.has-post-thumbnail .entry-content,
+.single #primary .format-quote.has-post-thumbnail .entry-content,
+.blog #primary .format-quote.has-post-thumbnail .entry-footer,
+.archive #primary .format-quote.has-post-thumbnail .entry-footer,
+.single #primary .format-quote.has-post-thumbnail .entry-footer {
+	position: relative;
+}
+
+.blog #primary .format-quote .entry-footer,
+.archive #primary .format-quote .entry-footer,
+.single #primary .format-quote .entry-footer {
+	border-color: rgba( 255, 255, 255, 0.2 );
+	padding-top: 20px;
+}
+
+/*--------------------------------------------------------------
+17.6 Status
+--------------------------------------------------------------*/
+
+.blog #primary .format-status .entry-title,
+.archive #primary .format-status .entry-title,
+.single #primary .format-status .entry-title {
+	display: none;
+	font-size: 16px;
+	font-style: normal;
+	font-weight: 500;
+	padding-bottom: 0;
+	text-transform: uppercase;
+	letter-spacing: 0.05em;
+}
+
+.blog #primary .format-status .entry-content,
+.archive #primary .format-status .entry-content,
+.single #primary .format-status .entry-content {
+	font-size: 130%;
+}
+
+.blog #primary .format-status .entry-footer,
+.archive #primary .format-status .entry-footer,
+.single #primary .format-status .entry-footer {
+	padding-top: 20px;
+}
+
+.blog #primary .format-status .post-format-label a,
+.archive #primary .format-status .post-format-label a,
+.single #primary .format-status .post-format-label a {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13.5px;
+	font-style: normal;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+/*--------------------------------------------------------------
+17.7 Archives
+--------------------------------------------------------------*/
+.page-header {
+	margin-bottom: 30px;
+}
+
+.page-title {
+	color: #666;
+	font-size: 18px;
+	font-weight: 500;
+	padding-bottom: 0;
+	text-transform: uppercase;
+	letter-spacing: 0.05em;
+}
+
+.taxonomy-description {
+	color: #999;
+	font-style: italic;
+	margin-top: 10px;
+}
+
+/*--------------------------------------------------------------
+17.8 Comments
+--------------------------------------------------------------*/
+
+#comments {
+	border-top: 1px solid #e1e1e1;
+	padding-top: 30px;
+}
+
+.page #comments {
+	border: 0;
+	padding-top: 0;
+}
+
+.comments-title {
+	font-size: 30px;
+}
+
+.comment-form input[type='text'],
+.comment-form input[type='email'],
+.comment-form input[type='url'],
+.comment-form label {
+	display: block;
+	width: 100%;
+}
+
+.comment-form label {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 14px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-transform: uppercase;
+}
+
+.comment-form .submit {
+	display: inline-block;
+	width: auto;
+}
+
+.comment-list,
+.comment-list .children {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+.comment-list {
+	margin-bottom: 1.5em;
+}
+
+.comment-list .children {
+	margin-top: 30px;
+	padding-left: 45px;
+}
+
+li.comment {
+	margin: 0 0 30px;
+	min-height: 90px;
+	padding: 0;
+	position: relative;
+}
+
+.comment .avatar-container {
+	display: block;
+	height: 90px;
+	left: 0;
+	position: absolute;
+	top: 0;
+	width: 90px;
+}
+
+.comment .avatar-crop {
+	border-radius: 50px;
+	display: block;
+	height: 90px;
+	overflow: hidden;
+	position: relative;
+	width: 90px;
+}
+
+.children .comment .avatar-container,
+.children .comment .avatar-crop {
+	height: 70px;
+	width: 70px;
+}
+
+.bypostauthor .avatar-container:before {
+	background: #2590ec;
+	bottom: 0;
+	content: "";
+	display: block;
+	height: 45px;
+	position: absolute;
+	right: 0;
+	width: 45px;
+}
+
+.children .bypostauthor .avatar-container:before {
+	height: 35px;
+	width: 35px;
+}
+
+.bypostauthor .avatar-container:after {
+	bottom: 1px;
+	color: #fff;
+	content: "\f408";
+	font-size: 15px;
+	line-height: 1;
+	right: 1px;
+	position: absolute;
+}
+
+.children .bypostauthor .avatar-container:after {
+	font-size: 13px;
+	right: 0;
+}
+
+.bypostauthor .comment:not(.bypostauthor) .avatar-container:before,
+.bypostauthor .comment:not(.bypostauthor) .avatar-container:after {
+	display: none;
+}
+
+.comment-author,
+.comment-metadata,
+.comment-content,
+.reply,
+.comment-awaiting-moderation {
+	margin-left: 110px;
+}
+
+.children .comment-author,
+.children .comment-metadata,
+.children .comment-content,
+.children .reply,
+.children .comment-awaiting-moderation {
+	margin-left: 90px;
+}
+
+.comment-author {
+	font-size: 18px;
+}
+
+.children .comment-author {
+	font-size: 16px;
+}
+
+.comment-author b {
+	font-weight: 300;
+}
+
+.comment-author a {
+	text-decoration: none;
+}
+
+.comment-metadata {
+	font-size: 15px;
+	font-style: italic;
+	margin-bottom: 15px;
+}
+
+.comment-metadata a {
+	color: #999;
+	text-decoration: none;
+}
+
+.comment-metadata .edit-link,
+.pingback .edit-link {
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13.5px;
+	font-style: normal;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-decoration: none;
+	text-transform: uppercase;
+}
+
+.comment-metadata .edit-link:before {
+	content: "\f428";
+	color: #999;
+}
+
+.comment-metadata .edit-link a {
+	color: #2590ec;
+}
+
+.comment-content {
+	font-size: 90%;
+}
+
+.comment-content a {
+	word-wrap: break-word;
+}
+
+.comment-content > p:last-child {
+	margin-bottom: 0;
+}
+
+.comment-content p + p.comment-likes {
+	margin-top: -15px;
+}
+
+.comment-awaiting-moderation {
+	color: #666;
+	font-size: 80%;
+	font-style: italic;
+}
+
+.reply a,
+.comment-navigation .nav-links a,
+.comment-respond #reply-title small {
+	color: #2590ec;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 13.5px;
+	font-style: normal;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	text-decoration: none;
+	text-transform: uppercase;
+}
+
+.comment-respond {
+	padding: 15px 0;
+}
+
+.comment-respond #reply-title {
+	font-size: 24px;
+}
+
+.comment-respond #reply-title small {
+	bottom: -8px;
+	float: right;
+	position: relative;
+}
+
+.comment-respond .comment-notes {
+	font-size: 14px;
+}
+
+.comment-respond .submit {
+	padding: 10px 15px;
+}
+
+#comment-nav-above .nav-links {
+	padding: 20px 0;
+}
+
+#comment-nav-below .nav-links {
+	padding: 15px 0 30px
+}
+
+.logged-in-as {
+	font-size: 14px;
+}
+
+.no-comments {
+	color: #999;
+	font-style: italic;
+}
+
+/*--------------------------------------------------------------
+17.9 404 Page
+--------------------------------------------------------------*/
+
+.error404 #primary {
+	float: none;
+	margin: auto;
+	max-width: 760px;
+}
+
+.error404 #primary .search-form,
+.error404 #primary .widget {
+	padding-bottom: 60px;
+}
+
+.error404 .widget_tag_cloud a {
+	background-color: #eee;
+}
+
+.error404 .widget_tag_cloud a:hover {
+	background-color: #f9f9f9;
+	color: #2590ec;
+}
+
+
+/*--------------------------------------------------------------
+17.10 Guestbook Template
+--------------------------------------------------------------*/
+
+.page-template-guestbook .hentry {
+	margin-bottom: 30px;
+}
+
+.page-template-guestbook #comments {
+	border: 0;
+	padding: 0;
+}
+
+.page-template-guestbook .comments-title {
+	display: none;
+}
+
+
+.page-template-guestbook .reply {
+	display: none;
+}
+
+.page-template-guestbook #comments .comment {
+	float: left;
+	padding-bottom: 30px;
+	width: calc( 50% - 15px);
+}
+
+.page-template-guestbook #primary {
+	float: none;
+	width: 100%;
+}
+
+.page-template-guestbook #primary article.hentry,
+.page-template-guestbook #respond {
+	margin-left: auto;
+	margin-right: auto;
+	max-width: 760px;
+}
+
+.page-template-guestbook .bypostauthor .avatar-container:before,
+.page-template-guestbook .bypostauthor .avatar-container:after {
+	display: none;
+}
+
+
+/*--------------------------------------------------------------
+18. Secondary Content
+--------------------------------------------------------------*/
+
+#secondary .widget {
+	padding-bottom: 60px;
+}
+
+#secondary .widget:last-child {
+	padding-bottom: 0;
+}
+
+#secondary .widget a {
+	color: #666;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+#secondary .widget a:hover {
+	color: #2590ec;
+}
+
+/* Akismet widget */
+#secondary .widget.widget_akismet_widget a,
+#secondary .widget.widget_akismet_widget a:hover {
+	color: #fff;
+}
+
+/* Tag Cloud widget */
+
+#secondary .widget_tag_cloud a,
+#secondary .wp_widget_tag_cloud a {
+	background-color: #eee;
+}
+
+#secondary .widget_tag_cloud a:hover,
+#secondary .wp_widget_tag_cloud a:hover {
+	background-color: #f9f9f9;
+	color: #2590ec;
+}
+
+/*--------------------------------------------------------------
+19. Footer
+--------------------------------------------------------------*/
+#footer-widgets,
+#colophon {
+	background-color: #333;
+	color: #7b7b7b;
+	font-size: 15px;
+	padding: 60px 0;
+}
+
+#footer-widgets a,
+#colophon a,
+#footer-widgets .widget #flickr_badge_uber_wrapper a:link,
+#footer-widgets .widget #flickr_badge_uber_wrapper a:active,
+#footer-widgets .widget #flickr_badge_uber_wrapper a:visited {
+	color: #999;
+	text-decoration: none;
+	-webkit-transition: color 0.2s;
+	-moz-transition: color 0.2s;
+	transition: color 0.2s;
+}
+
+#footer-widgets a:hover,
+#colophon a:hover,
+#footer-widgets .widget #flickr_badge_uber_wrapper a:hover {
+	color: #ccc;
+}
+
+#footer-widgets h3,
+#colophon h3 {
+	color: #ccc;
+}
+
+#footer-widgets {
+	color: #888;
+	padding-bottom: 0;
+}
+
+#footer-widgets .wrap {
+	border-bottom: 1px solid #444;
+	padding-bottom: 30px;
+}
+
+#footer-widgets .widget {
+	float: left;
+	padding-bottom: 30px;
+}
+
+#footer-widgets.widget-one .widget {
+	margin: 0;
+	width: 100%;
+}
+
+#footer-widgets.widgets-two .widget {
+	width: 50%;
+	width: calc(50% - 15px);
+}
+
+#footer-widgets.widgets-three .widget {
+	width: 33.333%;
+	width: calc(33.333% - 20px);
+}
+
+#footer-widgets.widgets-four .widget {
+	width: 25%;
+	width: calc(25% - 22.5px);
+}
+
+#footer-widgets table,
+#footer-widgets tr {
+	border-color: #444;
+}
+
+#footer-widgets .widget_archive > ul,
+#footer-widgets .widget_archive li,
+#footer-widgets .widget_authors ul ul li,
+#footer-widgets .widget_categories > ul,
+#footer-widgets .widget_categories li,
+#footer-widgets .widget_goodreads div[class^="gr_custom_each_container"],
+#footer-widgets .widget_goodreads div[class^="gr_custom_container"],
+#footer-widgets .widget_jp_blogs_i_follow > ol,
+#footer-widgets .widget_jp_blogs_i_follow li,
+#footer-widgets .widget_jetpack_posts_i_like > ul,
+#footer-widgets .widget_jetpack_posts_i_like li,
+#footer-widgets .widget_links > ul,
+#footer-widgets .widget_links li,
+#footer-widgets .widget_meta > ul,
+#footer-widgets .widget_meta li,
+#footer-widgets .widget_nav_menu > ul,
+#footer-widgets .widget_nav_menu li,
+#footer-widgets .widget_pages > ul,
+#footer-widgets .widget_pages li,
+#footer-widgets .widget_recent_comments > ul,
+#footer-widgets .widget_recent_comments li,
+#footer-widgets .widget_recent_entries > ul,
+#footer-widgets .widget_recent_entries li,
+#footer-widgets .widget_rss > ul,
+#footer-widgets .widget_rss li,
+#footer-widgets .widget_rss_links > ul,
+#footer-widgets .widget_rss_links li,
+#footer-widgets .widget.top_rated #top_posts,
+#footer-widgets .widget.top_rated li,
+#footer-widgets .widget_top-clicks > ul,
+#footer-widgets .widget_top-clicks li,
+#footer-widgets .widget_top-posts > ul,
+#footer-widgets .widget_top-posts li,
+/* Non-widget specific */
+#footer-widgets hr {
+	border-color: #444;
+}
+
+/* Akismet Widget */
+#footer-widgets .widget_akismet_widget a {
+	color: #fff;
+}
+
+/* Archive Widget */
+#footer-widgets .widget_archive ul {
+	color: #777;
+}
+
+/* Category Widget */
+#footer-widgets .widget_categories ul {
+	color: #777;
+}
+
+/* Milestone Widget */
+#footer-widgets .milestone-header {
+	background-color: #222;
+}
+
+/* Tag Cloud */
+
+#footer-widgets .widget_tag_cloud a,
+#footer-widgets .wp_widget_tag_cloud a {
+	background-color: rgba(0, 0, 0, 0.2);
+	font-size: 13px !important;
+}
+
+#footer-widgets .widget_tag_cloud a:hover,
+#footer-widgets .wp_widget_tag_cloud a:hover {
+	background-color: rgba(0, 0, 0, 0.4);
+}
+
+#footer-widgets .widget_categories a {
+	border-bottom-color: rgba(0, 0, 0, 0.2);
+}
+
+#colophon {
+	font-style: italic;
+	text-align: center;
+}
+
+#colophon a {
+	color: #7b7b7b;
+}
+
+#colophon a:hover {
+	text-decoration: underline;
+}
+
+/*
+.social-navigation selector is a fallback
+until social navigation is added to Jetpack
+ */
+.jetpack-social-navigation {
+	font-size: 20px;
+	list-style: none;
+	margin-top: -30px;
+}
+
+#colophon .jetpack-social-navigation ul {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+#colophon .jetpack-social-navigation li {
+	display: inline-block;
+	line-height: 1;
+	margin: 0 5px;
+}
+
+#colophon .jetpack-social-navigation li a {
+	color: #999;
+	display: inline-block;
+	height: auto;
+	padding: 15px 5px;
+	width: auto;
+}
+
+#colophon .jetpack-social-navigation li a:hover {
+	color: #eee;
+	text-decoration: none;
+}
+
+.site-info {
+	font-size: 15px;
+}
+
+/*--------------------------------------------------------------
+19.1 Infinite scroll
+--------------------------------------------------------------*/
+/* Globally hidden elements when Infinite Scroll is supported and in use. */
+.infinite-scroll .posts-navigation,
+.infinite-scroll.neverending .site-footer {
+	/* Theme Footer (when set to scrolling) */
+	display: none;
+}
+
+/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
+.infinity-end.neverending .site-footer {
+	display: block;
+}
+
+#infinite-handle {
+	background: transparent;
+	margin-top: -30px;
+	padding: 0 0 40px;
+	text-align: center;
+}
+
+#infinite-handle span {
+	background: transparent;
+	padding: 0;
+}
+
+#infinite-handle span button,
+#infinite-handle span button:hover,
+#infinite-handle span button:focus,
+.posts-navigation .nav-previous a,
+.posts-navigation .nav-next a {
+	background-color: #2590ec;
+	border: 0;
+	color: #fff;
+	font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+	font-size: 14px;
+	font-weight: 500;
+	letter-spacing: 0.08em;
+	line-height: 1;
+	padding: 15px 30px;
+	text-transform: uppercase;
+	-webkit-transition: background-color 0.2s;
+	-moz-transition: background-color 0.2s;
+	transition: background-color 0.2s;
+}
+
+.posts-navigation .nav-previous a,
+.posts-navigation .nav-next a {
+	display: inline-block;
+}
+
+#infinite-handle span button:hover,
+#infinite-handle span button:focus,
+.posts-navigation .nav-previous a:hover,
+.posts-navigation .nav-next a:hover {
+	background-color: #444;
+}
+
+.infinite-loader {
+	padding-bottom: 24px;
+}
+
+.infinite-loader .spinner {
+	left: 50% !important; /* !important to override inline styles */
+	margin-left: -10px;
+	top: 0 !important;
+}
+
+/*--------------------------------------------------------------
+20. Media
+--------------------------------------------------------------*/
+.page-content .wp-smiley,
+.entry-content .wp-smiley,
+.comment-content .wp-smiley {
+	border: none;
+	margin-bottom: 0;
+	margin-top: 0;
+	padding: 0;
+}
+
+/* Make sure embeds and iframes fit their containers. */
+embed,
+iframe,
+object {
+	margin-bottom: 1.5em;
+	max-width: 100%;
+}
+
+.entry-content .jetpack-video-wrapper {
+	margin-bottom: 0;
+}
+
+/*--------------------------------------------------------------
+20.1 Captions
+--------------------------------------------------------------*/
+.wp-caption {
+	color: #999;
+	font-size: 14px;
+	font-style: italic;
+	margin-bottom: 1.5em;
+	max-width: 100%;
+}
+
+.wp-caption img[class*="wp-image-"] {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-caption .wp-caption-text {
+	margin: 0.8075em 0;
+}
+
+.wp-caption-text {
+	text-align: center;
+}
+
+/*--------------------------------------------------------------
+20.2 Galleries
+--------------------------------------------------------------*/
+.gallery {
+	margin-bottom: 1.5em;
+}
+
+.gallery-item {
+	display: inline-block;
+	margin: 0 0 1.0em;
+	text-align: center;
+	vertical-align: top;
+	width: 100%;
+}
+
+.gallery-caption {
+	color: #888;
+	font-size: 13px;
+	font-style: italic;
+	line-height: 1.5;
+}
+
+.gallery-columns-2 .gallery-item {
+	max-width: 50%;
+}
+
+.gallery-columns-3 .gallery-item {
+	max-width: 33.33%;
+}
+
+.gallery-columns-4 .gallery-item {
+	max-width: 25%;
+}
+
+.gallery-columns-5 .gallery-item {
+	max-width: 20%;
+}
+
+.gallery-columns-6 .gallery-item {
+	max-width: 16.66%;
+	padding-right: 2px;
+}
+
+.gallery-columns-7 .gallery-item {
+	max-width: 14.28%;
+	padding-right: 2px;
+}
+
+.gallery-columns-8 .gallery-item {
+	max-width: 12.5%;
+	padding-right: 2px;
+}
+
+.gallery-columns-9 .gallery-item {
+	max-width: 11.11%;
+	padding-right: 2px;
+}
+
+.gallery-caption {
+	display: block;
+}
+
+.gallery-columns-6 .gallery-caption,
+.gallery-columns-7 .gallery-caption,
+.gallery-columns-8 .gallery-caption,
+.gallery-columns-9 .gallery-caption {
+	display: none;
+}
+
+/*--------------------------------------------------------------
+21. Media Queries
+--------------------------------------------------------------*/
+@media only screen and (max-width: 1340px) {
+	#page {
+		margin-left: 30px;
+		margin-right: 30px;
+	}
+
+	.wrap {
+		margin-left: 40px;
+		margin-right: 40px;
+	}
+}
+
+@media only screen and (max-width: 1024px) {
+	/* Structure */
+	#page {
+		margin: 15px;
+	}
+
+	.wrap {
+		margin-left: 30px;
+		margin-right: 30px;
+	}
+
+	#content .wrap {
+		padding-top: 30px;
+	}
+
+	#primary,
+	#secondary {
+		float: none;
+		margin: auto;
+		max-width: 760px;
+		width: 100%;
+	}
+
+	#primary {
+		min-height: 0;
+		padding-bottom: 30px;
+	}
+
+	#secondary {
+		border: 0;
+		border-top: 4px double #e1e1e1;
+		margin: auto;
+		padding-left: 0;
+		padding-top: 30px;
+	}
+
+	#secondary .widget:last-child {
+		padding-bottom: 60px;
+	}
+
+	/* Header */
+	.site-title {
+		font-size: 60px;
+	}
+
+	.site-logo {
+		max-height: 150px;
+	}
+
+	/* Slideshow */
+	.slideshow .slide-info {
+		width: 75%;
+	}
+
+	.slideshow .slide-info .slide-title {
+		font-size: 24px;
+	}
+
+	/* Featured trio */
+	#featured-post-trio article {
+		float: none;
+		width: 100%;
+	}
+
+	#featured-post-trio article.has-post-thumbnail .featured-image {
+		float: left;
+		margin-right: 30px;
+		width: calc(33.333% - 20px);
+	}
+
+	#featured-post-trio article.has-post-thumbnail .entry-text {
+		width: calc(66.666% - 10px);
+		float: left;
+	}
+
+	/* Slideshow */
+	.slideshow .slide-media {
+		padding-bottom: 50%;
+	}
+
+	/* Guestbook Template */
+	.page-template-guestbook #comments .comment {
+		float: none;
+		width: 100%;
+	}
+
+	/* Footer */
+	#footer-widgets.widgets-three .widget,
+	#footer-widgets.widgets-four .widget {
+		width: calc(50% - 15px);
+	}
+}
+
+
+@media only screen and (max-width: 680px) {
+	body {
+		font-size: 15px;
+	}
+
+	/* Structure */
+	#page {
+		border: 0;
+		margin: 0;
+		padding: 30px 0 0;
+	}
+
+	#secondary .widget,
+	#secondary .widget:last-child {
+		padding-bottom: 30px;
+	}
+
+	.wrap {
+		margin-left: 20px;
+		margin-right: 20px;
+	}
+
+
+	/* Header */
+	.site-title {
+		font-size: 40px;
+	}
+
+	.has-header-image .site-title {
+		margin-top: 15px;
+	}
+
+	.site-logo {
+		max-height: 100px;
+	}
+
+	/* Navigation */
+	.main-navigation {
+		margin-top: 30px;
+		padding: 10px 0;
+		text-align: left;
+	}
+
+	.has-header-image .main-navigation {
+		margin-top: 20px;
+	}
+
+	.main-navigation ul {
+		margin-top: 15px;
+		margin-bottom: -10px;
+	}
+
+	.main-navigation li {
+		border-top: 1px solid #e1e1e1;
+		display: block;
+	}
+
+	.main-navigation a {
+		display: block;
+		padding: 5px 15px;
+	}
+
+	.main-navigation .menu-item-has-children > a:after,
+	.main-navigation .page_item_has_children > a:after {
+		display: none;
+	}
+
+	.main-navigation ul ul {
+		background-color: #fff;
+		border: 0;
+		float: none;
+		margin: 0;
+		opacity: 1.0;
+		padding-left: 15px;
+		position: static;
+		width: auto;
+	}
+
+	.main-navigation ul li:hover > ul,
+	.main-navigation ul li.focus > ul {
+		left: auto;
+		margin-left: 0;
+	}
+
+	.main-navigation ul ul:before {
+		display: none;
+	}
+
+	.main-navigation ul ul li {
+		border: 0;
+	}
+
+	.main-navigation ul ul li a {
+		font-size: 16px;
+		padding: 5px 15px;
+	}
+
+	.main-navigation ul ul li a:hover {
+		background-color: transparent;
+	}
+
+	.menu-toggle {
+		background-color: transparent;
+		border: 0;
+		color: #333;
+		font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, sans-serif;
+		font-size: 16px;
+		font-weight: 500;
+		letter-spacing: 0.08em;
+		margin: auto;
+		padding: 0;
+		text-transform: uppercase;
+	}
+
+	.menu-toggle:hover {
+		background-color: transparent;
+	}
+
+	.menu-toggle:before {
+		bottom: -2px;
+		content: "\f419";
+		margin-right: 5px;
+		position: relative;
+	}
+
+	.toggled .menu-toggle:before {
+		content: "\f406";
+	}
+
+	/* Slideshow */
+	#featured-slideshow .wrap {
+		padding-top: 20px;
+	}
+
+	.slideshow {
+		background-color: #333;
+	}
+
+	.slideshow .slick-slide:before {
+		border: 1px solid rgba(255, 255, 255, 0.7);
+		bottom: 3px;
+		content: "";
+		display: block;
+		left: 3px;
+		position: absolute;
+		right: 3px;
+		top: 3px;
+		z-index: 1;
+	}
+
+	.slideshow .slide-info {
+		background-color: transparent;
+		bottom: auto;
+		padding: 15px;
+		position: relative;
+		text-align: center;
+		width: 100%;
+	}
+
+	.slideshow .slide-info:after {
+		display: none;
+	}
+
+	.slideshow .slide-info .slide-title {
+		font-size: 20px;
+		margin: 0 30px;
+		white-space: nowrap;
+		text-overflow: ellipsis;
+		overflow: hidden;
+	}
+
+	.slideshow .slide-info .posted-on,
+	.slideshow .slide-info .byline {
+		font-size: 13px;
+	}
+
+	.slideshow .slideshow-navigation .flex-control-nav {
+		display: none !important; /* important to override inline styles */
+	}
+
+	.slideshow .slideshow-navigation .prev-slide,
+	.slideshow .slideshow-navigation .next-slide {
+		color: #fff;
+		display: block;
+		height: auto;
+		bottom: 5%;
+		position: absolute;
+	}
+
+	.slideshow .slideshow-navigation .prev-slide {
+		left: 10px;
+	}
+
+	.slideshow .slideshow-navigation .next-slide {
+		right: 10px;
+	}
+
+	/* Tagline */
+	#tagline .wrap {
+		margin-top: 15px;
+		padding: 20px 0;
+	}
+
+	#tagline p {
+		font-size: 20px;
+	}
+
+	/* Featured trio */
+	#featured-post-trio + #content .wrap {
+		padding-top: 0;
+	}
+
+	#featured-post-trio .wrap {
+		border: 0;
+		padding-bottom: 0;
+	}
+
+	#featured-post-trio article {
+		margin-bottom: 60px;
+	}
+
+	#featured-post-trio article.has-post-thumbnail .featured-image,
+	#featured-post-trio article.has-post-thumbnail .entry-text {
+		float: none;
+		width: 100%;
+	}
+
+	#featured-post-trio .entry-header {
+		border-bottom: 1px solid #e1e1e1;
+		margin-bottom: 30px;
+		padding-bottom: 10px;
+	}
+
+
+	#featured-post-trio article p {
+		margin-bottom: 1.5em;
+	}
+
+	#featured-post-trio article .entry-footer {
+		border-top: 1px solid #efefef;
+		padding-top: 10px;
+	}
+
+	#featured-post-trio article .entry-footer .cat-links,
+	#featured-post-trio article .entry-footer .tags-links {
+		display: block;
+	}
+
+	#featured-post-trio article .post-format-label + .sep {
+		display: none;
+	}
+
+	/* Posts and Pages */
+	.entry-title {
+		font-size: 28px;
+	}
+
+	.entry-footer .cat-links,
+	.entry-footer .tag-links,
+	.entry-footer .post-format-label,
+	.entry-footer .posted-on {
+		display: block;
+	}
+
+	.entry-footer .comments-link {
+		float: none;
+	}
+
+	.entry-footer .sep {
+		display: none;
+	}
+
+	.entry-footer .edit-link {
+		display: block;
+		float: none;
+	}
+
+	.nav-links a {
+		display: block;
+		padding: 15px 0;
+	}
+
+	.nav-links .nav-previous,
+	.nav-links .nav-next {
+		float: none;
+		text-align: center;
+		width: 100%;
+	}
+
+	.nav-links .nav-previous .nav-subtitle:before,
+	.nav-links .nav-previous .nav-subtitle:after,
+	.nav-links .nav-next .nav-subtitle:before,
+	.nav-links .nav-next .nav-subtitle:after {
+		display: none;
+	}
+
+	.nav-links .nav-previous {
+		margin-bottom: 15px;
+	}
+
+	.posts-navigation .nav-previous a,
+	.posts-navigation .nav-next a {
+		display: block;
+	}
+
+	/* Post format - Quote */
+	.blog .format-quote .entry-content,
+	.archive .format-quote .entry-content,
+	.single .format-quote .entry-content {
+		max-width: 100%;
+	}
+
+	.blog .format-quote blockquote,
+	.archive .format-quote blockquote,
+	.single .format-quote blockquote {
+		font-size: 120%;
+		padding: 20px 0;
+	}
+
+	/* Comments */
+	.comment .avatar-container,
+	.comment .avatar-crop {
+		height: 70px;
+		width: 70px;
+	}
+
+	.comment .avatar-container:after,
+	.comment .avatar-crop:after {
+		bottom: 1px;
+		font-size: 13px;
+		right: 1px;
+	}
+
+	.comment .avatar-container:before,
+	.comment .avatar-crop:before {
+		height: 35px;
+		width: 35px;
+	}
+
+	.comment .comment-author,
+	.comment .comment-metadata,
+	.comment .comment-content,
+	.comment .reply,
+	.comment .comment-awaiting-moderation {
+		margin-left: 90px;
+	}
+
+	.comment-list .children {
+		padding-left: 20px;
+	}
+
+	.children .comment .avatar-container,
+	.children .comment .avatar-crop {
+		height: 50px;
+		width: 50px;
+	}
+
+	.children .comment .avatar-container:after,
+	.children .comment .avatar-crop:after {
+		bottom: 0;
+		font-size: 11px;
+		right: 0;
+	}
+
+	.children .comment .avatar-container:before,
+	.children .comment .avatar-crop:before {
+		height: 25px;
+		width: 25px;
+	}
+
+	.children .comment .comment-author,
+	.children .comment .comment-metadata,
+	.children .comment .comment-content,
+	.children .comment .reply,
+	.children .comment .reply {
+		margin-left: 70px;
+	}
+
+	/* Shortcode */
+	#page .contact-form input[type="text"],
+	#page .contact-form input[type="email"],
+	#page .contact-form input[type="url"],
+	#page .contact-form label,
+	#page .contact-form textarea {
+		display: block;
+		width: 100%;
+	}
+	/* Footer */
+	#footer-widgets .wrap {
+		border: 0;
+	}
+
+	#footer-widgets .widget:last-child {
+		padding-bottom: 0;
+	}
+
+	#footer-widgets.widgets-two .widget,
+	#footer-widgets.widgets-three .widget,
+	#footer-widgets.widgets-four .widget {
+		float: none;
+		max-width: 100%;
+		width: 100%;
+	}
+
+	#footer-widgets + #colophon {
+		padding-top: 0;
+	}
+
+	#colophon {
+		padding-bottom: 30px;
+	}
+		#colophon .wrap {
+			border: 0;
+	}
+
+	#social-media {
+		font-size: 17px;
+	}
+
+	.site-info {
+		font-size: 14px;
+	}
+}
+
+@media only screen and (max-width: 540px) {
+	/* Structure */
+	.wrap {
+		margin-left: 15px;
+		margin-right: 15px;
+	}
+
+	/* Posts and pages */
+	.entry-meta .comments-link {
+		display: block;
+		float: none;
+	}
+
+	/* Comments */
+	.comment .avatar-container {
+		display: none;
+	}
+
+	.comment .comment-author,
+	.comment .comment-metadata,
+	.comment .comment-content,
+	.comment .reply,
+	.comment .comment-awaiting-moderation,
+	.children .comment .comment-author,
+	.children .comment .comment-metadata,
+	.children .comment .comment-content,
+	.children .comment .reply,
+	.children .comment .comment-awaiting-moderation {
+		margin: 0;
+	}
+
+	.comment-list .children {
+		padding-left: 0;
+	}
+}

+ 79 - 0
toujours/template-parts/content-audio.php

@@ -0,0 +1,79 @@
+<?php
+/**
+ * Template part for displaying audio format posts.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<?php
+	/* translators: %s: Name of current post */
+	$content_text = sprintf(
+		wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'toujours' ), array( 'span' => array( 'class' => array() ) ) ),
+		the_title( '<span class="screen-reader-text">"', '"</span>', false )
+	);
+
+	$content = apply_filters( 'the_content', get_the_content( $content_text ) );
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+	<?php
+		$audio = get_media_embedded_in_content( $content, array( 'audio' ) );
+
+		if ( ! empty( $audio ) ) {
+			foreach ( $audio as $audio_html ) {
+				$content = str_replace( $audio_html, '', $content );
+				?>
+				<div class="entry-audio">
+					<?php echo $audio_html; ?>
+				</div><!-- .entry-audio -->
+			<?php } // endforeach
+		} // endif !empty ( $media )
+	?>
+
+	<header class="entry-header">
+		<?php if ( is_sticky() && is_home() ) { ?>
+			<span class="featured-post"><?php esc_html_e( 'Featured', 'toujours' ); ?></span>
+		<?php } ?>
+
+		<?php if ( ! is_single() ) {
+			the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
+		} else {
+			the_title( '<h2 class="entry-title">', '</h2>' );
+		} ?>
+
+		<?php if ( 'post' === get_post_type() ) : ?>
+		<div class="entry-meta">
+			<?php
+				toujours_posted_on();
+				toujours_comment_link();
+			?>
+		</div><!-- .entry-meta -->
+		<?php endif; ?>
+	</header><!-- .entry-header -->
+
+
+	<?php if ( '' !== $post->post_content ) { ?>
+		<div class="entry-content">
+
+			<?php echo $content; ?>
+
+			<?php
+				wp_link_pages( array(
+					'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+					'after'  => '</div>',
+					'pagelink' => '<span class="page-links-num">%</span>'
+				) );
+			?>
+
+		</div><!-- .entry-content -->
+	<?php } ?>
+
+	<footer class="entry-footer">
+		<?php toujours_entry_footer(); ?>
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

+ 70 - 0
toujours/template-parts/content-gallery.php

@@ -0,0 +1,70 @@
+<?php
+/**
+ * Template part for displaying gallery posts.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+	<?php
+		if ( get_post_gallery() ) { ?>
+			<div class="entry-gallery">
+				<?php echo get_post_gallery(); ?>
+			</div><!-- .entry-gallery -->
+		<?php
+		} // endif get_post_gallery()
+	?>
+
+	<header class="entry-header">
+		<?php if ( is_sticky() && is_home() ) { ?>
+			<span class="featured-post"><?php esc_html_e( 'Featured', 'toujours' ); ?></span>
+		<?php } ?>
+
+		<?php if ( ! is_single() ) {
+			the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
+		} else {
+			the_title( '<h2 class="entry-title">', '</h2>' );
+		} ?>
+
+		<?php if ( 'post' === get_post_type() ) : ?>
+		<div class="entry-meta">
+			<?php
+				toujours_posted_on();
+				toujours_comment_link();
+			?>
+		</div><!-- .entry-meta -->
+		<?php endif; ?>
+	</header><!-- .entry-header -->
+
+
+	<?php if ( '' !== $post->post_content ) { ?>
+		<div class="entry-content">
+
+			<?php
+				the_content( sprintf(
+					/* translators: %s: Name of current post. */
+					wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'toujours' ), array( 'span' => array( 'class' => array() ) ) ),
+					the_title( '<span class="screen-reader-text">"', '"</span>', false )
+				) );
+			?>
+
+			<?php
+				wp_link_pages( array(
+					'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+					'after'  => '</div>',
+					'pagelink' => '<span class="page-links-num">%</span>'
+				) );
+			?>
+
+		</div><!-- .entry-content -->
+	<?php } ?>
+
+	<footer class="entry-footer">
+		<?php toujours_entry_footer(); ?>
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

+ 69 - 0
toujours/template-parts/content-link.php

@@ -0,0 +1,69 @@
+<?php
+/**
+ * Template part for displaying link format posts.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+	<?php if ( has_post_thumbnail() ) { ?>
+		<div class="featured-image">
+			<span>
+				<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'toujours-featured' ); ?></a>
+			</span>
+		</div>
+	<?php } ?>
+
+	<header class="entry-header">
+		<?php if ( is_sticky() && is_home() ) { ?>
+			<span class="featured-post"><?php esc_html_e( 'Featured', 'toujours' ); ?></span>
+		<?php } ?>
+
+		<?php if ( ! is_single() ) {
+			the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
+		} else {
+			the_title( '<h2 class="entry-title">', '</h2>' );
+		} ?>
+
+		<?php if ( 'post' === get_post_type() ) : ?>
+		<div class="entry-meta">
+			<?php
+				toujours_posted_on();
+				toujours_comment_link();
+			?>
+		</div><!-- .entry-meta -->
+		<?php endif; ?>
+	</header><!-- .entry-header -->
+
+
+	<?php if ( '' !== $post->post_content ) { ?>
+		<div class="entry-content">
+
+			<?php
+				the_content( sprintf(
+					/* translators: %s: Name of current post. */
+					wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'toujours' ), array( 'span' => array( 'class' => array() ) ) ),
+					the_title( '<span class="screen-reader-text">"', '"</span>', false )
+				) );
+			?>
+
+			<?php
+				wp_link_pages( array(
+					'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+					'after'  => '</div>',
+					'pagelink' => '<span class="page-links-num">%</span>'
+				) );
+			?>
+
+		</div><!-- .entry-content -->
+	<?php } ?>
+
+	<footer class="entry-footer">
+		<?php toujours_entry_footer(); ?>
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

+ 34 - 0
toujours/template-parts/content-none.php

@@ -0,0 +1,34 @@
+<?php
+/**
+ * Template part for displaying a message that posts cannot be found.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package toujours
+ */
+
+?>
+
+<section class="no-results not-found">
+	<header class="page-header">
+		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'toujours' ); ?></h1>
+	</header><!-- .page-header -->
+
+	<div class="page-content">
+		<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
+
+			<p><?php printf( wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'toujours' ), 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.', 'toujours' ); ?></p>
+			<?php get_search_form(); ?>
+
+		<?php else : ?>
+
+			<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'toujours' ); ?></p>
+			<?php get_search_form(); ?>
+
+		<?php endif; ?>
+	</div><!-- .page-content -->
+</section><!-- .no-results -->

+ 42 - 0
toujours/template-parts/content-page.php

@@ -0,0 +1,42 @@
+<?php
+/**
+ * Template part for displaying page content in page.php.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<?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"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+				'after'  => '</div>',
+				'pagelink' => '<span class="page-links-num">%</span>'
+			) );
+		?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-footer">
+		<?php
+			edit_post_link(
+				sprintf(
+					/* translators: %s: Name of current post */
+					esc_html__( 'Edit %s', 'toujours' ),
+					the_title( '<span class="screen-reader-text">"', '"</span>', false )
+				),
+				'<span class="edit-link">',
+				'</span>'
+			);
+		?>
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->
+

+ 69 - 0
toujours/template-parts/content-quote.php

@@ -0,0 +1,69 @@
+<?php
+/**
+ * Template part for displaying quote format posts.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+$style = '';
+if ( has_post_thumbnail() ) {
+	$thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'toujours-featured' );
+	$style = 'style="background-image: url(' . esc_url( $thumb[0] ) . ');"';
+}
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> <?php echo $style; ?>>
+
+	<?php if ( is_sticky() && is_home() ) { ?>
+		<span class="featured-post"><?php esc_html_e( 'Featured', 'toujours' ); ?></span>
+	<?php } ?>
+
+	<?php if ( '' !== $post->post_content ) { ?>
+		<div class="entry-content">
+			<?php
+				the_content( sprintf(
+					/* translators: %s: Name of current post. */
+					wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'toujours' ), array( 'span' => array( 'class' => array() ) ) ),
+					the_title( '<span class="screen-reader-text">"', '"</span>', false )
+				) );
+			?>
+
+			<?php
+				wp_link_pages( array(
+					'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+					'after'  => '</div>',
+					'pagelink' => '<span class="page-links-num">%</span>'
+				) );
+			?>
+
+		</div><!-- .entry-content -->
+	<?php } ?>
+
+	<footer class="entry-footer">
+
+		<?php if ( ! is_single() ) {
+			the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
+		} else {
+			the_title( '<h2 class="entry-title">', '</h2>' );
+		} ?>
+
+		<div class="entry-meta">
+			<?php
+				toujours_post_format();
+				toujours_posted_on();
+				toujours_comment_link();
+				edit_post_link(
+					sprintf(
+						/* translators: %s: Name of current post */
+						esc_html__( 'Edit %s', 'toujours' ),
+						the_title( '<span class="screen-reader-text">"', '"</span>', false )
+					),
+					'<span class="edit-link"><span class="sep">&bull;</span>','</span>'
+				);
+			?>
+		</div><!-- .entry-meta -->
+
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

+ 66 - 0
toujours/template-parts/content-recent-posts.php

@@ -0,0 +1,66 @@
+<?php
+/**
+ * Template part for displaying trio of recent posts
+ *
+ * @package Toujours
+ */
+
+$latest_three = apply_filters( 'toujours-recent-posts', false );
+if ( ! $latest_three ) {
+	return;
+}
+?>
+
+<div id="featured-post-trio" class="clear">
+	<div class="wrap">
+
+		<?php
+			$recent_posts = new WP_Query( array(
+				'post__in'             => (array) $latest_three,
+				'ignore_sticky_posts'  => 1,
+				'posts_per_page'	   => '3',
+			) );
+			while ( $recent_posts->have_posts() ) : $recent_posts->the_post();
+		?>
+
+			<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+				<?php if ( has_post_thumbnail() ) { ?>
+
+					<?php if ( has_post_thumbnail() ) { ?>
+						<div class="featured-image">
+							<span>
+								<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'toujours-trio' ); ?></a>
+							</span>
+						</div>
+					<?php } ?>
+
+				<?php } ?>
+
+				<div class="entry-text">
+					<header class="entry-header">
+						<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
+
+						<div class="entry-meta">
+							<?php toujours_posted_on(); ?>
+						</div><!-- .entry-meta -->
+					</header><!-- .entry-header -->
+
+					<div class="entry-content">
+						<?php the_excerpt(); ?>
+					</div><!-- .entry-content -->
+
+					<footer class="entry-footer">
+						<?php toujours_entry_footer(); ?>
+					</footer><!-- .entry-footer -->
+				</div><!-- .entry-text -->
+			</article><!-- #post-## -->
+
+
+		<?php
+		endwhile;
+		wp_reset_postdata();
+		?>
+
+	</div><!-- .wrap -->
+</div><!--/. featured posts -->

+ 41 - 0
toujours/template-parts/content-search.php

@@ -0,0 +1,41 @@
+<?php
+/**
+ * Template part for displaying results in search pages.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<?php if ( has_post_thumbnail() ) { ?>
+		<div class="featured-image">
+			<span>
+				<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'toujours-featured' ); ?></a>
+			</span>
+		</div>
+	<?php } ?>
+
+	<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
+				toujours_posted_on();
+				toujours_comment_link();
+			?>
+		</div><!-- .entry-meta -->
+		<?php endif; ?>
+	</header><!-- .entry-header -->
+
+	<div class="entry-content">
+		<?php the_excerpt(); ?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-footer">
+		<?php toujours_entry_footer(); ?>
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

+ 31 - 0
toujours/template-parts/content-slideshow.php

@@ -0,0 +1,31 @@
+<?php
+/**
+ * Template part for displaying slideshow in header
+ *
+ * @package Toujours
+ */
+
+$featured_posts = toujours_get_banner_posts(); ?>
+
+<div id="featured-slideshow">
+	<div class="wrap">
+		<div class="slideshow">
+			<ul class="slides">
+				<?php foreach ( (array) $featured_posts as $order => $post ) {
+					setup_postdata( $post ); ?>
+					<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'toujours-banner' ); ?>
+					<li class="slide">
+						<div class="slide-media" title="<?php the_title_attribute(); ?>" <?php if ( has_post_thumbnail() ) { echo 'style="background-image: url(' . esc_url( $thumb[0] ) . ');"'; } ?>>
+						</div>
+						<div class="slide-info">
+							<?php the_title( sprintf( '<div class="slide-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></div>' ); ?>
+							<?php toujours_posted_on(); ?>
+						</div>
+					</li><!-- .slide -->
+				<?php } ?>
+			</ul><!-- .slides -->
+		</div><!-- .slideshow -->
+	</div><!-- .wrap -->
+</div><!-- #featured-slideshow -->
+
+<?php wp_reset_postdata(); ?>

+ 64 - 0
toujours/template-parts/content-status.php

@@ -0,0 +1,64 @@
+<?php
+/**
+ * Template part for displaying status format posts.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+	<?php if ( is_sticky() && is_home() ) { ?>
+		<span class="featured-post"><?php esc_html_e( 'Featured', 'toujours' ); ?></span>
+	<?php } ?>
+
+	<?php if ( '' !== $post->post_content ) { ?>
+		<div class="entry-content">
+			<?php
+				the_content( sprintf(
+					/* translators: %s: Name of current post. */
+					wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'toujours' ), array( 'span' => array( 'class' => array() ) ) ),
+					the_title( '<span class="screen-reader-text">"', '"</span>', false )
+				) );
+			?>
+
+			<?php
+				wp_link_pages( array(
+					'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+					'after'  => '</div>',
+					'pagelink' => '<span class="page-links-num">%</span>'
+				) );
+			?>
+
+		</div><!-- .entry-content -->
+	<?php } ?>
+
+	<footer class="entry-footer">
+
+		<?php if ( ! is_single() ) {
+			the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
+		} else {
+			the_title( '<h2 class="entry-title">', '</h2>' );
+		} ?>
+
+		<div class="entry-meta">
+			<?php
+				toujours_post_format();
+				toujours_posted_on();
+				toujours_comment_link();
+				edit_post_link(
+					sprintf(
+						/* translators: %s: Name of current post */
+						esc_html__( 'Edit %s', 'toujours' ),
+						the_title( '<span class="screen-reader-text">"', '"</span>', false )
+					),
+					'<span class="edit-link"><span class="sep">&bull;</span>','</span>'
+				);
+			?>
+		</div><!-- .entry-meta -->
+
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

+ 81 - 0
toujours/template-parts/content-video.php

@@ -0,0 +1,81 @@
+<?php
+/**
+ * Template part for displaying video format posts.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<?php
+	/* translators: %s: Name of current post */
+	$content_text = sprintf(
+		wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'toujours' ), array( 'span' => array( 'class' => array() ) ) ),
+		the_title( '<span class="screen-reader-text">"', '"</span>', false )
+	);
+
+
+	$content = apply_filters( 'the_content', get_the_content( $content_text ) );
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<?php
+
+		$video = get_media_embedded_in_content( $content, array( 'video', 'object', 'embed', 'iframe' ) );
+
+		if ( ! empty( $video ) ) {
+			foreach ( $video as $video_html ) {
+				$content = str_replace( $video_html, '', $content );
+				?>
+				<div class="entry-video jetpack-video-wrapper">
+					<?php echo $video_html; ?>
+				</div><!-- .entry-video.jetpack-video-wrapper -->
+				<?php
+			} // endforeach
+		} // endif !empty ( $media )
+	?>
+
+	<header class="entry-header">
+		<?php if ( is_sticky() && is_home() ) { ?>
+			<span class="featured-post"><?php esc_html_e( 'Featured', 'toujours' ); ?></span>
+		<?php } ?>
+
+		<?php if ( ! is_single() ) {
+			the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
+		} else {
+			the_title( '<h2 class="entry-title">', '</h2>' );
+		} ?>
+
+		<?php if ( 'post' === get_post_type() ) : ?>
+		<div class="entry-meta">
+			<?php
+				toujours_posted_on();
+				toujours_comment_link();
+			?>
+		</div><!-- .entry-meta -->
+		<?php endif; ?>
+	</header><!-- .entry-header -->
+
+
+	<?php if ( '' !== $post->post_content ) { ?>
+		<div class="entry-content">
+
+			<?php echo $content; ?>
+
+			<?php
+				wp_link_pages( array(
+					'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+					'after'  => '</div>',
+					'pagelink' => '<span class="page-links-num">%</span>'
+				) );
+			?>
+
+		</div><!-- .entry-content -->
+	<?php } ?>
+
+	<footer class="entry-footer">
+		<?php toujours_entry_footer(); ?>
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

+ 69 - 0
toujours/template-parts/content.php

@@ -0,0 +1,69 @@
+<?php
+/**
+ * Template part for displaying posts.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Toujours
+ */
+
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+	<?php if ( has_post_thumbnail() ) { ?>
+		<div class="featured-image">
+			<span>
+				<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'toujours-featured' ); ?></a>
+			</span>
+		</div>
+	<?php } ?>
+
+	<header class="entry-header">
+		<?php if ( is_sticky() && is_home() ) { ?>
+			<span class="featured-post"><?php esc_html_e( 'Featured', 'toujours' ); ?></span>
+		<?php } ?>
+
+		<?php if (! is_single() ) {
+			the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
+		} else {
+			the_title( '<h2 class="entry-title">', '</h2>' );
+		} ?>
+
+		<?php if ( 'post' === get_post_type() ) : ?>
+		<div class="entry-meta">
+			<?php
+				toujours_posted_on();
+				toujours_comment_link();
+			?>
+		</div><!-- .entry-meta -->
+		<?php endif; ?>
+	</header><!-- .entry-header -->
+
+
+	<?php if ( '' !== $post->post_content ) { ?>
+		<div class="entry-content">
+
+			<?php
+				the_content( sprintf(
+					/* translators: %s: Name of current post. */
+					wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'toujours' ), array( 'span' => array( 'class' => array() ) ) ),
+					the_title( '<span class="screen-reader-text">"', '"</span>', false )
+				) );
+			?>
+
+			<?php
+				wp_link_pages( array(
+					'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'toujours' ) . '</span>',
+					'after'  => '</div>',
+					'pagelink' => '<span class="page-links-num">%</span>'
+				) );
+			?>
+
+		</div><!-- .entry-content -->
+	<?php } ?>
+
+	<footer class="entry-footer">
+		<?php toujours_entry_footer(); ?>
+	</footer><!-- .entry-footer -->
+</article><!-- #post-## -->

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