source: branches/0.4/web/addons/job_monarch/dwoo/Dwoo/Adapters/CodeIgniter/views/dwoowelcome.tpl @ 755

Last change on this file since 755 was 755, checked in by ramonb, 11 years ago
  • add Dwoo
File size: 1.2 KB
Line 
1{extends "page.tpl"}
2
3{block "title"}
4Welcome to Dwoo-ed CodeIgniter
5{/block}
6
7{block "content"}
8<h1>Welcome to Dwoo-ed CodeIgniter!</h1>
9
10<p>The page you are looking at is being generated dynamically by <b>CodeIgniter</b> in combination with the 'Smarty-killer' <b>Dwoo</b> template engine.
11The page is rendered at {$itshowlate} by the Dwoo_compiler.</p>
12
13<p>If you would like to edit this page you'll find it located at:</p>
14<code>application/views/dwoowelcome.tpl</code>
15
16<p>The corresponding controller for this page is found at:</p>
17<code>application/controllers/dwoowelcome.php</code>
18
19<p>The library for Dwoo integration can be found at:</p>
20<code>application/libraries/Dwootemplate.php</code>
21
22<p>If you are exploring Dwoo for the very first time, you should start by reading the {anchor uri='http://dwoo.org/' title='Dwoo website'}.</p>
23<p>If you are exploring CodeIgniter for the very first time, you should start by reading the {anchor uri='http://codeigniter.com/user_guide/' title='User Guide'}.</p>
24
25<pre>
26<b>Usage</b>:
27$this->load->library('Dwootemplate');
28$this->dwootemplate->assign('test', 'test');
29$this->dwootemplate->display('dwoowelcome.tpl');
30</pre>
31{/block}
Note: See TracBrowser for help on using the repository browser.