Created
October 28, 2014 14:46
-
-
Save mackensen/22d9aeec172d7f1f218e to your computer and use it in GitHub Desktop.
Revisions
-
mackensen created this gist
Oct 28, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ <?php /** * @file * Output for main HTML page content. */ if ($tabs = render($tabs)): ?> <div class="tabs"> <?php print $tabs; ?> </div> <?php endif; print $messages; print render($title_prefix); if ($title): endif; print render($title_suffix); print render($page['help']); if ($action_links): ?> <ul class="action-links"><?php print render($action_links); ?></ul> <?php endif; ?> <div id="main-content" class="clearfix"> <?php print render($page['content']); ?> </div> <?php print $feed_icons;