Re: website template compatible with django

2007-08-03 Thread Kenneth Gonsalves


On 03-Aug-07, at 2:44 PM, Chris Hoeppner wrote:

> Oh and please don't call Template Monster "professional"... Please...

thank god they dont offer free django templates

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: website template compatible with django

2007-08-03 Thread Chris Hoeppner

Oh and please don't call Template Monster "professional"... Please...

2007/8/3, Chris Hoeppner <[EMAIL PROTECTED]>:
> Though you would still need to adapt them to be used with Django.
> IMHO, there's not much sense in publishing "Django templates" since
> every app is completely different, and this kills the
> "plug-and-play-ability" of any template.
>
> 2007/8/3, Kenneth Gonsalves <[EMAIL PROTECTED]>:
> >
> >
> > On 01-Aug-07, at 12:32 PM, Ben wrote:
> >
> > > I am a total Django newbie.  Hence the probably silly questions:
> > > There are professional-looking website templates for sale in several
> > > places (templatemonster, etc).
> > > Can those be used easily with Django ?
> >
> > yes
> >
> > > Do they need to be designed specifically for Django ?
> >
> > no
> >
> > > Do you know of
> > > any vendor that does it ?
> > > If not, what to look for in a template order to make sure it will be
> > > relatively easy to use with Django ?
> >
> > the template part is completely independant of the rest of django -
> > any template that follows the principles of good HTML design using
> > css, javascript, ajax or whatever will work with Django - even bad
> > design will work. The more modular the design of the template, the
> > better - but again that is not django specific.
> >
> > --
> >
> > regards
> > kg
> > http://lawgon.livejournal.com
> > http://nrcfosshelpline.in/web/
> >
> >
> >
> > > >
> >
>
>
> --
> Best Regards,
> Chris Hoeppner - www.pixware.org // My weblog
>


-- 
Best Regards,
Chris Hoeppner - www.pixware.org // My weblog

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: website template compatible with django

2007-08-03 Thread Chris Hoeppner

Though you would still need to adapt them to be used with Django.
IMHO, there's not much sense in publishing "Django templates" since
every app is completely different, and this kills the
"plug-and-play-ability" of any template.

2007/8/3, Kenneth Gonsalves <[EMAIL PROTECTED]>:
>
>
> On 01-Aug-07, at 12:32 PM, Ben wrote:
>
> > I am a total Django newbie.  Hence the probably silly questions:
> > There are professional-looking website templates for sale in several
> > places (templatemonster, etc).
> > Can those be used easily with Django ?
>
> yes
>
> > Do they need to be designed specifically for Django ?
>
> no
>
> > Do you know of
> > any vendor that does it ?
> > If not, what to look for in a template order to make sure it will be
> > relatively easy to use with Django ?
>
> the template part is completely independant of the rest of django -
> any template that follows the principles of good HTML design using
> css, javascript, ajax or whatever will work with Django - even bad
> design will work. The more modular the design of the template, the
> better - but again that is not django specific.
>
> --
>
> regards
> kg
> http://lawgon.livejournal.com
> http://nrcfosshelpline.in/web/
>
>
>
> >
>


-- 
Best Regards,
Chris Hoeppner - www.pixware.org // My weblog

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: website template compatible with django

2007-08-02 Thread Kenneth Gonsalves


On 01-Aug-07, at 12:32 PM, Ben wrote:

> I am a total Django newbie.  Hence the probably silly questions:
> There are professional-looking website templates for sale in several
> places (templatemonster, etc).
> Can those be used easily with Django ?

yes

> Do they need to be designed specifically for Django ?

no

> Do you know of
> any vendor that does it ?
> If not, what to look for in a template order to make sure it will be
> relatively easy to use with Django ?

the template part is completely independant of the rest of django -  
any template that follows the principles of good HTML design using  
css, javascript, ajax or whatever will work with Django - even bad  
design will work. The more modular the design of the template, the  
better - but again that is not django specific.

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: website template compatible with django

2007-08-01 Thread Tim Chase

> There are professional-looking website templates for sale in several
> places (templatemonster, etc).
> Can those be used easily with Django ?
> Do they need to be designed specifically for Django ? 

Django's templates are considerably more friendly towards such 
uses than many templating languages are (a coworker was recently 
lamenting the annoyances of doing ASP templates that don't play 
well in HTML WYSIWTF[*] editors).  Django's templates are pretty 
much raw HTML with a few extra pseudo-tags (in curly-braces) for 
presentation logic.  Thus, you should be able to use pretty much 
any HTML template you want and then just insert the django tags 
to adjust them as desired.

This assumes a small modicum of competency in HTML to know where 
to make those changes, but it should be pretty easy.

-tim

([*] I love this...from a recent UserFriendly.org cartoon)


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: website template compatible with django

2007-08-01 Thread Margaret



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



website template compatible with django

2007-08-01 Thread Ben

Hi all,
I am a total Django newbie.  Hence the probably silly questions:
There are professional-looking website templates for sale in several
places (templatemonster, etc).
Can those be used easily with Django ?
Do they need to be designed specifically for Django ?  Do you know of
any vendor that does it ?
If not, what to look for in a template order to make sure it will be
relatively easy to use with Django ?
Thanks a lot!


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---