1
|
<?php
|
2
|
|
3
|
?>
|
4
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
5
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">
|
7
|
<head>
|
8
|
<?php print $head; ?>
|
9
|
<title><?php print $head_title; ?></title>
|
10
|
<?php print $styles; ?>
|
11
|
<?php print $scripts; ?>
|
12
|
</head>
|
13
|
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
|
14
|
|
15
|
<div>
|
16
|
<div id="header">
|
17
|
<div id="header-wrapper">
|
18
|
<?php if ($logo): ?>
|
19
|
<div id="logo-wrapper">
|
20
|
<div class="logo">
|
21
|
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a>
|
22
|
</div>
|
23
|
</div>
|
24
|
<?php endif; ?>
|
25
|
<?php if ($site_name || $site_slogan) : ?>
|
26
|
<div id="branding-wrapper">
|
27
|
<?php if ($site_name) : ?>
|
28
|
<h2 class="site-name"><a href="<?php print $base_path ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a></h2>
|
29
|
<?php endif; ?>
|
30
|
<?php if ($site_slogan) : ?>
|
31
|
<div class='site-slogan'><?php print $site_slogan; ?></div>
|
32
|
<?php endif; ?>
|
33
|
</div>
|
34
|
<?php endif; ?>
|
35
|
|
36
|
<?php if ($feed_icons): ?>
|
37
|
<div class="feed-wrapper">
|
38
|
<?php print $feed_icons; ?>
|
39
|
</div>
|
40
|
<?php endif; ?>
|
41
|
|
42
|
<?php if (!$is_admin): ?>
|
43
|
<div id="authorize">
|
44
|
<ul><?php global $user; if ($user->uid != 0) { print '<li class="first">' .t('Logged in as '). '<a href="' .url('user/'.$user->uid). '">' .$user->name. '</a></li>'; print '<li><a href="' .url('user/logout'). '">' .t('Logout'). '</a></li>'; } else { print '<li class="first"><a href="' .url('user'). '">' .t('Login'). '</a></li>'; print '<li><a href="' .url('user/register'). '">' .t('Register'). '</a></li>'; } ?></ul>
|
45
|
</div>
|
46
|
<?php endif; ?>
|
47
|
|
48
|
</div>
|
49
|
</div>
|
50
|
<div style="clear:both"></div>
|
51
|
|
52
|
<div id="menu">
|
53
|
<div id="rounded-menu-left"></div>
|
54
|
<div id="rounded-menu-right"></div>
|
55
|
</div>
|
56
|
<div style="clear:both"></div>
|
57
|
|
58
|
<div id="slideshow-wrapper">
|
59
|
<div class="slideshow-inner">
|
60
|
<div id="slideshow-preface">
|
61
|
<?php if ($title): ?>
|
62
|
<div id="preface">
|
63
|
<h1 class="title" id="page-title">
|
64
|
<?php print $title; ?>
|
65
|
</h1>
|
66
|
</div>
|
67
|
<?php endif; ?>
|
68
|
</div>
|
69
|
<?php if ($content): ?><div id="slideshow-bottom">
|
70
|
<div id="content-maintenance"><?php print $content; ?></div></div><?php endif; ?>
|
71
|
<div class="slideshow">
|
72
|
<img src="<?php print $base_path . $directory; ?>/images/slideshows/sea.jpg" width="950" height="355" alt="slideshow 1"/>
|
73
|
<img src="<?php print $base_path . $directory; ?>/images/slideshows/noon.jpg" width="950" height="355" alt="slideshow 2"/>
|
74
|
<img src="<?php print $base_path . $directory; ?>/images/slideshows/snow.jpg" width="950" height="355" alt="slideshow 3"/>
|
75
|
</div>
|
76
|
</div>
|
77
|
</div>
|
78
|
|
79
|
<div style="clear:both"></div>
|
80
|
<?php if ($show_messages) { print $messages; }; ?>
|
81
|
|
82
|
<div style="clear:both"></div>
|
83
|
<div id="notice"><p>Theme by <a href="http://www.danetsoft.com">Danetsoft</a> and <a href="http://www.danpros.com">Danang Probo Sayekti</a> inspired by <a href="http://www.maksimer.no">Maksimer</a></p></div>
|
84
|
</div>
|
85
|
|
86
|
</body>
|
87
|
</html>
|