cms/drupal/themes/seven/page.tpl.php
changeset 541 e756a8c72c3d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/drupal/themes/seven/page.tpl.php	Fri Sep 08 12:04:06 2017 +0200
@@ -0,0 +1,35 @@
+
+  <div id="branding" class="clearfix">
+    <?php print $breadcrumb; ?>
+    <?php print render($title_prefix); ?>
+    <?php if ($title): ?>
+      <h1 class="page-title"><?php print $title; ?></h1>
+    <?php endif; ?>
+    <?php print render($title_suffix); ?>
+    <?php print render($primary_local_tasks); ?>
+  </div>
+
+  <div id="page">
+    <?php if ($secondary_local_tasks): ?>
+      <div class="tabs-secondary clearfix"><?php print render($secondary_local_tasks); ?></div>
+    <?php endif; ?>
+
+    <div id="content" class="clearfix">
+      <div class="element-invisible"><a id="main-content"></a></div>
+      <?php if ($messages): ?>
+        <div id="console" class="clearfix"><?php print $messages; ?></div>
+      <?php endif; ?>
+      <?php if ($page['help']): ?>
+        <div id="help">
+          <?php print render($page['help']); ?>
+        </div>
+      <?php endif; ?>
+      <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
+      <?php print render($page['content']); ?>
+    </div>
+
+    <div id="footer">
+      <?php print $feed_icons; ?>
+    </div>
+
+  </div>