/[drupal]/contributions/modules/slider/slider.tpl.php
ViewVC logotype

Contents of /contributions/modules/slider/slider.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Wed Oct 15 10:04:25 2008 UTC (13 months, 2 weeks ago) by marktheunissen
Branch: MAIN
CVS Tags: DRUPAL-6--1-4, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-3, HEAD
Branch point for: DRUPAL-6--1, DRUPAL-6--2
File MIME type: text/x-php
first commit of slider module
1 <?php
2 // $Id$
3
4 /**
5 * @file slider.tpl.php
6 * Default output for a slider node.
7 */
8
9 ?>
10 <?php if ($valid_slider): ?>
11
12 <div id="sliderwrapper">
13 <div id="slider">
14
15 <?php if ($tabs_position): ?>
16 <div class="scroll">
17 <div class="scrollContainer">
18 <?php print $slider_content_formatted ?>
19 </div>
20 </div>
21 <?php print $tabs_formatted ?>
22
23 <?php else: ?>
24 <?php print $tabs_formatted ?>
25 <div class="scroll">
26 <div class="scrollContainer">
27 <?php print $slider_content_formatted ?>
28 </div>
29 </div>
30
31 <?php endif; ?>
32
33 <div class="clear-block"></div>
34 </div>
35 </div>
36
37 <?php else: ?>
38
39 <div id="sliderwrapper">
40 <?php print t('An error has occurred while trying to create this slider.') ?>
41 </div>
42
43 <?php endif; ?>

  ViewVC Help
Powered by ViewVC 1.1.2