You are here

linkit-dashboard.tpl.php in Linkit 6

Same filename and directory in other branches
  1. 7 linkit-dashboard.tpl.php
  2. 7.2 linkit-dashboard.tpl.php

Linkit dashboard template, controls the output in the popup

File

linkit-dashboard.tpl.php
View source
<?php

/**
 * @file
 * Linkit dashboard template, controls the output in the popup
 */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php

print $language->language;
?>" lang="<?php

print $language->language;
?>" dir="<?php

print $language->dir;
?>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>Linkit</title>
  <?php

print $head;
?>
  <?php

print $styles;
?>
  <?php

print $scripts;
?>
</head>

<body id="linkit">
  <?php

if (!empty($messages)) {
  print $messages;
}
?>
  <?php

if (!empty($help)) {
  print $help;
}
?>
  <div class="clear-block">
    <h1><?php

print t('Insert internal or external link');
?></h1>
    <?php

print $content;
?>
  </div>
</body>
</html>