Whole Edit/Dashboard is missing

Permalink
Hello I'm new to concrete 5 and I am trying to create a template from a static site. I am attempting to make my template following the guidelines given but when I uploaded the template the top bar that lets you make edits is missing. In its place is a white stripe. Can some one please guide me in the right direction? Is there some thing I had placed in the wrong location? I have attached a copy of my template file the view and the default and css files

Thank you :)

4 Attachments

 
LucasAnderson replied on at Permalink Reply
LucasAnderson
You're loading jQuery twice. Concrete5 loads it by default, so your template can't have it in there or there is a conflict.

Remove the line that calls the jQuery script.
E35 replied on at Permalink Reply
I tried removing part of it, and the dashboard appeared but the edit and add page buttons did not work and the slide show stopped working also. :( Am I removing it from the wrong location?

Thanks for the prompt response :)
LucasAnderson replied on at Permalink Reply
LucasAnderson
Try moving:

<link href="<?php echo $this->getThemePath(); ?>/css/reset.css" rel="stylesheet" type="text/css" />
    <link href="<?php echo $this->getThemePath(); ?>/css/style.css" rel="stylesheet" type="text/css" />


somewhere above

<?php 
   Loader::element('header_required'); 
?>
E35 replied on at Permalink Reply
I have my toolbar working now, I had to place the

<?php
Loader::element('header_required');
?>

under the CSS and the Java-Script. So I was able to make edits and add other pages but I'm still stuck with the one issue of the gallery not working.

Thanks for the help. :)