Friday 29 September 2006 12:11:55 am
I've set up a site that has two languages. I have my override files for the main language in design/plain, and the override files for the secondary language in design/en. This works fine, but I dont really like it - because the files are identical! The small differences between the files, I sort out by this code.
{if eq($site.design,"plain")}
{* main content *}
{elseif eq($site.design,"en")}
{* secondary content *}
{/if}
So my question is; How can I do the same using only one set of files? eZp 3.6.8 running at SunOS 5.10
|