Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Martin Mädler
Hi, thank you all. I really like the TS conditions idea. However, I would feel better if I could have the meta tag: meta http-equiv=X-UA-Compatible content=IE=edge,chrome=1 right after the charset definition as it is recommended by the template designers of HTML5 Boilerplate. Do you have

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Martin Mädler
Am 02.03.2011 14:59, schrieb Martin Mädler: However, I would feel better if I could have the meta tag: meta http-equiv=X-UA-Compatible content=IE=edge,chrome=1 right after the charset definition as it is recommended by the template designers of HTML5 Boilerplate. Do you have any ideas on how

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Enrique Moreno Tent
:) page = PAGE page.headerData = COA page.headerData.10 = TEXT page.headerData.10.value = meta http-equiv=X-UA-Compatible content=IE=Edge;chrome=1 / On Wed, Mar 2, 2011 at 1:59 PM, Martin Mädler martin.maed...@rwth-aachen.de wrote: Hi, thank you all. I really like the TS conditions idea.

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Martin Mädler
Am 02.03.2011 15:36, schrieb Enrique Moreno Tent: :) page = PAGE page.headerData = COA page.headerData.10 = TEXT page.headerData.10.value =meta http-equiv=X-UA-Compatible content=IE=Edge;chrome=1 / Thanks Enrique, but that way the meta tag comes after the title tag. As mentioned earlier I want

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Enrique Moreno Tent
I didnt know this! Now we have the same problem... :S On Wed, Mar 2, 2011 at 4:37 PM, Martin Mädler martin.maed...@rwth-aachen.de wrote: Am 02.03.2011 15:36, schrieb Enrique Moreno Tent: :) page = PAGE page.headerData = COA page.headerData.10 = TEXT page.headerData.10.value =meta

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Martin Mädler
Am 02.03.2011 18:49, schrieb Enrique Moreno Tent: page.headTag( head meta http-equiv=X-UA-Compatible content=IE=edge,chrome=1 ) Thanks! Works like a charm :) ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Enrique Moreno Tent
Now I would like to include the elegant: meta charset=utf-8 with this method, but I cant seem to be able to get rid of typo3 ugly: meta http-equiv=Content-Type content=text/html; charset=utf-8 Any idea there? On Wed, Mar 2, 2011 at 6:42 PM, Martin Mädler martin.maed...@rwth-aachen.de wrote:

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Martin Mädler
Am 02.03.2011 19:58, schrieb Enrique Moreno Tent: Now I would like to include the elegant: meta charset=utf-8 with this method, but I cant seem to be able to get rid of typo3 ugly: meta http-equiv=Content-Type content=text/html; charset=utf-8 Any idea there? I mentioned it earlier in this

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-02 Thread Enrique Moreno Tent
Aw, man. I need an extension for such a simple thing? Not worth it, I think... :( But thanks! On Wed, Mar 2, 2011 at 11:24 PM, Martin Mädler martin.maed...@rwth-aachen.de wrote: Am 02.03.2011 19:58, schrieb Enrique Moreno Tent: Now I would like to include the elegant: meta charset=utf-8

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-01 Thread Victor Livakovsky
Hi, Martin. !--[if lt IE 7 ] html class=no-js ie6 lang=en ![endif]-- !--[if IE 7 ] html class=no-js ie7 lang=en ![endif]-- !--[if IE 8 ] html class=no-js ie8 lang=en ![endif]-- !--[if (gte IE 9)|!(IE)]!-- html class=no-js lang=en !--![endif]-- Any ideas on how to do this via Typoscript or

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-01 Thread Enrique Moreno Tent
I did this: doctype( !doctype html !--[if lt IE 7 ] html lang=en-us class=no-js ie6 ![endif]-- !--[if IE 7 ]html lang=en-us class=no-js ie7 ![endif]-- !--[if IE 8 ]html lang=en-us class=no-js ie8 ![endif]-- !--[if IE 9 ]html lang=en-us class=no-js ie9 ![endif]--