3 $this->
data[
'header'] = $this->t(
'{core:frontpage:page_title}');
4 $this->includeAtTemplateBase(
'includes/header.php');
9 if ($this->
data[
'isadmin']) {
10 echo
'<p class="float-r youareadmin">' . $this->t(
'{core:frontpage:loggedin_as_admin}') .
'</p>';
12 echo
'<p class="float-r youareadmin"><a href="' . $this->
data[
'loginurl'] .
'">' . $this->t(
'{core:frontpage:login_as_admin}') .
'</a></p>';
18 <!-- <h2><?php echo $this->t(
'{core:frontpage:useful_links_header}'); ?></h2> -->
21 foreach ($this->
data[
'links_auth'] AS $link) {
22 echo
'<li><a href="' . htmlspecialchars($link[
'href']) .
'">' . $this->t($link[
'text']) .
'</a>';
23 if (isset($link[
'deprecated']) && $link[
'deprecated']) {
24 echo
' <b>' . $this->t(
'{core:frontpage:deprecated}') .
'</b>';
34 <?php $this->includeAtTemplateBase(
'includes/footer.php');