-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
47 lines (39 loc) · 1.57 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* The main template file of the CVJM Nuernberg layout template.
*
* 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.
* For example, it puts together the home page when no home.php file exists.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage CVJM_Nuernberg
* @since CVJM_Nuernberg 1.0
*/
get_header(); ?>
<?php $circle_name = 'circles_main'; require(locate_template('circles.php')); ?>
<div class="main_container">
<?php $teaser_name = 'teaser'; require(locate_template('teaser.php')); ?>
<?php $event_vid = '1495,1496,1497,1498,1499,1500'; $event_add_query = 'highlight=high';
$event_show_filter = array('highlight' => 'yes',
'event' => 'yes',
'kultur' => 'yes',
'glaube' => 'yes',
'gruppe' => 'yes',
'sport' => 'yes',
'urlaub' => 'yes',
'gottesdienst' => 'yes',
'seminar' => 'yes'
);
require(locate_template('event-box.php')); ?>
<?php $news_name = 'news'; require(locate_template('news-box.php')); ?>
</div>
<?php
$pics = array( 'Bildergalerie_Logo.jpg', 'Videogalerie_Logo.jpg', 'Podcast_Logo.jpg', 'Treppenhaus_Lounge_Logo.jpg');
$links = array( 'http://galerie.cvjm-nuernberg.de/', 'http://vimeo.com/cvjmnuernberg/videos',
'http://podcasts.cvjm-nuernberg.de/', 'http://www.treppenhaus-lounge.de');
require(locate_template('sidebar.php')); ?>
<?php get_footer('menu'); ?>