Global Sidebar

Permalink
I've been asked to work on a Concrete 5 site and I'm having trouble understanding something. I'm used to WordPress and the "sidebar" settings are global. I cannot find a global sidebar setting in the Concrete 5 site that I'm working on, can anyone please point me in the right direction?

 
Kurtopsy replied on at Permalink Reply
Kurtopsy
You can make your sidebar global by making your area global.
<aside>
<?php 
   $a = new GlobalArea('Area Name');
   $a->display();
?>
</aside>