Skip to content

Instantly share code, notes, and snippets.

@RaymondBenc
Created July 28, 2017 13:17
Show Gist options
  • Save RaymondBenc/db8bc1aaf171344630b3d9ca5ea80d60 to your computer and use it in GitHub Desktop.
Save RaymondBenc/db8bc1aaf171344630b3d9ca5ea80d60 to your computer and use it in GitHub Desktop.
Basic default.tpl for SocialEngine
<header id="se-header">
<!-- Site logo -->
<?php echo $this->logo; ?>
<!-- Main Search widget -->
<?php echo $this->search; ?>
<!-- Notification mini-menu -->
<?php echo $this->notify; ?>
<!-- PHP if statement to check if a user is logged in. -->
<?php if ($this->viewer->getIdentity()) { ?>
<?php } ?>
</header>
<nav>
<!-- Main navigation menu -->
<?php echo $this->menu; ?>
</nav>
<main>
<!-- Output the main content -->
<?php echo $this->content; ?>
</main>
<footer>
<!-- Footer menu and social links -->
<?php echo $this->footer; ?>
</footer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment