Missing the C5 Admin Bar and Editable Content

Permalink 2 users found helpful
Hello, I'm at a loss here. I've watched the videos on creating templates, gone through the documents about designing, and still cannot figure out what is going on. I installed a fresh copy of Concrete 5 to my server. I was able to see the Admin bar and Edit the content just fine with the default greek_yogurt theme. However, when I directly copy the all of the header code from the greek_yogurt theme (or copy line for line what the documentation tells me to do) in my new template, the Admin bar disappears and I don't get the red dotted box anymore showing that it is an editable region. It IS however pulling in the data from the CMS (please see attached screenshot).

As you can see from the code below, it is not a very complex page at all, so I just don't see what is breaking this functionality.

The URL for the page ishttp://www.sunsetempireband.com...

<?php   defined('C5_EXECUTE') or die("Access Denied."); ?>
<!DOCTYPE html>
<html lang="<?php echo LANGUAGE?>">
<head>
<?php   Loader::element('header_required'); ?>
<link rel="stylesheet" href="<?php  echo $this->getThemePath(); ?>/css/reset.css" />
<!-- <link rel="stylesheet" href="<?php  echo $this->getThemePath(); ?>/css/text.css" /> --!>
<link rel="stylesheet" href="<?php  echo $this->getThemePath(); ?>/css/960.css" />
<link rel="stylesheet" href="<?php  echo $this->getThemePath(); ?>/css/style.css" />
<link type="text/css" rel="stylesheet" href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz">
<link type="text/css" rel="stylesheet" href="http://fonts.googleapis.com/css?family=Oswald">
</head>
<body>
   <div id="main_wrapper">
      <div id="header" class="container_12">

1 Attachment

richgable
 
MysteriousCleon replied on at Permalink Best Answer Reply
MysteriousCleon
Admin Bar is in footer, not in header, so you need template ending like that:
<?php Loader::element('footer_required'); ?>
</body>
</html>
richgable replied on at Permalink Reply
richgable
WOW! Thanks so much for the very quick reply. That was it. Feeling like a moron. Thanks again!