Quote:
Originally Posted by Unregistered
I like this template:
http://www.oswd.org/design/preview/id/3131
can this be used (of course I would taylor the text to my needs).
And how how easy is it to incorporate 68 into this template... ?
Other classified programs... seemed to not handle this...
thoughts?
|
Ease of using a template not designed for 68c will depend on your understanding of CSS and html really.
When you use smarty templates like 68c does what happens is the underlying php scripts process input and assigns the php variables to smarty variables and then the script displays the appropriate template.
The smarty template is nothing more than an HTML web page that has smarty variables in it in place of static text.
for example any given static web page may have a site title that looke like this...
HTML Code:
<title>My Website</title>
where as a smarty template page would have something like this....
HTML Code:
<title>{$title}</title>
{$title} would be a variable passed to the template from the underlying script.
Here is a template tutorial I wrote which should give you an idea of what it takes to make a template from the ground up.
http://www.68classifieds.com/forums/...read.php?t=300