Heres some stuff that smarty can help with to make your site a bit more polished.
On new and updated block replace <%$new_links[i].description%> with :
this stops huge descriptions, and lets you limit how much space is taken up on your main page. It trims to 300 characters, then places a [more] link underneathCode:<%$new_links[i].description|truncate:300%><a href="<%$new_links[i].detail_page_url%>" id="link_<%$new_links[i].link_id%>"> [more] </a>
Dont just use <%$title%> use :
Stops people DOING ALL CAPS or all lower case. Correctly Capitalize Your TitleCode:<%$title|lower|capitalize%>
for some reason you get the <br> tags in descriptions come out as "<br>" instead of actual line breaks on the front page. Solve it with :
<%$variable|strip_tags%>
anyone got any other neat smarty tips?



very nice you realy inspire me!
