Simpler way of making tutorial

Use GitHub to post feature requests for phpwcms.
Locked
bobd314
Posts: 44
Joined: Tue 24. Feb 2004, 04:19

Simpler way of making tutorial

Post by bobd314 »

Ok it would be nice/nicer if there was a way I just just put in all the HTML For my page.. have just the whole layout in one page not having to split it up into like header and stuff, just have everything in the same place, like on one page have

Code: Select all

<meta http-equiv="Content-Language" content="en-us">
<p align="center">THIS IS THE HEADER</p>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
  <tr>
    <td width="33%">{MENU}</td>
    <td width="33%">{CONTENT}</td>
    <td width="34%">{SOME OTHER CRAP}</td>
  </tr>
</table>
<p align="center">THIS IS THE FOOTER</p>
and just have all that in one space instead of having to split it up.. that's my idea, it just seems easier to me.
Jan212
Posts: 859
Joined: Wed 28. Jan 2004, 21:38
Location: Solingen
Contact:

Post by Jan212 »

you can allready do this - put the whole code between <body></body> in the backends template main block and checkout default page rendering under -> Layout (right checkbox) - like

Code: Select all

<p align="center">THIS IS THE HEADER</p> 
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> 
  <tr> 
    <td width="33%">{NAV_LIST_TOP}</td> 
    <td width="33%">{CONTENT}</td> 
    <td width="34%">{ALT_E_FRAU}</td> 
  </tr> 
</table> 
<p align="center">THIS IS THE FOOTER</p>
Sinse is wicked.
Regards/ Grüsse/ Groetjes - JAN212
------------------------------------------------
null212 - Büro für Kommunikation und Design
------------------------------------------------
Lyrikfetzen des Tages
1. Ist der Quelltext auch valide fragt Herr Müller ganz perfide.
2. Wat is dat een lekker ding.
3. Wer Vision hat soll zum Arzt gehen.
------------------------------------------------
bobd314
Posts: 44
Joined: Tue 24. Feb 2004, 04:19

Post by bobd314 »

Hmm I was thinking about just doing something where I make all boxes but main like 0 and then use just that. I hadn't tried it, was just wondering.
bobd314
Posts: 44
Joined: Tue 24. Feb 2004, 04:19

Post by bobd314 »

Why the hell did I call it bla bla bla tutorial.. I ment template.
Locked