
Html+PHP page.tpl.php - Drupal theme (chyba)
Zdravím dělám themu pro Drupál a mám tady page.tpl.php ale v řádku 55 mi to hází chybu a nevím proč... Používám DreamWeaver. Tady je Kód
<div id="page-wrapper">
<?php print render($page['page_top']); ?>
<header>
<?php print render($page['header']); ?>
<div id="logo">
<!--logo-->
<?php if ($logo): ?>
<a href="<?php print $base_path; ?>" title="<?php print t('Click to return to the Homepage'); ?>" />
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
<?php endif; ?>
</div>
<nav>
<div id=”main-menu”>
<?php print theme('lins_system_main_menu', array('links' => $main_menu, 'attributes' => array('class' => array('links', 'menu', 'inline', 'clearfix')))); ?>
</div>
</nav>
<header>
<div id="slideshow"> <?php print render($page['slideshow']); ?> </div>
<div id='social'>
<!—feed icons -->
<?php print render($page[‘social’]); ?>
</div>
<article>
<!-- breadcrumb trail -->
<?php if ($breadcrumb): ?>
<?php print $breadcrumb; ?>
<?php endif; ?>
<!-- title -->
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h1>
<?php print $title; ?>
</h1>
<?php endif; ?>
<?php print render($title_suffix); ?>
<!-- tabs -->
<?php if ($tabs): ?>
<?php print render($tabs); ?>
<!-- messages -->
<?php print $messages; ?>
<?php print render($page['content']); ?> </article>
<footer> <?php print render($page['footer']); ?> </footer>
<?php print render($page['page_bottom']); ?>
</div>