copy of sh-gruene.de
parent
0e7845485e
commit
41c1708d7a
|
@ -0,0 +1,55 @@
|
|||
<?php get_header(); ?>
|
||||
<section id="content"><div class="inner wrap clearfix">
|
||||
<div class="archive-title ninecol first">
|
||||
<h1><?php single_cat_title(); ?><span class="hidden"><?php if( is_paged() ) { echo ' - Seite ' .$paged; }?></span></h1>
|
||||
|
||||
|
||||
|
||||
<?php echo category_description(); ?>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="main" class="ninecol first clearfix" role="main">
|
||||
|
||||
<div class="list-article">
|
||||
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
||||
|
||||
|
||||
<?php get_template_part( 'content-list-small', get_post_type() ); ?>
|
||||
|
||||
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
<?php if (function_exists('kr8_page_navi')) { ?>
|
||||
<?php kr8_page_navi(); ?>
|
||||
<?php } else { ?>
|
||||
<nav class="wp-prev-next">
|
||||
<ul class="clearfix">
|
||||
<li class="prev-link"><?php next_posts_link(__('« Ältere Beiträge', "kr8theme")) ?></li>
|
||||
<li class="next-link"><?php previous_posts_link(__('Neuere Beiträge »', "kr8theme")) ?></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<?php } ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<article id="post-not-found" class="hentry clearfix">
|
||||
<header class="article-header">
|
||||
<h1><?php _e("Oops, Post Not Found!", "kr8theme"); ?></h1>
|
||||
</header>
|
||||
<section class="entry-content">
|
||||
<p><?php _e("Uh Oh. Something is missing. Try double checking things.", "kr8theme"); ?></p>
|
||||
</section>
|
||||
<footer class="article-footer">
|
||||
<p><?php _e("This is the error message in the archive.php template.", "kr8theme"); ?></p>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
</div> <!-- end #main -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
</div></section>
|
||||
<?php get_footer(); ?>
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -3,161 +3,111 @@
|
|||
Template Name: Startseite - Kampagnen
|
||||
*/
|
||||
?>
|
||||
<?php get_header(); ?>
|
||||
<?php if ( has_post_thumbnail() ):
|
||||
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );
|
||||
$url = $thumb['0'];
|
||||
?>
|
||||
|
||||
<?php get_header(); ?>
|
||||
|
||||
|
||||
<?php if ( has_post_thumbnail() ):
|
||||
|
||||
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );
|
||||
$url = $thumb['0']; ?>
|
||||
<div class="fullpage parallax" style="background-image:url(<?php echo $url ?>);">
|
||||
<div class="introbg parallax fullpage" style="background-image:url(<?php echo $url ?>);"></div>
|
||||
|
||||
|
||||
|
||||
<div class="story-intro">
|
||||
<div class="inner">
|
||||
<div class="fullpage parallax" style="background-image:url(<?php echo $url ?>);">
|
||||
<div class="introbg parallax fullpage" style="background-image:url(<?php echo $url ?>);"></div>
|
||||
<div class="story-intro">
|
||||
<div class="inner">
|
||||
<h1><?php the_title(); ?></h1>
|
||||
<p><?php the_excerpt(); ?></p>
|
||||
|
||||
|
||||
<?php $cta = get_post_meta( $post->ID, 'kr8mb_page_campaign_cta', true );
|
||||
if (! empty ($cta )){ ?><p class="cta"><?php echo $cta; ?></p><?php } ?>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
<div class="inner wrap clearfix">
|
||||
|
||||
|
||||
<div id="donatenow" class="clearfix">
|
||||
<h2>Spenden</h2>
|
||||
<a href="/spenden#betrag=100">100 €</a>
|
||||
<a href="/spenden#betrag=50">50 €</a>
|
||||
<a href="/spenden#betrag=20">20 €</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="getmore">
|
||||
<h2>Erfahre mehr</h2>
|
||||
|
||||
<div class="sidebar clearfix involvebar" role="complementary">
|
||||
<?php dynamic_sidebar('campaigntwo'); ?>
|
||||
<?php $cta = get_post_meta( $post->ID, 'kr8mb_page_campaign_cta', true );
|
||||
if (! empty ($cta )){ ?><p class="cta"><?php echo $cta; ?></p><?php } ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="teaser" class="parallax" style="background-image:url(<?php echo get_template_directory_uri(); ?>/lib/images/bg_trees.jpg);">
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="inner wrap clearfix">
|
||||
|
||||
<div id="getinvolved">
|
||||
<h2>Werde aktiv</h2>
|
||||
<div class="sidebar clearfix involvebar" role="complementary">
|
||||
<?php dynamic_sidebar('campaignone'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="teaser">
|
||||
<div class="inner wrap clearfix sylvia">
|
||||
<div class="josephbeuys">
|
||||
<?php dynamic_sidebar('hometeaser'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<section id="content"><div class="inner wrap clearfix">
|
||||
|
||||
|
||||
|
||||
<div id="getinvolved">
|
||||
<h2>Werde aktiv</h2>
|
||||
|
||||
<div class="sidebar clearfix involvebar" role="complementary">
|
||||
<?php dynamic_sidebar('campaignone'); ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ninecol first clearfix" role="main">
|
||||
|
||||
<div class="ninecol first clearfix" role="main">
|
||||
<div class="responsive-tabs home-tabs">
|
||||
|
||||
|
||||
<h2><span>Aktuelles</span></h2>
|
||||
<div class="tab clearfix">
|
||||
|
||||
|
||||
<?php wp_reset_query(); ?>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
$postsperpage = get_option('posts_per_page');
|
||||
$args = array(
|
||||
<?php
|
||||
$postsperpage = get_option('posts_per_page');
|
||||
$args = array(
|
||||
'posts_per_page' => 3,
|
||||
'post__in' => get_option( 'sticky_posts' ),
|
||||
'posts_per_page' => $postsperpage,
|
||||
'ignore_sticky_posts' => 1
|
||||
);
|
||||
);
|
||||
query_posts($args);
|
||||
?>
|
||||
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
<?php get_template_part( 'content-list', get_post_format() ); ?>
|
||||
<?php endwhile; ?>
|
||||
|
||||
|
||||
<p><span class="button"><a href="archiv">Alle Nachrichten im Archiv »</a></span></p>
|
||||
|
||||
|
||||
</div>
|
||||
<h2><span>Termine</span></h2>
|
||||
<div class="tab clearfix">
|
||||
|
||||
<?php echo do_shortcode('[wpcalendar anzahl="5" kat="kampagne"]'); ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
<?php get_template_part( 'content-list', get_post_format() ); ?>
|
||||
<?php endwhile; ?>
|
||||
<p><span class="button"><a href="archiv">Alle Nachrichten im Archiv »</a></span></p>
|
||||
</div>
|
||||
|
||||
<!-- <h2><span>Termine</span></h2>
|
||||
<div class="tab clearfix">
|
||||
<?php echo do_shortcode('[ai1ec view="agenda" events_limit="5"]'); ?>
|
||||
</div>
|
||||
|
||||
-->
|
||||
<h2><span>Presse</span></h2>
|
||||
<div class="tab clearfix">
|
||||
|
||||
<div class="tab clearfix">
|
||||
<?php wp_reset_query(); ?>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
$postsperpage = get_option('posts_per_page');
|
||||
query_posts('posts_per_page=7&ignore_sticky_posts=1&category_name=presse');
|
||||
?>
|
||||
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
<?php get_template_part( 'content-list-small', get_post_format() ); ?>
|
||||
<?php endwhile; ?>
|
||||
|
||||
|
||||
<?php
|
||||
$postsperpage = get_option('posts_per_page');
|
||||
query_posts('posts_per_page=7&ignore_sticky_posts=1&category_name=presse');
|
||||
?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
<?php get_template_part( 'content-list-small', get_post_format() ); ?>
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<script>jQuery(document).ready(function() { RESPONSIVEUI.responsiveTabs(); }) </script>
|
||||
|
||||
<div id="sidebar1" class="sidebar threecol last clearfix homebar" role="complementary">
|
||||
<?php dynamic_sidebar('hometwo'); ?>
|
||||
</div>
|
||||
|
||||
|
||||
</div></section>
|
||||
<?php get_footer(); ?>
|
||||
</div>
|
||||
|
||||
<script>jQuery(document).ready(function() { RESPONSIVEUI.responsiveTabs(); }) </script>
|
||||
|
||||
<div id="sidebar1" class="sidebar threecol last clearfix homebar" role="complementary">
|
||||
<?php dynamic_sidebar('hometwo'); ?>
|
||||
</div>
|
||||
|
||||
<section id="content">
|
||||
|
||||
<div class="inner wrap clearfix">
|
||||
|
||||
</div>
|
||||
|
||||
<div id="getmore">
|
||||
<h2>Erfahre mehr</h2>
|
||||
<div class="sidebar clearfix involvebar" role="complementary">
|
||||
<?php dynamic_sidebar('campaigntwo'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="donatenow" class="clearfix">
|
||||
<h2>Spenden</h2>
|
||||
<a href="/spenden#betrag=100">100 €</a>
|
||||
<a href="/spenden#betrag=50">50 €</a>
|
||||
<a href="/spenden#betrag=20">20 €</a>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
<?php get_footer(); ?>
|
||||
|
|
Loading…
Reference in New Issue