| 294 | | </body> |
| | 294 | <codeblock id="layouts-full-html-example"> |
| | 295 | <html> |
| | 296 | <head> |
| | 297 | <title>My website</title> |
| | 298 | </head> |
| | 299 | <body> |
| | 300 | <div class="navigation"> |
| | 301 | <!--- navigation stuff here --> |
| | 302 | </div> |
| | 303 | <div class="content"> |
| | 304 | <h1>My content page</h1> |
| | 305 | <p>Blah blah</p> |
| | 306 | </div> |
| | 307 | </body> |
| | 308 | </codeblock> |
| | 309 | <codeblock id="layouts-classic-html-header"> |
| | 310 | <html> |
| | 311 | <head> |
| | 312 | <title>My website</title> |
| | 313 | </head> |
| | 314 | <body> |
| | 315 | <div class="navigation"> |
| | 316 | <!--- navigation stuff here --> |
| | 317 | </div> |
| | 318 | <div class="content"> |
| | 319 | </codeblock> |
| | 320 | <codeblock id="layouts-classic-html-page"> |
| | 321 | <?php require_once 'header.inc.php'; ?> |
| | 322 | <h1>My content page</h1> |
| | 323 | <p>Blah blah</p> |
| | 324 | <?php require_once 'footer.inc.php'; ?> |
| | 325 | </codeblock> |
| | 326 | <codeblock id="layouts-classic-html-footer"> |
| | 327 | </div> |
| | 328 | </body> |
| | 329 | </codeblock> |
| | 330 | <codeblock id="layouts-agavi-html-decorator"> |
| | 331 | <html> |
| | 332 | <head> |
| | 333 | <title>My website</title> |
| | 334 | <body> |
| | 335 | <div class="navigation"> |
| | 336 | <!--- navigation stuff here --> |
| | 337 | </div> |
| | 338 | <div class="content"> |
| | 339 | <?php print $inner; ?> |
| | 340 | </div> |
| | 341 | </body> |
| | 342 | </codeblock> |
| | 343 | <codeblock id="layouts-agavi-html-view-template"> |
| | 344 | <h1>My content page</h1> |
| | 345 | <p>Blah blah</p></codeblock> |
| | 346 | </body> |