update themes
authorymh <ymh.work@gmail.com>
Mon, 14 Oct 2019 18:30:03 +0200
changeset 10 372f2766ea20
parent 9 177826044cd9
child 11 bf1778c34b9a
update themes
wp/wp-content/themes/twentythirteen/archive.php
wp/wp-content/themes/twentythirteen/author.php
wp/wp-content/themes/twentythirteen/category.php
wp/wp-content/themes/twentythirteen/comments.php
wp/wp-content/themes/twentythirteen/content-aside.php
wp/wp-content/themes/twentythirteen/content-audio.php
wp/wp-content/themes/twentythirteen/content-chat.php
wp/wp-content/themes/twentythirteen/content-gallery.php
wp/wp-content/themes/twentythirteen/content-image.php
wp/wp-content/themes/twentythirteen/content-link.php
wp/wp-content/themes/twentythirteen/content-none.php
wp/wp-content/themes/twentythirteen/content-quote.php
wp/wp-content/themes/twentythirteen/content-status.php
wp/wp-content/themes/twentythirteen/content-video.php
wp/wp-content/themes/twentythirteen/css/blocks.css
wp/wp-content/themes/twentythirteen/css/editor-blocks.css
wp/wp-content/themes/twentythirteen/functions.php
wp/wp-content/themes/twentythirteen/header.php
wp/wp-content/themes/twentythirteen/image.php
wp/wp-content/themes/twentythirteen/inc/back-compat.php
wp/wp-content/themes/twentythirteen/inc/custom-header.php
wp/wp-content/themes/twentythirteen/index.php
wp/wp-content/themes/twentythirteen/page.php
wp/wp-content/themes/twentythirteen/readme.txt
wp/wp-content/themes/twentythirteen/search.php
wp/wp-content/themes/twentythirteen/single.php
wp/wp-content/themes/twentythirteen/style.css
wp/wp-content/themes/twentythirteen/tag.php
wp/wp-content/themes/twentythirteen/taxonomy-post_format.php
--- a/wp/wp-content/themes/twentythirteen/archive.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/archive.php	Mon Oct 14 18:30:03 2019 +0200
@@ -10,7 +10,7 @@
  * already has tag.php for Tag archives, category.php for Category archives,
  * and author.php for Author archives.
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Thirteen
@@ -35,7 +35,7 @@
 					else :
 						_e( 'Archives', 'twentythirteen' );
 					endif;
-				?>
+					?>
 				</h1>
 			</header><!-- .archive-header -->
 
@@ -43,7 +43,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 				<?php get_template_part( 'content', get_post_format() ); ?>
 			<?php endwhile; ?>
 
--- a/wp/wp-content/themes/twentythirteen/author.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/author.php	Mon Oct 14 18:30:03 2019 +0200
@@ -2,7 +2,7 @@
 /**
  * The template for displaying Author archive pages
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Thirteen
@@ -48,7 +48,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 				<?php get_template_part( 'content', get_post_format() ); ?>
 			<?php endwhile; ?>
 
--- a/wp/wp-content/themes/twentythirteen/category.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/category.php	Mon Oct 14 18:30:03 2019 +0200
@@ -2,7 +2,7 @@
 /**
  * The template for displaying Category pages
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Thirteen
@@ -27,7 +27,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 				<?php get_template_part( 'content', get_post_format() ); ?>
 			<?php endwhile; ?>
 
--- a/wp/wp-content/themes/twentythirteen/comments.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/comments.php	Mon Oct 14 18:30:03 2019 +0200
@@ -23,10 +23,20 @@
 	<?php if ( have_comments() ) : ?>
 		<h2 class="comments-title">
 			<?php
+			if ( 1 === get_comments_number() ) {
 				printf(
-					_nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentythirteen' ),
-					number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>'
+					/* translators: %s: The post title. */
+					_x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentythirteen' ),
+					'<span>' . get_the_title() . '</span>'
 				);
+			} else {
+				printf(
+					/* translators: %1$s: The number of comments. %2$s: The post title. */
+					_nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentythirteen' ),
+					number_format_i18n( get_comments_number() ),
+					'<span>' . get_the_title() . '</span>'
+				);
+			}
 			?>
 		</h2>
 
@@ -45,7 +55,7 @@
 		<?php
 			// Are there comments to navigate through?
 		if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
-		?>
+			?>
 		<nav class="navigation comment-navigation" role="navigation">
 		<h1 class="screen-reader-text section-heading"><?php _e( 'Comment navigation', 'twentythirteen' ); ?></h1>
 		<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentythirteen' ) ); ?></div>
--- a/wp/wp-content/themes/twentythirteen/content-aside.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-aside.php	Mon Oct 14 18:30:03 2019 +0200
@@ -27,7 +27,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
--- a/wp/wp-content/themes/twentythirteen/content-audio.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-audio.php	Mon Oct 14 18:30:03 2019 +0200
@@ -38,7 +38,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 		</div><!-- .audio-content -->
 	</div><!-- .entry-content -->
 
--- a/wp/wp-content/themes/twentythirteen/content-chat.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-chat.php	Mon Oct 14 18:30:03 2019 +0200
@@ -37,7 +37,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
--- a/wp/wp-content/themes/twentythirteen/content-gallery.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-gallery.php	Mon Oct 14 18:30:03 2019 +0200
@@ -38,7 +38,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 		<?php else : ?>
 			<?php echo get_post_gallery(); ?>
 		<?php endif; // is_single() ?>
--- a/wp/wp-content/themes/twentythirteen/content-image.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-image.php	Mon Oct 14 18:30:03 2019 +0200
@@ -37,7 +37,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
--- a/wp/wp-content/themes/twentythirteen/content-link.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-link.php	Mon Oct 14 18:30:03 2019 +0200
@@ -38,7 +38,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 	</div><!-- .entry-content -->
 
 	<?php if ( is_single() ) : ?>
--- a/wp/wp-content/themes/twentythirteen/content-none.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-none.php	Mon Oct 14 18:30:03 2019 +0200
@@ -20,12 +20,12 @@
 	<?php elseif ( is_search() ) : ?>
 
 	<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with different keywords.', 'twentythirteen' ); ?></p>
-	<?php get_search_form(); ?>
+		<?php get_search_form(); ?>
 
 	<?php else : ?>
 
 	<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentythirteen' ); ?></p>
-	<?php get_search_form(); ?>
+		<?php get_search_form(); ?>
 
 	<?php endif; ?>
 </div><!-- .page-content -->
--- a/wp/wp-content/themes/twentythirteen/content-quote.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-quote.php	Mon Oct 14 18:30:03 2019 +0200
@@ -27,7 +27,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
--- a/wp/wp-content/themes/twentythirteen/content-status.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-status.php	Mon Oct 14 18:30:03 2019 +0200
@@ -27,7 +27,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
--- a/wp/wp-content/themes/twentythirteen/content-video.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/content-video.php	Mon Oct 14 18:30:03 2019 +0200
@@ -37,7 +37,7 @@
 					'link_after'  => '</span>',
 				)
 			);
-		?>
+			?>
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/wp/wp-content/themes/twentythirteen/css/blocks.css	Mon Oct 14 18:30:03 2019 +0200
@@ -0,0 +1,552 @@
+/*
+Theme Name: Twenty Thirteen
+Description: Used to style blocks.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 Block Alignments
+2.0 General Block Styles
+3.0 Blocks - Common Blocks
+4.0 Blocks - Formatting
+5.0 Blocks - Layout Elements
+6.0 Blocks - Widgets
+7.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 Block Alignments
+--------------------------------------------------------------*/
+
+.content-area {
+	overflow-x: hidden; /* prevents side-scrolling caused by use of vw */
+}
+
+[class^="wp-block-"].alignleft,
+[class^="wp-block-"] .alignleft {
+	margin-right: 20px;
+}
+
+[class^="wp-block-"].alignright,
+[class^="wp-block-"] .alignright {
+	margin-left: 20px;
+}
+
+.alignfull,
+.alignwide {
+	clear: both;
+}
+
+body:not(.sidebar) .alignwide {
+	margin-left: calc(25% - 25vw);
+	margin-right: calc(25% - 25vw);
+	width: auto;
+	max-width: 1600px;
+}
+
+body:not(.sidebar) .alignfull {
+	margin-left: calc(50% - 50vw);
+	margin-right: calc(50% - 50vw);
+	width: auto;
+	max-width: 1600px;
+}
+
+/* Make non image-based blocks a bit narrower, so they don't get cut off. */
+body:not(.sidebar) .wp-block-columns.alignfull,
+body:not(.sidebar) .wp-block-audio.alignfull,
+body:not(.sidebar) .wp-block-table.alignfull,
+body:not(.sidebar) .wp-block-latest-comments.alignfull {
+	margin-left: calc(50% - 48vw);
+	margin-right: calc(50% - 48vw);
+}
+
+@media (max-width: 999px) {
+	body.sidebar .alignwide {
+		margin-left: calc(25% - 25vw);
+		margin-right: calc(25% - 25vw);
+		width: auto;
+		max-width: 1600px;
+	}
+
+	body.sidebar .alignfull {
+		margin-left: calc(50% - 50vw);
+		margin-right: calc(50% - 50vw);
+		width: auto;
+		max-width: 1600px;
+	}
+
+	/* Make non image-based blocks a bit narrower, so they don't get cut off. */
+	body.sidebar .wp-block-columns.alignfull,
+	body.sidebar .wp-block-audio.alignfull,
+	body.sidebar .wp-block-table.alignfull,
+	body.sidebar .wp-block-latest-comments.alignfull {
+		margin-left: calc(50% - 48vw);
+		margin-right: calc(50% - 48vw);
+	}
+}
+
+@media (min-width: 1600px) {
+
+	/* Make sure the full and wide blocks still stay in Twenty Thirteen's wide container */
+	body:not(.sidebar) .alignfull {
+		margin-left: calc(50% - 800px);
+		margin-right: calc(50% - 800px);
+		width: auto;
+		max-width: 1000%;
+	}
+
+	body:not(.sidebar) .wp-block-columns.alignfull,
+	body:not(.sidebar) .wp-block-audio.alignfull,
+	body:not(.sidebar) .wp-block-table.alignfull,
+	body:not(.sidebar) .wp-block-latest-comments.alignfull {
+		margin-left: calc(50% - 780px);
+		margin-right: calc(50% - 780px);
+	}
+
+	body:not(.sidebar) .wp-block-gallery.alignfull {
+		margin-left: calc(50% - 808px); /* Adjust for gallery margins */
+		margin-right: calc(50% - 808px);
+		width: auto;
+		max-width: 1000%;
+	}
+
+	/* Make sure the 'wide' alignment doesn't get too wide. */
+	body:not(.sidebar) .alignwide {
+		margin-left: -230px;
+		margin-right: -230px;
+	}
+}
+
+/*--------------------------------------------------------------
+2.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Captions */
+
+[class^="wp-block-"] figcaption,
+[class^="wp-block-"] figcaption.editor-rich-text__tinymce.mce-content-body {
+	color: #220e10;
+	font-size: 18px;
+	font-style: italic;
+	font-weight: 300;
+	line-height: 1.5;
+	margin: 0 0 24px;
+}
+
+/*--------------------------------------------------------------
+3.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+	font-size: 5em;
+}
+
+/* Gallery */
+
+.wp-block-gallery {
+	margin-bottom: 24px;
+}
+
+.wp-block-gallery figcaption {
+	margin-bottom: 0;
+}
+
+/* Quote */
+
+.wp-block-quote {
+	margin: 24px 40px;
+	padding: 0;
+}
+
+.wp-block-quote:not(.is-large):not(.is-style-large) {
+	border-left: 0;
+	border-right: 0;
+	padding-left: 0;
+	padding-right: 0;
+}
+
+.wp-block-quote.is-large p,
+.wp-block-quote.is-style-large p {
+	font-size: 28px;
+}
+
+.wp-block-quote cite {
+	color: inherit;
+	font-size: inherit;
+	font-style: italic;
+}
+
+/* Audio */
+
+.wp-block-audio audio {
+	display: block;
+	width: 100%;
+}
+
+/* Cover */
+
+.wp-block-cover-image.aligncenter,
+.wp-block-cover.aligncenter {
+	clear: both;
+	display: flex;
+}
+
+/* File */
+
+.wp-block-file .wp-block-file__button {
+	background: #e05d22; /* Old browsers */
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+	border: none;
+	border-radius: 2px;
+	border-bottom: 3px solid #b93207;
+	color: #fff;
+	display: inline-block;
+	font-size: 16px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+.wp-block-file .wp-block-file__button:hover,
+.wp-block-file .wp-block-file__button:focus {
+	background: #ed6a31; /* Old browsers */
+	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
+	color: #fff;
+	outline: none;
+}
+
+.wp-block-file .wp-block-file__button:active {
+	background: #d94412; /* Old browsers */
+	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
+	border: none;
+	border-top: 3px solid #b93207;
+	padding: 10px 24px 11px;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.wp-block-code {
+	background-color: transparent;
+	border: 0;
+	padding: 0;
+}
+
+/* Pullquote */
+
+.wp-block-pullquote {
+	border: 0;
+	color: inherit;
+	padding: 0.5em 0;
+}
+
+.wp-block-pullquote__citation,
+.wp-block-pullquote cite,
+.wp-block-pullquote footer {
+	color: inherit;
+}
+
+/* Table */
+
+.wp-block-table {
+	border-bottom: 1px solid #ededed;
+	border-collapse: collapse;
+	border-spacing: 0;
+	font-size: 14px;
+	line-height: 2;
+	margin: 0 0 20px;
+	width: 100%;
+}
+
+.wp-block-table th {
+	border: 0;
+	font-weight: bold;
+	text-transform: uppercase;
+}
+
+.wp-block-table td {
+	border: 0;
+	border-top: 1px solid #ededed;
+}
+
+body:not(.sidebar) .wp-block-table.alignwide,
+body:not(.sidebar) .wp-block-table.alignfull {
+	width: 100%;
+}
+
+/* Some acrobatics to make sure the table blocks always fill the available space. */
+
+@media (max-width: 1599px) {
+	body:not(.sidebar) .wp-block-table.alignwide {
+		width: calc(302px + 50vw); /* Half the content area width plus half the screen width. */
+	}
+
+	body:not(.sidebar) .wp-block-table.alignfull {
+		width: 96vw;
+	}
+}
+
+@media (max-width: 999px) {
+	body.sidebar .wp-block-table.alignwide {
+		width: calc(302px + 50vw); /* Half the content area width plus half the screen width. */
+	}
+
+	body.sidebar .wp-block-table.alignfull {
+		width: 96vw;
+	}
+}
+
+@media (max-width: 654px) {
+	body:not(.sidebar) .wp-block-table.alignwide,
+	body.sidebar .wp-block-table.alignwide {
+		width: 96vw;
+	}
+}
+
+@media (min-width: 1600px) {
+	body:not(.sidebar) .wp-block-table.alignwide {
+		width: 1064px;
+	}
+
+	body:not(.sidebar) .wp-block-table.alignfull {
+		width: 1560px;
+	}
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Layout Elements
+--------------------------------------------------------------*/
+
+/* Buttons */
+
+.wp-block-button.alignleft {
+	margin-right: 20px;
+}
+
+.wp-block-button.alignright {
+	margin-left: 20px;
+}
+
+.wp-block-button .wp-block-button__link {
+	border-bottom: 3px solid #b93207;
+	display: inline-block;
+	font-size: 16px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+.entry-content .wp-block-button__link {
+	background-color: #e05d22;
+	color: #fff;
+}
+
+.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background) {
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+}
+
+.entry-content .wp-block-button__link:hover,
+.entry-content .wp-block-button__link:focus,
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):hover,
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):focus {
+	background: #ed6a31;
+	color: #fff;
+}
+
+.wp-block-button.is-style-outline .wp-block-button__link {
+	background-color: inherit;
+	border-color: inherit;
+	border-width: 2px;
+}
+
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
+	color: #ed6a31;
+}
+
+.entry-content .wp-block-button__link:not(.has-background):hover,
+.entry-content .wp-block-button__link:not(.has-background):hover,
+.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background):hover {
+	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
+}
+
+.entry-content .wp-block-button__link:active {
+	background: #d94412;
+}
+
+.entry-content .wp-block-button__link:not(.has-background):active {
+	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
+}
+
+.entry-content .wp-block-button .wp-block-button__link:active {
+	border: none;
+	border-top: 3px solid #b93207;
+	padding: 10px 24px 11px;
+}
+
+/* Separator */
+
+.wp-block-separator {
+	border: 0;
+	max-width: 100px;
+}
+
+.wp-block-separator.is-style-wide {
+	max-width: 100%;
+}
+
+/* Media & Text */
+
+.wp-block-media-text {
+	margin-bottom: 24px;
+}
+
+.wp-block-media-text *:last-child {
+	margin-bottom: 0;
+}
+
+/*--------------------------------------------------------------
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Archives, Categories & Latest Posts */
+
+.wp-block-archives.aligncenter,
+.wp-block-categories.aligncenter,
+.wp-block-latest-posts.aligncenter {
+	list-style-position: inside;
+	text-align: center;
+}
+
+/* Latest Comments */
+
+.wp-block-latest-comments {
+	margin: 0;
+	padding: 0;
+}
+
+.wp-block-latest-comments .avatar,
+.wp-block-latest-comments__comment-avatar {
+	border-radius: 0;
+}
+
+.wp-block-latest-comments__comment,
+.wp-block-latest-comments__comment-excerpt,
+.wp-block-latest-comments__comment-excerpt p {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments__comment-excerpt p:last-child {
+	margin-bottom: 0;
+}
+
+.wp-block-latest-comments__comment-date {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments .wp-block-latest-comments__comment {
+	background: url(../images/dotted-line.png) repeat-x left top;
+	margin-bottom: 0;
+	padding: 24px 0;
+}
+
+/*--------------------------------------------------------------
+7.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+.entry-content .has-dark-gray-color {
+	color: #141412;
+}
+
+.entry-content .has-dark-gray-background-color {
+	background-color: #141412;
+}
+
+.entry-content .has-red-color {
+	color: #bc360a;
+}
+
+.entry-content .has-red-background-color {
+	background-color: #bc360a;
+}
+
+.entry-content .has-medium-orange-color {
+	color: #db572f;
+}
+
+.entry-content .has-medium-orange-background-color {
+	background-color: #db572f;
+}
+
+.entry-content .has-light-orange-color {
+	color: #ea9629;
+}
+
+.entry-content .has-light-orange-background-color {
+	background-color: #ea9629;
+}
+
+.entry-content .has-yellow-color {
+	color: #fbca3c;
+}
+
+.entry-content .has-yellow-background-color {
+	background-color: #fbca3c;
+}
+
+.entry-content .has-white-color {
+	color: #fff;
+}
+
+.entry-content .has-white-background-color {
+	background-color: #fff;
+}
+
+.entry-content .has-dark-brown-color {
+	color: #220e10;
+}
+
+.entry-content .has-dark-brown-background-color {
+	background-color: #220e10;
+}
+
+.entry-content .has-medium-brown-color {
+	color: #722d19;
+}
+
+.entry-content .has-medium-brown-background-color {
+	background-color: #722d19;
+}
+
+.entry-content .has-light-brown-color {
+	color: #eadaa6;
+}
+
+.entry-content .has-light-brown-background-color {
+	background-color: #eadaa6;
+}
+
+.entry-content .has-beige-color {
+	color: #e8e5ce;
+}
+
+.entry-content .has-beige-background-color {
+	background-color: #e8e5ce;
+}
+
+.entry-content .has-off-white-color {
+	color: #f7f5e7;
+}
+
+.entry-content .has-off-white-background-color {
+	background-color: #f7f5e7;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/wp/wp-content/themes/twentythirteen/css/editor-blocks.css	Mon Oct 14 18:30:03 2019 +0200
@@ -0,0 +1,419 @@
+/*
+Theme Name: Twenty Thirteen
+Description: Used to style blocks in the editor.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 General Typography
+2.0 General Block Styles
+3.0 Blocks - Common Blocks
+4.0 Blocks - Formatting
+5.0 Blocks - Layout Elements
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 Block Alignments
+--------------------------------------------------------------*/
+
+.editor-block-list__layout .editor-block-list__block[data-align="full"] > .editor-block-list__block-edit figure {
+	width: auto;
+}
+
+/*--------------------------------------------------------------
+2.0 General Typography
+--------------------------------------------------------------*/
+
+.edit-post-visual-editor .editor-block-list__block,
+.edit-post-visual-editor .editor-block-list__block p,
+.editor-default-block-appender textarea.editor-default-block-appender__content {
+	font-family: "Source Sans Pro", Helvetica, sans-serif;
+	font-size: 16px;
+	font-weight: 400;
+	line-height: 1.5;
+}
+
+.edit-post-visual-editor .editor-block-list__block {
+	color: #141412;
+}
+
+.editor-post-title__block .editor-post-title__input {
+	font-family: Bitter, Georgia, serif;
+	font-size: 48px;
+	font-weight: 300;
+	line-height: 1.0909090909;
+	margin-bottom: 12px;
+	margin: 0 0 12px 0;
+}
+
+/*--------------------------------------------------------------
+3.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Main content width */
+
+.wp-block {
+	max-width: 634px; /* 604px + 30px to account for padding */
+}
+
+.wp-block.alignwide,
+.wp-block.alignfull {
+	max-width: inherit;
+}
+
+[class^="wp-block-"] .wp-block {
+	max-width: 100%;
+}
+
+/* Link styles */
+
+.edit-post-visual-editor a,
+.editor-block-list__block a,
+.wp-block-freeform.block-library-rich-text__tinymce a {
+	color: #bc360a;
+}
+
+/* List styles */
+
+.edit-post-visual-editor ul:not(.wp-block-gallery),
+.editor-block-list__block ul:not(.wp-block-gallery),
+.block-library-list ul,
+.edit-post-visual-editor ol,
+.editor-block-list__block ol,
+.block-library-list ol {
+	margin: 16px 0;
+	padding: 0 0 0 40px;
+}
+
+.block-library-list .editor-rich-text__tinymce {
+	padding: 0 0 0 40px;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery),
+.edit-post-visual-editor .editor-block-list__block ul:not(.wp-block-gallery),
+.block-library-list ul {
+	list-style-type: square;
+}
+
+.edit-post-visual-editor ol,
+.editor-block-list__block ol,
+.block-library-list ol {
+	list-style: decimal;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
+.editor-block-list__block ul:not(.wp-block-gallery) li > ul,
+.block-library-list li > ul,
+.edit-post-visual-editor li > ol,
+.editor-block-list__block li > ol,
+.block-library-list li > ol {
+	margin: 0;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery) li,
+.editor-block-list__block ul:not(.wp-block-gallery) li,
+.edit-post-visual-editor ol li,
+.editor-block-list__block ol li,
+.block-library-list li {
+	margin-bottom: 0;
+}
+
+.rtl .edit-post-visual-editor ul:not(.wp-block-gallery),
+.rtl .editor-block-list__block ul:not(.wp-block-gallery),
+.rtl .block-library-list ul,
+.rtl .edit-post-visual-editor ol,
+.rtl .editor-block-list__block ol,
+.rtl .block-library-list ol {
+	padding-left: 0;
+	padding-right: 40px;
+}
+
+.rtl .block-library-list .editor-rich-text__tinymce {
+	padding-left: 0;
+	padding-right: 40px;
+}
+
+/* Quote */
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+	border-left: 0;
+	border-right: 0;
+	font-style: italic;
+	margin: 24px 40px;
+	padding-left: 0;
+	padding-right: 0;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote p {
+	font-size: 24px;
+	font-weight: 300;
+}
+
+/* Table */
+
+.rtl .editor-block-list__block table th,
+.rtl .editor-block-list__block table td {
+	text-align: right;
+}
+
+/* Code */
+
+.wp-block-freeform.block-library-rich-text__tinymce code {
+	background: transparent;
+}
+
+/* Captions */
+
+[class^="wp-block-"] figcaption,
+[class^="wp-block-"] figcaption.editor-rich-text__tinymce.mce-content-body {
+	color: #220e10;
+	font-size: 18px;
+	font-style: italic;
+	font-weight: 300;
+	line-height: 1.5;
+	margin: 0 0 24px;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+	font-size: 5em;
+}
+
+/* Gallery */
+
+.edit-post-visual-editor .wp-block-gallery {
+	margin-bottom: 24px;
+	padding: 0;
+}
+
+.wp-block-gallery figcaption,
+.wp-block-gallery figcaption.editor-rich-text__tinymce.mce-content-body {
+	color: #fff;
+	font-size: 13px;
+	margin-bottom: 0;
+}
+
+/* Quote */
+
+.wp-block-quote {
+	font-style: italic;
+	margin: 24px 40px;
+	padding: 0;
+}
+
+.editor-block-list__block .wp-block-quote p {
+	font-size: 24px;
+	font-weight: 300;
+}
+
+.wp-block-quote:not(.is-large):not(.is-style-large) {
+	border-left: 0;
+	border-right: 0;
+	padding-left: 0;
+	padding-right: 0;
+}
+
+.wp-block-quote .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body {
+	color: inherit;
+	font-size: 16px;
+	font-style: italic;
+	text-transform: uppercase;
+}
+
+.wp-block-quote.is-large p,
+.wp-block-quote.is-style-large p {
+	font-size: 28px;
+}
+
+.wp-block-quote.is-large .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body,
+.wp-block-quote.is-style-large .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body {
+	font-size: 18px;
+}
+
+/* Cover */
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-cover-image p.wp-block-cover-image-text,
+.edit-post-visual-editor .editor-block-list__block .wp-block-cover p.wp-block-cover-text {
+	font-size: 32px;
+	line-height: 1.25;
+}
+
+/* File */
+
+.wp-block-file .wp-block-file__textlink {
+	color: #bc360a;
+}
+
+.wp-block-file .wp-block-file__button {
+	background: #e05d22; /* Old browsers */
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+	border: none;
+	border-bottom: 3px solid #b93207;
+	color: #fff;
+	display: inline-block;
+	font-size: 16px;
+	line-height: 24px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.wp-block-code {
+	border: 0;
+	padding: 0;
+}
+
+/* Pullquote */
+
+.edit-post-visual-editor .wp-block-pullquote {
+	border: 0;
+	padding: 0.5em 0;
+}
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-pullquote p {
+	font-weight: 300;
+}
+
+.edit-post-visual-editor .wp-block-pullquote__citation,
+.edit-post-visual-editor .wp-block-pullquote cite,
+.edit-post-visual-editor .wp-block-pullquote footer {
+	color: #141412;
+	font-size: 16px;
+}
+
+/* Table */
+
+.wp-block-table {
+	border-bottom: 1px solid #ededed;
+	border-collapse: collapse;
+	border-spacing: 0;
+	font-size: 14px;
+	line-height: 2;
+	margin: 0 0 20px;
+	width: 100%;
+}
+
+.wp-block-table th {
+	border: 0;
+	font-weight: bold;
+	text-transform: uppercase;
+}
+
+.editor-block-list__block .wp-block-table td {
+	border: 0;
+	border-top: 1px solid #ededed;
+	padding: 0;
+}
+
+/*--------------------------------------------------------------
+6.0 Blocks - Layout Elements
+--------------------------------------------------------------*/
+
+/* Buttons */
+
+.wp-block-button .wp-block-button__link {
+	display: inline-block;
+	font-size: 16px;
+	line-height: 24px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+.wp-block-button__link {
+	background: #e05d22;
+	border-bottom: 3px solid #b93207;
+	color: #fff;
+}
+
+.is-style-outline .wp-block-button__link {
+	border-width: 2px;
+	color: #e05d22;
+}
+
+.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background) {
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+}
+
+/* Separator */
+
+.editor-block-list__block hr.wp-block-separator {
+	margin-left: auto;
+	margin-right: auto;
+}
+
+/* Media & Text */
+
+.wp-block-media-text *:last-child {
+	margin-bottom: 0;
+}
+
+/*--------------------------------------------------------------
+7.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Archives, Categories & Latest Posts */
+
+[data-align="center"] .wp-block-archives ul,
+[data-align="center"] .wp-block-categories ul,
+[data-align="center"] .wp-block-latest-posts ul {
+	list-style-position: inside;
+	text-align: center;
+}
+
+/* Latest Comments */
+
+.editor-block-list__block .wp-block-latest-comments {
+	margin: 0;
+	padding: 0;
+}
+
+.wp-block-latest-comments .avatar,
+.wp-block-latest-comments__comment-avatar {
+	border-radius: 0;
+}
+
+.wp-block-latest-comments__comment,
+.wp-block-latest-comments__comment-excerpt,
+.wp-block-latest-comments__comment-excerpt p {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments__comment-excerpt p:last-child {
+	margin-bottom: 0;
+}
+
+.wp-block-latest-comments__comment-date {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments .wp-block-latest-comments__comment {
+	background: url(../images/dotted-line.png) repeat-x left top;
+	margin-bottom: 0;
+	padding: 24px 0;
+}
+
+/* Latest Posts */
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-latest-posts.is-grid {
+	list-style-type: none;
+	margin-left: 0;
+	margin-right: 0;
+}
+
+.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
+	margin-bottom: 1em;
+}
--- a/wp/wp-content/themes/twentythirteen/functions.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/functions.php	Mon Oct 14 18:30:03 2019 +0200
@@ -6,12 +6,13 @@
  * theme as custom template tags. Others are attached to action and filter
  * hooks in WordPress to change core functionality.
  *
- * When using a child theme (see https://codex.wordpress.org/Theme_Development
- * and https://codex.wordpress.org/Child_Themes), you can override certain
- * functions (those wrapped in a function_exists() call) by defining them first
- * in your child theme's functions.php file. The child theme's functions.php
- * file is included before the parent theme's file, so the child theme
- * functions would be used.
+ * When using a child theme you can override certain functions (those wrapped
+ * in a function_exists() call) by defining them first in your child theme's
+ * functions.php file. The child theme's functions.php file is included before
+ * the parent theme's file, so the child theme functions would be used.
+ *
+ * @link https://codex.wordpress.org/Theme_Development
+ * @link https://developer.wordpress.org/themes/advanced-topics/child-themes/
  *
  * Functions that are not pluggable (not wrapped in function_exists()) are
  * instead attached to a filter or action hook.
@@ -76,6 +77,80 @@
 	 */
 	add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', twentythirteen_fonts_url() ) );
 
+	// Load regular editor styles into the new block-based editor.
+	add_theme_support( 'editor-styles' );
+
+	// Load default block styles.
+	add_theme_support( 'wp-block-styles' );
+
+	// Add support for full and wide align images.
+	add_theme_support( 'align-wide' );
+
+	// Add support for responsive embeds.
+	add_theme_support( 'responsive-embeds' );
+
+	// Add support for custom color scheme.
+	add_theme_support(
+		'editor-color-palette',
+		array(
+			array(
+				'name'  => __( 'Dark Gray', 'twentythirteen' ),
+				'slug'  => 'dark-gray',
+				'color' => '#141412',
+			),
+			array(
+				'name'  => __( 'Red', 'twentythirteen' ),
+				'slug'  => 'red',
+				'color' => '#bc360a',
+			),
+			array(
+				'name'  => __( 'Medium Orange', 'twentythirteen' ),
+				'slug'  => 'medium-orange',
+				'color' => '#db572f',
+			),
+			array(
+				'name'  => __( 'Light Orange', 'twentythirteen' ),
+				'slug'  => 'light-orange',
+				'color' => '#ea9629',
+			),
+			array(
+				'name'  => __( 'Yellow', 'twentythirteen' ),
+				'slug'  => 'yellow',
+				'color' => '#fbca3c',
+			),
+			array(
+				'name'  => __( 'White', 'twentythirteen' ),
+				'slug'  => 'white',
+				'color' => '#fff',
+			),
+			array(
+				'name'  => __( 'Dark Brown', 'twentythirteen' ),
+				'slug'  => 'dark-brown',
+				'color' => '#220e10',
+			),
+			array(
+				'name'  => __( 'Medium Brown', 'twentythirteen' ),
+				'slug'  => 'medium-brown',
+				'color' => '#722d19',
+			),
+			array(
+				'name'  => __( 'Light Brown', 'twentythirteen' ),
+				'slug'  => 'light-brown',
+				'color' => '#eadaa6',
+			),
+			array(
+				'name'  => __( 'Beige', 'twentythirteen' ),
+				'slug'  => 'beige',
+				'color' => '#e8e5ce',
+			),
+			array(
+				'name'  => __( 'Off-white', 'twentythirteen' ),
+				'slug'  => 'off-white',
+				'color' => '#f7f5e7',
+			),
+		)
+	);
+
 	// Adds RSS feed links to <head> for posts and comments.
 	add_theme_support( 'automatic-feed-links' );
 
@@ -84,7 +159,8 @@
 	 * and comments to output valid HTML5.
 	 */
 	add_theme_support(
-		'html5', array(
+		'html5',
+		array(
 			'search-form',
 			'comment-form',
 			'comment-list',
@@ -98,7 +174,8 @@
 	 * See https://codex.wordpress.org/Post_Formats
 	 */
 	add_theme_support(
-		'post-formats', array(
+		'post-formats',
+		array(
 			'aside',
 			'audio',
 			'chat',
@@ -201,11 +278,14 @@
 	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
 
 	// Add Genericons font, used in the main stylesheet.
-	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.03' );
+	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
 
 	// Loads our main stylesheet.
 	wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '2013-07-18' );
 
+	// Theme block stylesheet.
+	wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '2018-12-30' );
+
 	// Loads the Internet Explorer specific stylesheet.
 	wp_enqueue_style( 'twentythirteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentythirteen-style' ), '2013-07-18' );
 	wp_style_add_data( 'twentythirteen-ie', 'conditional', 'lt IE 9' );
@@ -238,6 +318,19 @@
 add_filter( 'wp_resource_hints', 'twentythirteen_resource_hints', 10, 2 );
 
 /**
+ * Enqueue styles for the block-based editor.
+ *
+ * @since Twenty Thirteen 2.5
+ */
+function twentythirteen_block_editor_styles() {
+	// Block styles.
+	wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '2018-12-30' );
+	// Add custom fonts.
+	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
+}
+add_action( 'enqueue_block_editor_assets', 'twentythirteen_block_editor_styles' );
+
+/**
  * Filter the page title.
  *
  * Creates a nicely formatted and more specific title element text for output
@@ -334,7 +427,7 @@
 
 		</div><!-- .nav-links -->
 	</nav><!-- .navigation -->
-	<?php
+		<?php
 	}
 endif;
 
@@ -364,7 +457,7 @@
 
 		</div><!-- .nav-links -->
 	</nav><!-- .navigation -->
-	<?php
+		<?php
 	}
 endif;
 
@@ -495,8 +588,8 @@
 			// get the URL of the next image attachment...
 			if ( $next_id ) {
 				$next_attachment_url = get_attachment_link( $next_id );
-			} // or get the URL of the first image attachment.
-			else {
+			} else {
+				// or get the URL of the first image attachment.
 				$next_attachment_url = get_attachment_link( reset( $attachment_ids ) );
 			}
 		}
@@ -611,14 +704,16 @@
 
 	if ( isset( $wp_customize->selective_refresh ) ) {
 		$wp_customize->selective_refresh->add_partial(
-			'blogname', array(
+			'blogname',
+			array(
 				'selector'            => '.site-title',
 				'container_inclusive' => false,
 				'render_callback'     => 'twentythirteen_customize_partial_blogname',
 			)
 		);
 		$wp_customize->selective_refresh->add_partial(
-			'blogdescription', array(
+			'blogdescription',
+			array(
 				'selector'            => '.site-description',
 				'container_inclusive' => false,
 				'render_callback'     => 'twentythirteen_customize_partial_blogdescription',
@@ -683,3 +778,21 @@
 	return $args;
 }
 add_filter( 'widget_tag_cloud_args', 'twentythirteen_widget_tag_cloud_args' );
+
+if ( ! function_exists( 'wp_body_open' ) ) :
+	/**
+	 * Fire the wp_body_open action.
+	 *
+	 * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
+	 *
+	 * @since Twenty Thirteen 2.8
+	 */
+	function wp_body_open() {
+		/**
+		 * Triggered after the opening <body> tag.
+		 *
+		 * @since Twenty Thirteen 2.8
+		 */
+		do_action( 'wp_body_open' );
+	}
+endif;
--- a/wp/wp-content/themes/twentythirteen/header.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/header.php	Mon Oct 14 18:30:03 2019 +0200
@@ -23,7 +23,7 @@
 	<meta name="viewport" content="width=device-width">
 	<title><?php wp_title( '|', true, 'right' ); ?></title>
 	<link rel="profile" href="http://gmpg.org/xfn/11">
-	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
+	<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
 	<!--[if lt IE 9]>
 	<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
 	<![endif]-->
@@ -31,6 +31,7 @@
 </head>
 
 <body <?php body_class(); ?>>
+	<?php wp_body_open(); ?>
 	<div id="page" class="hfeed site">
 		<header id="masthead" class="site-header" role="banner">
 			<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
@@ -50,7 +51,7 @@
 							'menu_id'        => 'primary-menu',
 						)
 					);
-?>
+					?>
 					<?php get_search_form(); ?>
 				</nav><!-- #site-navigation -->
 			</div><!-- #navbar -->
--- a/wp/wp-content/themes/twentythirteen/image.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/image.php	Mon Oct 14 18:30:03 2019 +0200
@@ -2,7 +2,7 @@
 /**
  * The template for displaying image attachments
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Thirteen
@@ -18,7 +18,7 @@
 				// Start the Loop.
 			while ( have_posts() ) :
 				the_post();
-			?>
+				?>
 
 			<article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>>
 			<header class="entry-header">
@@ -91,7 +91,7 @@
 				</div><!-- .entry-content -->
 			</article><!-- #post -->
 
-			<?php comments_template(); ?>
+				<?php comments_template(); ?>
 
 			<?php endwhile; // End the loop. ?>
 
--- a/wp/wp-content/themes/twentythirteen/inc/back-compat.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/inc/back-compat.php	Mon Oct 14 18:30:03 2019 +0200
@@ -45,7 +45,9 @@
  */
 function twentythirteen_customize() {
 	wp_die(
-		sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ), '', array(
+		sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ),
+		'',
+		array(
 			'back_link' => true,
 		)
 	);
--- a/wp/wp-content/themes/twentythirteen/inc/custom-header.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/inc/custom-header.php	Mon Oct 14 18:30:03 2019 +0200
@@ -74,7 +74,7 @@
 	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
 
 	// Add Genericons font.
-	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.03' );
+	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
 }
 add_action( 'admin_print_styles-appearance_page_custom-header', 'twentythirteen_custom_header_fonts' );
 
@@ -99,7 +99,7 @@
 	<style type="text/css" id="twentythirteen-header-css">
 	<?php
 	if ( ! empty( $header_image ) ) :
-	?>
+		?>
 	.site-header {
 		background: url(<?php header_image(); ?>) no-repeat scroll top;
 		background-size: 1600px auto;
@@ -114,30 +114,30 @@
 			background-size: 360px auto;
 		}
 	}
-	<?php
+		<?php
 		endif;
 
 		// Has the text been hidden?
 	if ( ! display_header_text() ) :
-	?>
+		?>
 	.site-title,
 	.site-description {
 		position: absolute;
 		clip: rect(1px 1px 1px 1px); /* IE7 */
 		clip: rect(1px, 1px, 1px, 1px);
 	}
-	<?php
-	if ( empty( $header_image ) ) :
-	?>
+		<?php
+		if ( empty( $header_image ) ) :
+			?>
 	.site-header .home-link {
 	min-height: 0;
 	}
-	<?php
+			<?php
 		endif;
 
 		// If the user has set a custom color for the text, use that.
 		elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' ) ) :
-	?>
+			?>
 		.site-title,
 		.site-description {
 			color: #<?php echo esc_attr( $text_color ); ?>;
@@ -154,7 +154,7 @@
  */
 function twentythirteen_admin_header_style() {
 	$header_image = get_header_image();
-?>
+	?>
 	<style type="text/css" id="twentythirteen-admin-header-css">
 	.appearance_page_custom-header #headimg {
 		border: none;
@@ -210,7 +210,7 @@
 		width: auto;
 	}
 	</style>
-<?php
+	<?php
 }
 
 /**
@@ -232,5 +232,5 @@
 			<h2 id="desc" class="displaying-header-text" style="<?php echo esc_attr( $style ); ?>"><?php bloginfo( 'description' ); ?></h2>
 		</div>
 	</div>
-<?php
+	<?php
 }
--- a/wp/wp-content/themes/twentythirteen/index.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/index.php	Mon Oct 14 18:30:03 2019 +0200
@@ -7,7 +7,7 @@
  * It is used to display a page when nothing more specific matches a query.
  * For example, it puts together the home page when no home.php file exists.
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Thirteen
@@ -24,7 +24,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 				<?php get_template_part( 'content', get_post_format() ); ?>
 			<?php endwhile; ?>
 
--- a/wp/wp-content/themes/twentythirteen/page.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/page.php	Mon Oct 14 18:30:03 2019 +0200
@@ -20,7 +20,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 
 				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 					<header class="entry-header">
@@ -44,7 +44,7 @@
 								'link_after'  => '</span>',
 							)
 						);
-?>
+						?>
 					</div><!-- .entry-content -->
 
 					<footer class="entry-meta">
--- a/wp/wp-content/themes/twentythirteen/readme.txt	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/readme.txt	Mon Oct 14 18:30:03 2019 +0200
@@ -1,8 +1,9 @@
 === Twenty Thirteen ===
-Contributors: the WordPress team
+Contributors: wordpressdotorg
 Requires at least: WordPress 3.6
-Tested up to: WordPress 5.0-trunk
-Stable tag: 2.4
+Tested up to: WordPress 5.0
+Requires PHP: 5.2.4
+Stable tag: 2.9
 License: GPLv2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
@@ -47,6 +48,31 @@
 
 == Changelog ==
 
+= 2.9 =
+* Released: May 7, 2019
+
+https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_2.9
+
+= 2.8 =
+* Released: February 21, 2019
+
+https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_2.8
+
+= 2.7 =
+* Released: January 9, 2019
+
+https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_2.7
+
+= 2.6 =
+* Released: December 19, 2018
+
+https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_2.6
+
+= 2.5 =
+* Released: December 6, 2018
+
+https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_2.5
+
 = 2.4 =
 * Released: May 17, 2018
 
--- a/wp/wp-content/themes/twentythirteen/search.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/search.php	Mon Oct 14 18:30:03 2019 +0200
@@ -22,7 +22,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 				<?php get_template_part( 'content', get_post_format() ); ?>
 			<?php endwhile; ?>
 
--- a/wp/wp-content/themes/twentythirteen/single.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/single.php	Mon Oct 14 18:30:03 2019 +0200
@@ -16,7 +16,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 
 				<?php get_template_part( 'content', get_post_format() ); ?>
 				<?php twentythirteen_post_nav(); ?>
--- a/wp/wp-content/themes/twentythirteen/style.css	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/style.css	Mon Oct 14 18:30:03 2019 +0200
@@ -4,7 +4,7 @@
 Author: the WordPress team
 Author URI: https://wordpress.org/
 Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
-Version: 2.4
+Version: 2.9
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
--- a/wp/wp-content/themes/twentythirteen/tag.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/tag.php	Mon Oct 14 18:30:03 2019 +0200
@@ -4,7 +4,7 @@
  *
  * Used to display archive-type pages for posts in a tag.
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Thirteen
@@ -29,7 +29,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 				<?php get_template_part( 'content', get_post_format() ); ?>
 			<?php endwhile; ?>
 
--- a/wp/wp-content/themes/twentythirteen/taxonomy-post_format.php	Mon Oct 14 18:28:13 2019 +0200
+++ b/wp/wp-content/themes/twentythirteen/taxonomy-post_format.php	Mon Oct 14 18:30:03 2019 +0200
@@ -6,7 +6,7 @@
  * If you'd like to further customize these Post Format views, you may create a
  * new template file for each specific one.
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Thirteen
@@ -27,7 +27,7 @@
 			<?php
 			while ( have_posts() ) :
 				the_post();
-?>
+				?>
 				<?php get_template_part( 'content', get_post_format() ); ?>
 			<?php endwhile; ?>