summaryrefslogtreecommitdiff
path: root/dist/loop-templates
diff options
context:
space:
mode:
authorMax2018-11-04 22:32:44 +0100
committerMax2018-11-04 22:32:44 +0100
commit76402a87f366838bf06f6e36a552be43dfb5641c (patch)
treeec38e2d9115dee07496edce79129461dce64dd81 /dist/loop-templates
parenta3e1f8c9c14edf58185f290a492d86d6d688813b (diff)
downloadfuselkoenig_de-76402a87f366838bf06f6e36a552be43dfb5641c.tar.gz
Removes dist/ folder.
Diffstat (limited to 'dist/loop-templates')
-rw-r--r--dist/loop-templates/content-blank.php12
-rw-r--r--dist/loop-templates/content-empty.php12
-rw-r--r--dist/loop-templates/content-none.php47
-rw-r--r--dist/loop-templates/content-page.php42
-rw-r--r--dist/loop-templates/content-search.php52
-rw-r--r--dist/loop-templates/content-single.php51
-rw-r--r--dist/loop-templates/content.php59
7 files changed, 0 insertions, 275 deletions
diff --git a/dist/loop-templates/content-blank.php b/dist/loop-templates/content-blank.php
deleted file mode 100644
index 01ff3af..0000000
--- a/dist/loop-templates/content-blank.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-/**
- * Blank content partial template.
- *
- * @package understrap
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-
-the_content();
diff --git a/dist/loop-templates/content-empty.php b/dist/loop-templates/content-empty.php
deleted file mode 100644
index 5681144..0000000
--- a/dist/loop-templates/content-empty.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-/**
- * Content empty partial template.
- *
- * @package understrap
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-
-the_content();
diff --git a/dist/loop-templates/content-none.php b/dist/loop-templates/content-none.php
deleted file mode 100644
index 250152a..0000000
--- a/dist/loop-templates/content-none.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-/**
- * The template part for displaying a message that posts cannot be found.
- *
- * Learn more: http://codex.wordpress.org/Template_Hierarchy
- *
- * @package understrap
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-?>
-
-<section class="no-results not-found">
-
- <header class="page-header">
-
- <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'understrap' ); ?></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>.', 'understrap' ), 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.', 'understrap' ); ?></p>
- <?php
- get_search_form();
- else : ?>
-
- <p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'understrap' ); ?></p>
- <?php
- get_search_form();
- endif; ?>
- </div><!-- .page-content -->
-
-</section><!-- .no-results -->
diff --git a/dist/loop-templates/content-page.php b/dist/loop-templates/content-page.php
deleted file mode 100644
index 0de1a9c..0000000
--- a/dist/loop-templates/content-page.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * Partial template for content in page.php
- *
- * @package understrap
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-?>
-
-<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
-
- <header class="entry-header">
-
- <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
-
- </header><!-- .entry-header -->
-
- <?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
-
- <div class="entry-content page-mt">
-
- <?php the_content(); ?>
-
- <?php
- wp_link_pages( array(
- 'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
- 'after' => '</div>',
- ) );
- ?>
-
- </div><!-- .entry-content -->
-
- <footer class="entry-footer">
-
- <?php edit_post_link( __( 'Edit', 'understrap' ), '<span class="edit-link">', '</span>' ); ?>
-
- </footer><!-- .entry-footer -->
-
-</article><!-- #post-## -->
diff --git a/dist/loop-templates/content-search.php b/dist/loop-templates/content-search.php
deleted file mode 100644
index be34c68..0000000
--- a/dist/loop-templates/content-search.php
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-/**
- * Search results partial template.
- *
- * @package understrap
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-?>
-
-<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
-
- <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 understrap_posted_on(); ?>
-
- </div><!-- .entry-meta -->
-
- <footer class="entry-footer">
-
- <div class="row">
- <?php understrap_entry_footer(); ?>
- </div>
-
- </footer><!-- .entry-footer -->
-
- <?php endif; ?>
-
- </header><!-- .entry-header -->
-
- <a href="<?php echo esc_url( get_permalink() );?>">
- <?php echo get_the_post_thumbnail( $post->ID, 'medium' ); ?>
- </a>
-
- <div class="entry-summary entry-content">
-
- <?php the_excerpt(); ?>
-
- </div><!-- .entry-summary -->
- <div class="clearfix"></div>
-
-
-</article><!-- #post-## -->
diff --git a/dist/loop-templates/content-single.php b/dist/loop-templates/content-single.php
deleted file mode 100644
index 76c6bbd..0000000
--- a/dist/loop-templates/content-single.php
+++ /dev/null
@@ -1,51 +0,0 @@
-<?php
-/**
- * Single post partial template.
- *
- * @package understrap
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-?>
-
-<article <?php post_class(array('')); ?> id="post-<?php the_ID(); ?>">
-
- <header class="entry-header">
-
- <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
-
- <?php echo get_the_post_thumbnail( $post->ID, 'large', array( 'class' => 'mx-auto d-block border rounded' ) ); ?>
-
- <div class="entry-meta entry-meta-single text-muted">
-
- <?php understrap_posted_on(); ?>
-
- </div><!-- .entry-meta -->
- <footer class="entry-footer">
-
- <div class="row">
- <?php understrap_entry_footer(); ?>
- </div>
-
- </footer><!-- .entry-footer -->
-
- </header><!-- .entry-header -->
-<hr>
-
- <div class="entry-content">
-
- <?php the_content(); ?>
-
- <?php
- wp_link_pages( array(
- 'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
- 'after' => '</div>',
- ) );
- ?>
-
- </div><!-- .entry-content -->
-
-
-</article><!-- #post-## -->
diff --git a/dist/loop-templates/content.php b/dist/loop-templates/content.php
deleted file mode 100644
index 3205ad9..0000000
--- a/dist/loop-templates/content.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-/**
- * Post rendering content according to caller of get_template_part.
- *
- * @package understrap
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-?>
-
-<article <?php post_class('article-mb'); ?> id="post-<?php the_ID(); ?>">
-
- <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 understrap_posted_on(); ?>
- </div><!-- .entry-meta -->
-
- <footer class="entry-footer">
-
- <div class="row">
- <?php understrap_entry_footer(); ?>
- </div>
-
- </footer><!-- .entry-footer -->
-
- <?php endif; ?>
-
- </header><!-- .entry-header -->
-
- <a href="<?php echo esc_url( get_permalink() );?>">
- <?php echo get_the_post_thumbnail( $post->ID, 'medium' ); ?>
- </a>
-
- <div class="entry-content">
-
- <?php
- the_excerpt();
- ?>
-
- <?php
- wp_link_pages( array(
- 'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
- 'after' => '</div>',
- ) );
- ?>
-
- </div><!-- .entry-content -->
- <div class="clearfix"></div>
-
-
-</article><!-- #post-## -->