Hi every:<br>
I&#39;m trying to create my first theme and I want to use Twitter Bootstrap 
as CSS framework. So I create my <a href="http://comvivem.info">comvivem.info</a> file and wrote this 
inside:<br><br>name = Comvivem<br>description = Comvivem theme using Twitter Bootstrap as CSS framework<br>version = 1.0<br>core = 6.x<br>engine = phptemplate<br>stylesheets[all][] = /bootstrap/css/bootstrap.min.css<br>stylesheets[all][] = style.css<br>

stylesheets[all][] = /bootstrap/css/bootstrap-responsive.min.css<br>stylesheets[print][] = print.css<br><br>regions[sidebar_left] = Sidebar Left<br>regions[sidebar_right] = Sidebar Right<br>regions[header] = Header<br>regions[content] = Content<br>

regions[footer] = Footer<br>regions[footer_col_1] = Footer Column 1<br>regions[footer_col_2] = Footer Column 2<br>regions[footer_col_3] = Footer Column 3<br>regions[footer_col_4] = Footer Column 4<br><br>Then after I create a page and call it page.tpl.php and wrote this inside:<br>

<br>&lt;!DOCTYPE html&gt;<br>&lt;html lang=&quot;en&quot;&gt;<br>    &lt;head&gt;<br>        &lt;?print $head; ?&gt;<br>        &lt;title&gt;&lt;?php print $head_title; ?&gt;&lt;/title&gt;<br>        &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;<br>

        &lt;?php print $styles; ?&gt;<br>        &lt;?php print $scripts; ?&gt;<br><br>        &lt;!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --&gt;<br>        &lt;!--[if lt IE 9]&gt;<br>          &lt;script src=&quot;<a href="http://html5shim.googlecode.com/svn/trunk/html5.js">http://html5shim.googlecode.com/svn/trunk/html5.js</a>&quot;&gt;&lt;/script&gt;<br>

        &lt;![endif]--&gt;<br>    &lt;/head&gt;<br><br>    &lt;body&gt;<br><br>        &lt;div id=&quot;header&quot; class=&quot;container-fluid&quot;&gt;<br>            &lt;?php if ($header): ?&gt;<br>                &lt;?php print $header; ?&gt;<br>

            &lt;?php endif; ?&gt;<br>        &lt;/div&gt; &lt;!--./header--&gt;<br><br>        &lt;div id=&quot;page_content&quot; class=&quot;container-fluid&quot;&gt;<br>            &lt;div class=&quot;row-fluid&quot;&gt;<br>

                &lt;?php if ($sidebar_left &amp;&amp; !$sidebar_right) { ?&gt;<br>                    &lt;div id=&quot;sidebar-left&quot; class=&quot;span3&quot;&gt;<br>                        &lt;?php print $sidebar_left; ?&gt;<br>

                    &lt;/div&gt;&lt;!--/sidebar left--&gt;<br><br>                    &lt;div id=&quot;content-center&quot; class=&quot;span9&quot;&gt;<br>                        &lt;?php if (!drupal_is_front_page()): ?&gt;<br>

                            &lt;?php echo $content; ?&gt;<br>                        &lt;?php endif; ?&gt;<br>                    &lt;/div&gt;&lt;!--/content-center--&gt;<br><br>                &lt;?php } elseif ($sidebar_left &amp;&amp; $sidebar_right) { ?&gt;<br>

                    &lt;div id=&quot;sidebar-left&quot; class=&quot;span3&quot;&gt;<br>                        &lt;?php print $sidebar_left; ?&gt;<br>                    &lt;/div&gt;&lt;!--/sidebar left--&gt;<br><br>                    &lt;div id=&quot;content-center&quot; class=&quot;span6&quot;&gt;<br>

                        &lt;?php if (!drupal_is_front_page()): ?&gt;<br>                            &lt;?php echo $content; ?&gt;<br>                        &lt;?php endif; ?&gt;<br>                    &lt;/div&gt;&lt;!--/content-center--&gt;<br>

<br>                    &lt;div id=&quot;sidebar-right&quot; class=&quot;span3&quot;&gt;<br>                        &lt;?php print $sidebar_right; ?&gt;<br>                    &lt;/div&gt;&lt;!--/sidebar right--&gt;<br><br>

                &lt;?php } elseif (!$sidebar_left &amp;&amp; $sidebar_right) { ?&gt;<br><br>                    &lt;div id=&quot;content-center&quot; class=&quot;span6&quot;&gt;<br>                        &lt;?php if (!drupal_is_front_page()): ?&gt;<br>

                            &lt;?php echo $content; ?&gt;<br>                        &lt;?php endif; ?&gt;<br>                    &lt;/div&gt;&lt;!--/content-center--&gt;<br><br>                    &lt;div id=&quot;sidebar-right&quot; class=&quot;span3&quot;&gt;<br>

                        &lt;?php print $sidebar_right; ?&gt;<br>                    &lt;/div&gt;&lt;!--/sidebar right--&gt;<br><br>                &lt;?php } ?&gt;<br>            &lt;/div&gt;&lt;!--/row--&gt;<br>            &lt;hr&gt;<br>

            &lt;footer&gt;<br>                &lt;div class=&quot;row-fluid&quot;&gt;<br>                    &lt;?php if($footer_col_1): ?&gt;<br>                    &lt;div id=&quot;footer_col_1&quot; class=&quot;span4&quot;&gt;<br>

                        &lt;?php print $footer_col_1; ?&gt;<br>                    &lt;/div&gt;&lt;!--/footer_col_1--&gt;<br>                    &lt;?php endif; ?&gt;<br>                    &lt;?php if($footer_col_2): ?&gt;<br>

                    &lt;div id=&quot;footer_col_2&quot; class=&quot;span4&quot;&gt;<br>                        &lt;?php print $footer_col_2; ?&gt;<br>                    &lt;/div&gt;&lt;!--/footer_col_1--&gt;<br>                    &lt;?php endif; ?&gt;<br>

                    &lt;?php if($footer_col_3): ?&gt;<br>                    &lt;div id=&quot;footer_col_3&quot; class=&quot;span4&quot;&gt;<br>                        &lt;?php print $footer_col_3; ?&gt;<br>                    &lt;/div&gt;&lt;!--/footer_col_1--&gt;<br>

                    &lt;?php endif; ?&gt;<br>                    &lt;?php if($footer_col_4): ?&gt;<br>                    &lt;div id=&quot;footer_col_4&quot; class=&quot;span4&quot;&gt;<br>                        &lt;?php print $footer_col_4; ?&gt;<br>

                    &lt;/div&gt;&lt;!--/footer_col_1--&gt;<br>                    &lt;?php endif; ?&gt;<br>                &lt;/div&gt;<br>            &lt;/footer&gt; &lt;!--./footer--&gt;<br><br>        &lt;/div&gt;&lt;!--/.page_content--&gt;<br>

       <br>        &lt;?php print $closure; ?&gt;<br>    &lt;/body&gt;<br>&lt;/html&gt;<br><br>But when I go to admin and activate the theme isn&#39;t working because for example in the generated code I see this:<br><br>
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>&quot;&gt;<br>
<br>
And this isn&#39;t in my template so my question is I doing something wrong or what&#39;s happening?
<p>Cheers and thanks in advance</p><br><br clear="all">Ing. Reynier Perez Mira<br>eMail: <a href="mailto:reynierpm@gmail.com" target="_blank">reynierpm@gmail.com</a>, <a href="mailto:reynierpm@hotmail.com" target="_blank">reynierpm@hotmail.com</a><br>

Skype: reynierpm<br>Mobile: +58 424.180.5609<br>Site: <a href="http://reynierpm.site90.com" target="_blank">http://reynierpm.site90.com</a><br>