[Date Index][Thread Index]
[Date Prev][Date Next][Thread Prev][Thread Next]
Using isolatin with templates
- From: "Darko Krizic" <nospam@thanx>
 
- Date: Wed, 22 Sep 1999 01:52:56 +0200
 
I have a template 
and want to use the container isolatin.
 
My template looks 
like this
 
...
#use 
wml::fmt::isolatin
...
<<BODY>>
...
..BODY>>
<isolatin>
 
As you can see the 
container is never closed since adding a </isolatin> at the end will be 
included before the page itself. Currently is do simething like 
this
 
...
#use 
wml::fmtt::isolatin
...
<isolatin>
<<BODY>>
</isolatin>
...
..BODY>>
 
Now the body section 
is isolatin-ed, but not the (navigational) rest.
 
Any 
ideas?
 
...darko