CodeIgniter Forums
Template Question - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Template Question (/showthread.php?tid=45747)



Template Question - El Forum - 10-04-2011

[eluser]FREEZA[/eluser]
Hello,
i want to build a website and i have a question about the development.

I have 3 templates:

-header
-main ( content )
-footer


Header Template:
- lastLogins ( from a model, standard for all sides/ controllers )
- specific tags for meta ( on every side / controller i can change this tags)


Main Template:
Ready... here i can send data with:
Code:
$this->load->view('includes/template', $this->data);
at the end of a controller


Footer Template:
- Latest articles ( from model, standard for all sides/ controllers )



I can build this logic? Sad