example of template, like a cmsmadesimple.org website

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
hrajko

example of template, like a cmsmadesimple.org website

Post by hrajko »

for first, sorry for english

where I find example or manual for build template of site, like www.cmsmadesimple.org?

thanx a lot.
roman
Forum Members
Forum Members
Posts: 77
Joined: Thu May 12, 2005 9:38 am

Re: example of template, like a cmsmadesimple.org website

Post by roman »

This page is builted in CSS design, but in tables can by:

Code: Select all

<__html>
<head>
  <title>{title}</title>
</head>
</__body>
<table>
  <tr>
    <td colspan="3">
      <img src="images/logo.gif">
    </td>
  <tr>
  <tr>
    <td>{menu} ... some icons ... </td>
    <td>{content}</td>
    <td>{cms_module module="news" number="3" makerssbutton="true"}</td>
  </tr>
  <tr>
    <td colspan="3"> ...some informations, ...links for download... </td>
  </tr>
</table>
<__body>
It's not CSS but for start... btw in basic installation of CMS you have 2 designs, you can learn from admin panel on theses examples, how to create another. :)
hrajko

Re: example of template, like a cmsmadesimple.org website

Post by hrajko »

thanx, i'll trie it
roman
Forum Members
Forum Members
Posts: 77
Joined: Thu May 12, 2005 9:38 am

Re: example of template, like a cmsmadesimple.org website

Post by roman »

sorry, that's not all, instead {menu} you must use some menu /was only simplified/:

Code: Select all

{cms_module module='phplayers'},
{cms_module module='cssmenu'},
{bulletmenu},
{cms_module module='phplayers'}
Complet list of parameters find in your admin part:
/admin/listmodules.php
/admin/listtags.php
Locked

Return to “CMSMS Core”