Re: {Disarmed} Re: {Disarmed} Re: [web2py] Re: web2py and SEO

2017-06-16 Thread rajjmatthur
I have this in index.html before {{extend 'layout.html'}} {{ response.title='My Site Name' response.meta.keywords='web2py web development Denver' response.meta.description='my description' response.meta.author='my name' }} Most of the content of the page is in layout.html #---

{Disarmed} Re: {Disarmed} Re: [web2py] Re: web2py and SEO

2017-06-15 Thread Carlos Cesar Caballero Díaz
Hi, it seems to be working in my apps, can you share how are you using it, and the web2py version? Greetings. El 14/06/17 a las 15:21, rajjmatt...@gmail.com escribió: Did anyone had any success on inserting metadata on layout or SEO ( http://www.web2pyslices.com/slice/show/2048/simple-seo) pl

Re: [web2py] Re: web2py and SEO

2017-06-14 Thread rajjmatthur
Did anyone had any success on inserting metadata on layout or SEO ( http://www.web2pyslices.com/slice/show/2048/simple-seo) plugins? It doesn't seem to work at all. On Friday, January 3, 2014 at 9:25:14 AM UTC-5, Gael Princivalle wrote: > > Hi Bruno. > > In a same page where you make translatio

Re: [web2py] Re: web2py and SEO

2014-01-03 Thread Gael Princivalle
Hi Bruno. In a same page where you make translations, how can you manage meta informations for all languages ? With a if T.accepted_language you can set different values, but when you give your site to a tool like that : http://www.seoutility.com/it/tools/google/sitemap_generator.aspx it see onl

[web2py] Re: web2py and SEO

2010-08-23 Thread puercoespin
Sorry, but the first link don't work. Insteand, http://www.google.com/support/webmasters/ and, in "help resources" can found the google doc in "search engine optimization". There are useful articles and videos SEO related too. Regards. On 22 ago, 14:53, puercoespin wrote: > On 12 ago, 00:23,

[web2py] Re: web2py and SEO

2010-08-22 Thread puercoespin
On 12 ago, 00:23, mdipierro wrote: > Could you provide a list of features you would like to see? > > Massimo > > On Aug 11, 4:52 pm, puercoespin > wrote: > > First of all, I want to indicate that I am not an expert in SEO, not in Python not in Web2py. In fact, I am not expert in anything :)

[web2py] Re: web2py and SEO

2010-08-12 Thread mdmcginn
Many famous SEO ranking factors, such as meta-keywords, are no longer very important. Site architecture and URL structure (permalinks, for example) have importance. Sitemaps, especially for huge sites, have minimal importance. You're okay as long as Google can figure out how to crawl your whole sit

[web2py] Re: web2py and SEO

2010-08-11 Thread mdipierro
Could you provide a list of features you would like to see? Massimo On Aug 11, 4:52 pm, puercoespin wrote: > As Bruno Rocha points, a sitemap is very, very importan for SEO. And > other frameworks are adding tools for generating those sitemaps, for > example, Django. > > > The sitemap frame

[web2py] Re: web2py and SEO

2010-08-11 Thread mdipierro
No objection but I think this belongs to a plugin. On Aug 11, 4:52 pm, puercoespin wrote: > As Bruno Rocha points, a sitemap is very, very importan for SEO. And > other frameworks are adding tools for generating those sitemaps, for > example, Django. > > > The sitemap framework¶ > Django com

[web2py] Re: web2py and SEO

2010-08-11 Thread puercoespin
As Bruno Rocha points, a sitemap is very, very importan for SEO. And other frameworks are adding tools for generating those sitemaps, for example, Django. The sitemap framework¶ Django comes with a high-level sitemap-generating framework that makes creating sitemap XML files easy. extra

[web2py] Re: web2py and SEO

2010-08-06 Thread mdipierro
They can be even if you define them in a model but ok, you can define them in a view but must come before the extend. {{ response.title='My Product view' response.meta.keywords='phones,calls,smartphone' response.meta.description='This is a phone seller site made with web2py' response.meta.author='

Re: [web2py] Re: web2py and SEO

2010-08-06 Thread Bruno Rocha
2010/8/6 mdipierro > You should this in a model, before the view is executed: > > response.title='My Product view' > response.meta.keywords='phones,calls,smartphone' > response.meta.description='This is a phone seller site made with > web2py' > response.meta.author='me' > > The sitemap cannot be

[web2py] Re: web2py and SEO

2010-08-06 Thread mdipierro
You should this in a model, before the view is executed: response.title='My Product view' response.meta.keywords='phones,calls,smartphone' response.meta.description='This is a phone seller site made with web2py' response.meta.author='me' The sitemap cannot be accomplished by a helper. It needs a

Re: [web2py] Re: web2py and SEO

2010-08-06 Thread Bruno Rocha
List of Best and Worst practices: http://www.webconfs.com/15-minute-seo.php 2010/8/6 Bruno Rocha > I believe that a simple helper, to be called in any view or controller is > enought, imagine: > > view: > > {{extend 'layout.html'}} > > {{SEO(title='My Product view', > > keywords='phones,c

Re: [web2py] Re: web2py and SEO

2010-08-06 Thread Bruno Rocha
I believe that a simple helper, to be called in any view or controller is enought, imagine: view: {{extend 'layout.html'}} {{SEO(title='My Product view', keywords='phones,calls,smartphone', description='This is a phone seller site made with web2py', author='me', sitemap=[

Re: [web2py] Re: web2py and SEO

2010-08-06 Thread Bruno Rocha
SEO is basically done through: page title (response.meta.title) page keywords ( response.meta.keywords) page description ( response.meta.description) plus: the robots.txt file under website root directory, good practices for creating links and inserting images, Semantic html markup ( I mean alway

[web2py] Re: web2py and SEO

2010-08-06 Thread mdipierro
web2py does not care. I do not think there is any difference between frameworks about this. The issue how you use them. web2py provides response.meta that combined with the default layout allows you to set response.meta.keywords response.meta.description response.meta.author If you have recommen