summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Möhring2019-02-10 15:19:32 +0100
committerMaximilian Möhring2019-02-10 15:19:32 +0100
commit3178efaffda6aab046407642fe04835972c54eb9 (patch)
treed6d7e82792a59250409e1b0f9a6e37c6a9948a12
parentd73d93083c73c5d375a1ce6aceaace715b98f521 (diff)
downloadfuselkoenig_de-3178efaffda6aab046407642fe04835972c54eb9.tar.gz
First test of special offer page.
-rw-r--r--template-angebote.php56
1 files changed, 56 insertions, 0 deletions
diff --git a/template-angebote.php b/template-angebote.php
new file mode 100644
index 0000000..4362fdc
--- /dev/null
+++ b/template-angebote.php
@@ -0,0 +1,56 @@
+<?php
+/*
+ * Template Name: Angebote
+ */
+
+if ( ! defined( 'ABSPATH' ) ) {
+ exit; // Exit if accessed directly.
+}
+
+get_header();
+
+$container = get_theme_mod( 'understrap_container_type' );
+?>
+<div class="wrapper" id="page-wrapper">
+
+ <div class="<?php echo esc_attr( $container ); ?>" id="content" tabindex="-1">
+
+ <div class="row">
+
+ <!-- Do the left sidebar check -->
+ <?php get_template_part( 'global-templates/left-sidebar-check' ); ?>
+
+ <main class="site-main" id="main">
+
+<div class="container py-3">
+ <div class="card">
+ <div class="row ">
+ <div class="col-md-4">
+ <img src="https://res-2.cloudinary.com/boozeboodcdn/image/upload/e_trim:10/c_pad,g_south,h_400,w_280/c_limit,h_910,w_280/f_auto,q_auto:best/v1/HD/27727.jpg" class="w-100">
+ </div>
+ <div class="col-md-8 px-3">
+ <div class="card-block px-3">
+ <h4 class="card-title">Bunnahabhain Toiteach</h4>
+ <p class="card-text">Preis: 44€</p>
+ <p class="card-text">Alter Preis: 51,50€</p>
+ <p class="card-text">Versand: 4,95€</p>
+ <a href="#" class="btn btn-primary">Zum Shop</a>
+ </div>
+ </div>
+
+ </div>
+ </div>
+ </div>
+
+ </main><!-- #main -->
+
+ <!-- Do the right sidebar check -->
+ <?php get_template_part( 'global-templates/right-sidebar-check' ); ?>
+
+ </div><!-- .row -->
+
+ </div><!-- Container end -->
+
+</div><!-- Wrapper end -->
+
+<?php get_footer(); ?>