<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Andrews F.G - Portfolio &#187; Úteis</title>
	<atom:link href="http://www.andrecomws.com/category/uteis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrecomws.com/blog</link>
	<description>Portfolio de Andrews Ferreira Guedis, formado em web designer e prestador de serviços web desde 2004.</description>
	<lastBuildDate>Fri, 06 Jan 2012 23:20:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Produtividade com Slim</title>
		<link>http://www.andrecomws.com/blog/2011/11/17/produtividade-com-slim/</link>
		<comments>http://www.andrecomws.com/blog/2011/11/17/produtividade-com-slim/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 23:33:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dicas]]></category>
		<category><![CDATA[Úteis]]></category>

		<guid isPermaLink="false">http://www.andrecomws.com/blog/?p=333</guid>
		<description><![CDATA[Slim é uma linguagem de modelo cujo objetivo é reduzir a sintaxe HTML para as partes essenciais, sem se tornar enigmática. Ele normalmente é usado com Ruby. Você pode encontrá-lo no sitehttp://slim-lang.com/. A produtividade com a ajuda desse &#8220;carinha&#8221; aumenta muito, abaixo um exemplo de utilização com o site da Fortap.com Esse código deve parecer [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Slim</strong> é uma linguagem de modelo cujo objetivo é reduzir a sintaxe HTML para as partes essenciais, sem se tornar enigmática. Ele normalmente é usado com <strong>Ruby</strong>. Você pode encontrá-lo no site<a href="http://slim-lang.com/">http://slim-lang.com/</a>.</p>
<p>A produtividade com a ajuda desse &#8220;carinha&#8221; aumenta muito, abaixo um exemplo de utilização com o site da <a href="http://fortap.com/">Fortap.com</a></p>
<p>Esse código deve parecer estranho para você:</p>
<pre class="wp-code-highlight prettyprint linenums:1">doctype 5
html lang='en'
  head
    meta charset='utf-8'
    base href='/'

    title ForTap - Making tap easy!

    meta name='viewport' content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;'
    meta name='apple-mobile-web-app-capable' content='yes'
    meta name='apple-mobile-web-app-status-bar-style' content='yes'
    meta name='apple-touch-fullscreen' content='yes'
    meta name='description' content='Nós fazemos web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5. Google Android, Apple iOS, RIM Blackberry OS, Microsoft Windows Phone and HP WebOS'
    meta name='keywords' content='ForTap, html5, iphone4, android, windows phone, hp, rim, blackberry, hp, webos, mobile, ipad, iphone, app'
    meta name='title' content='ForTap - Making tap easy!'

    link rel='schema.DC' href='http://purl.org/dc/elements/1.1/'
    meta name='DC.title' content='Fortap'
    meta name='DC.Creator' content='Fortap'
    meta name='DC.Subject' scheme='DCTERMS.LCSH' content='Mobile apps'
    meta name='DC.Description' content='Nós fazemos web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5. Google Android, Apple iOS, RIM Blackberry OS, Microsoft Windows Phone and HP WebOS'
    meta name='DCTERMS.Created' scheme='DCTERMS.W3CTDF' content='2011-05'
    meta name='DCTERMS.Modified' scheme='DCTERMS.W3CTDF' content='2011-07'
    meta name='DC.Type' scheme='DCTERMS.DCMIType' content='InteractiveResource'
    meta name='DC.Format' scheme='DCTERMS.IMT' content='text/html'
    link rel='DC.Identifier' href='http://www.fortap.com/'
    meta name='DC.Language' content='English'
    meta name='DC.Language' scheme='DCTERMS.ISO639-3' content='eng'

    meta property='og:title' content='Fortap'
    meta property='og:type' content='website'
    meta property='og:url' content='http://www.fortap.com'
    meta property='og:image' content='http://fortap.com/images/touch-icon-iphone4.png'
    meta property='og:site_name' content='Fortap'
    meta property='og:description' content='Nós fazemos web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5. Google Android, Apple iOS, RIM Blackberry OS, Microsoft Windows Phone and HP WebOS'
    script src='http://www.google-analytics.com/ga.js'
    link rel='apple-touch-icon' href='images/touch-icon-iphone.png'
    link rel='apple-touch-icon' href='images/touch-icon-ipad.png' sizes='72x72'
    link rel='apple-touch-icon' href='images/touch-icon-iphone4.png' sizes='114x114'
    link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Cabin'
    link rel='stylesheet' href='reset.css'
    link rel='stylesheet' href='style.css' media='screen'
    link rel='stylesheet' href='ipad.css' media='screen and (min-device-width: 481px) and (max-device-width: 799px)'
    /[ if (gte IE 6) &amp;amp; (lte IE <img src='http://www.andrecomws.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> ]
      link rel='stylesheet' href='ie.css'

    javascript:
      var _gaq = _gaq || [['_setAccount', 'UA-24051863-1'], ['_trackPageview']];
    script src='http://www.google-analytics.com/ga.js'
  body
    .wrap
      header role='banner'
        h1 ForTap
        div
          img src='logo.png' alt='Fortap'
        .top
          img.top src='logo-fortap.png' alt='Fortap'
        h2 Making tap easy
      section#content role='main'
        h1
          | Nós fazemos
          strong
            | web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5
        dl
          dt
            img src='blackberry.png' alt='Blackberry OS'
          dd Blackberry OS
          dt
            img src='android.png' alt='Android'
          dd Android
          dt
            img src='windows.png' alt='Windows Phone'
          dd Windows Phone
          dt
            img src='apple.png' alt='iOS'
          dd iOS
          dt
            img src='hp.png' alt='WebOS'
          dd WebOs
        section.latest-work role='complementary'
          div
            h1 Últimos trabalhos
            h2 doit.io
            p
              | Gerenciador de tarefas simples, bonito e com foco.
          figure
            a rel='modal-profile' href='#modal-lightsout'
              img src='workoelho-small-screen.jpg' alt='doit.io'
          #modal-lightsout.modal-lightsout
            div#modal-profile.modal-profile
              a.modal-close-profile href='#modal-close-profile' title='Fechar'
                | Fechar
              a href='#modal-close-profile' title='Fechar'
                img src='screen-workcoelho.jpg' alt='Doit.io'
      section#contact.vcard
        h1 Fale sobre seu projeto
        address itemtype='http://data-vocabulary.org/Organization'
          abbr.tel itemprop='tel' title='+551123738573'
            | +551123738573
          a.email itemprop='email' href='mailto:contato@fortap.com'
            | contato@fortap.com
      footer role='contentinfo'
        p
          small
            strong Fortap
            | Todos os direitos reservados
      section.share
        iframe.facebook-share-button src='http://www.facebook.com/plugins/like.php?app_id=259300564085200&amp;amp;href=http%3A%2F%2Ffortap.com%2F%3Fsource%3Dgoogleplus&amp;amp;send=false&amp;amp;layout=button_count&amp;amp;width=95&amp;amp;show_faces=false&amp;amp;action=like&amp;amp;colorscheme=light&amp;amp;font=tahoma&amp;amp;height=21' scrolling='no' frameborder='0' allowTransparency='true'
        a.twitter-share-button href='http://twitter.com/share' data-url='http://fortap.com/?source=twitter' data-count='none' data-via='fortap'
          | Tweet
        script src='http://platform.twitter.com/widgets.js'
        g:plusone size='medium' count='false' href='http://fortap.com/?source=googleplus'
  script src='https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js'
  script src='https://apis.google.com/js/plusone.js'
  /[ if lt IE 9 ]
    script src='functions.js'
    script src='selectivizr-min.js'
    script src='css3-mediaqueries.js'
    noscript
      link rel='stylesheet' href='style.css'</pre>
<p>Mas na verdade ele era esse &#8220;monstrão&#8221; todo:</p>
<pre class="wp-code-highlight prettyprint linenums:1">&lt; !doctype html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt; 

    &lt;base href=&quot;/&quot;&gt;

    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;apple-mobile-web-app-capable&quot; content=&quot;yes&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;apple-mobile-web-app-status-bar-style&quot; content=&quot;black&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;apple-touch-fullscreen&quot; content=&quot;yes&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;description&quot; content=&quot;Nós fazemos web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5. Google Android, Apple iOS, RIM Blackberry OS, Microsoft Windows Phone and HP WebOS&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;keywords&quot; content=&quot;ForTap, html5, iphone4, android, windows phone, hp, rim, blackberry, hp, webos, mobile, ipad, iphone, app&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;title&quot; content=&quot;ForTap - Making tap easy!&quot;&gt;

    &lt;link rel=&quot;schema.DC&quot; href=&quot;http://purl.org/dc/elements/1.1/&quot;&gt;
    &lt;meta name=&quot;DC.title&quot; content=&quot;Fortap&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DC.Creator&quot; content=&quot;Fortap&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DC.Subject&quot; scheme=&quot;DCTERMS.LCSH&quot; content=&quot;Mobile apps&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DC.Description&quot; content=&quot;Nós fazemos web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5. Google Android, Apple iOS, RIM Blackberry OS, Microsoft Windows Phone and HP WebOS&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DCTERMS.Created&quot; scheme=&quot;DCTERMS.W3CTDF&quot; content=&quot;2011-05&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DCTERMS.Modified&quot; scheme=&quot;DCTERMS.W3CTDF&quot; content=&quot;2011-07&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DC.Type&quot; scheme=&quot;DCTERMS.DCMIType&quot; content=&quot;InteractiveResource&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DC.Format&quot; scheme=&quot;DCTERMS.IMT&quot; content=&quot;text/html&quot;&gt;
    &lt;link rel=&quot;DC.Identifier&quot; href=&quot;http://www.fortap.com/&quot;&gt;
    &lt;meta name=&quot;DC.Language&quot; content=&quot;English&quot;&gt;
    &lt;/meta&gt;&lt;meta name=&quot;DC.Language&quot; scheme=&quot;DCTERMS.ISO639-3&quot; content=&quot;eng&quot;&gt;

    &lt;/meta&gt;&lt;meta property=&quot;og:title&quot; content=&quot;ForTap&quot;&gt;
    &lt;/meta&gt;&lt;meta property=&quot;og:type&quot; content=&quot;website&quot;&gt;
    &lt;/meta&gt;&lt;meta property=&quot;og:url&quot; content=&quot;http://www.fortap.com/&quot;&gt;
    &lt;/meta&gt;&lt;meta property=&quot;og:image&quot; content=&quot;http://fortap.com/images/touch-icon-iphone4.png&quot;&gt;
    &lt;/meta&gt;&lt;meta property=&quot;og:site_name&quot; content=&quot;Fortap&quot;&gt;
    &lt;meta property=&quot;og:description&quot; content=&quot;Nós fazemos web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5. Google Android, Apple iOS, RIM Blackberry OS, Microsoft Windows Phone and HP WebOS&quot;/&gt;

    &lt;link rel=&quot;apple-touch-icon&quot; href=&quot;images/touch-icon-iphone.png&quot;&gt;
    &lt;/link&gt;&lt;link rel=&quot;apple-touch-icon&quot; sizes=&quot;72x72&quot; href=&quot;images/touch-icon-ipad.png&quot;&gt;
    &lt;/link&gt;&lt;link rel=&quot;apple-touch-icon&quot; sizes=&quot;114x114&quot; href=&quot;images/touch-icon-iphone4.png&quot;&gt;
    &lt;/link&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;http://fonts.googleapis.com/css?family=Cabin&quot;&gt;
    &lt;/link&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;css/reset.css&quot;&gt;
    &lt;/link&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; media=&quot;screen&quot;&gt;
    &lt;/link&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;css/ipad.css&quot; media=&quot;screen and (min-device-width: 481px) and (max-device-width: 799px)&quot;&gt;
    &lt;!--[if (gte IE 6)&amp;(lte IE 8)]&gt;&lt;/link&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;css/ie.css&quot;&gt;&lt; ![endif]--&gt;
    &lt;script src=&quot;js/modernizr.js&quot;&gt;&lt;/script&gt;

    &lt;title&gt;ForTap - Making tap easy!&lt;/title&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;
    var _gaq = _gaq || [['_setAccount', 'UA-24051863-1'], ['_trackPageview']];
    &lt;/script&gt;
    &lt;script src=&quot;http://www.google-analytics.com/ga.js&quot;&gt;&lt;/script&gt;
&lt;/link&gt;&lt;/meta&gt;&lt;/link&gt;&lt;/meta&gt;&lt;/link&gt;&lt;/meta&gt;&lt;/base&gt;&lt;/meta&gt;&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;wrap&quot;&gt;
        &lt;header role=&quot;banner&quot;&gt;
            &lt;h1&gt;ForTap&lt;/h1&gt;
            &lt;div&gt;&lt;img src=&quot;images/logo.png&quot; alt=&quot;ForTap&quot;/&gt;&lt;/div&gt;
            &lt;div class=&quot;top&quot;&gt;&lt;img src=&quot;images/logo-fortap.png&quot; alt=&quot;ForTap&quot; class=&quot;top&quot;/&gt;&lt;/div&gt;
            &lt;h2&gt;Making tap easy!&lt;/h2&gt;
        &lt;/header&gt;
        &lt;section id=&quot;content&quot; role=&quot;main&quot;&gt;
           &lt;h1&gt;Nós fazemos &lt;strong&gt;web apps, aplicativos e publicações para tablets e celulares e publicidade em HTML5&lt;/strong&gt;&lt;/h1&gt;
            &lt;dl&gt;
                &lt;dt&gt;&lt;img src=&quot;images/blackberry.png&quot; alt=&quot;Blackberry OS&quot;/&gt;&lt;/dt&gt;
                &lt;dd&gt;Blackberry OS&lt;/dd&gt;
                &lt;dt&gt;&lt;img src=&quot;images/android.png&quot; alt=&quot;Android&quot;/&gt;&lt;/dt&gt;
                &lt;dd&gt;Android&lt;/dd&gt;
                &lt;dt&gt;&lt;img src=&quot;images/windows.png&quot; alt=&quot;Windows Phone&quot;/&gt;&lt;/dt&gt;
                &lt;dd&gt;Windows Phone&lt;/dd&gt;
                &lt;dt&gt;&lt;img src=&quot;images/apple.png&quot; alt=&quot;iOS&quot;/&gt;&lt;/dt&gt;
                &lt;dd&gt;iOS&lt;/dd&gt;
                &lt;dt&gt;&lt;img src=&quot;images/hp.png&quot; alt=&quot;WebOS&quot;/&gt;&lt;/dt&gt;
                &lt;dd&gt;WebOS&lt;/dd&gt;
            &lt;/dl&gt;
            &lt;/section&gt;&lt;section class=&quot;latest-work&quot; role=&quot;complementary&quot;&gt;
                &lt;div&gt;
                    &lt;h1&gt;Últimos trabalhos&lt;/h1&gt;
                    &lt;h2&gt;doit.io&lt;/h2&gt;
                    &lt;p&gt;Gerenciador de tarefas simples, bonito e com foco.&lt;/p&gt;
                &lt;/div&gt;
                &lt;figure&gt;
                    &lt;a rel=&quot;modal-profile&quot; href=&quot;#modal-lightsout&quot; &gt;&lt;img src=&quot;images/workoelho-small-screen.jpg&quot; alt=&quot;doit.io&quot;/&gt;&lt;/a&gt;
                &lt;/figure&gt;
                &lt;div class=&quot;modal-lightsout&quot; id=&quot;modal-lightsout&quot;&gt;
                    &lt;div id=&quot;modal-profile&quot; class=&quot;modal-profile&quot;&gt;
                        &lt;a class=&quot;modal-close-profile&quot; href=&quot;#modal-close-profile&quot; title=&quot;Fechar&quot;&gt;Fechar&lt;/a&gt;
                        &lt;a href=&quot;#modal-close-profile&quot; title=&quot;Fechar&quot;&gt;&lt;img src=&quot;images/screen-workcoelho.jpg&quot; alt=&quot;Doit.io&quot;/&gt;&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;

        &lt;section id=&quot;contact&quot; class=&quot;vcard&quot;&gt;
            &lt;h1&gt;Fale sobre seu projeto&lt;/h1&gt;
            &lt;address itemscope itemtype=&quot;http://data-vocabulary.org/Organization&quot;&gt;
                &lt;abbr class=&quot;tel&quot; itemprop=&quot;tel&quot; title=&quot;+551123738573&quot;&gt;+55 11 2373-8573&lt;/abbr&gt;
                &lt;a class=&quot;email&quot; itemprop=&quot;email&quot; href=&quot;http://cloudflare.com/email-protection.html#ff9c90918b9e8b90bf99908d8b9e8fd19c9092d19d8d&quot;&gt;&lt;span id=&quot;__cf_email__&quot; class=&quot;caa9a5a4beabbea58aaca5b8beabbae4a9a5a7e4a8b8&quot;&gt;[email&amp;nbsp;protected]&lt;/span&gt;&lt;script type=&quot;text/javascript&quot;&gt;
/* &lt; ![CDATA[ */
(function(){try{var s,a,i,j,r,c,l=document.getElementById(&quot;__cf_email__&quot;);a=l.className;if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})();
/* ]]&gt; */
&lt;/script&gt;&lt;/a&gt;
            &lt;/address&gt;
        &lt;/section&gt;
        &lt;footer role=&quot;contentinfo&quot;&gt;
            &lt;p&gt;&lt;small&gt;&lt;strong&gt;ForTap&lt;/strong&gt; Todos os direitos reservados 2011&lt;/small&gt;&lt;/p&gt;
        &lt;/footer&gt;
        &lt;section class=&quot;share&quot;&gt;
        	&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?app_id=259300564085200&amp;amp;href=http%3A%2F%2Ffortap.com%2F%3Fsource%3Dgoogleplus&amp;amp;send=false&amp;amp;layout=button_count&amp;amp;width=95&amp;amp;show_faces=false&amp;amp;action=like&amp;amp;colorscheme=light&amp;amp;font=tahoma&amp;amp;height=21&quot; scrolling=&quot;no&quot; class=&quot;facebook-share-button&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
           	&lt;a href=&quot;http://twitter.com/share&quot; class=&quot;twitter-share-button&quot; data-url=&quot;http://fortap.com/?source=twitter&quot; data-count=&quot;none&quot; data-via=&quot;fortap&quot;&gt;Tweet&lt;/a&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://platform.twitter.com/widgets.js&quot;&gt;&lt;/script&gt;
           	&lt;g:plusone size=&quot;medium&quot; count=&quot;false&quot; href=&quot;http://fortap.com/?source=googleplus&quot;&gt;&lt;/g:plusone&gt;
        &lt;/section&gt;
    &lt;/div&gt;

    &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;https://apis.google.com/js/plusone.js&quot;&gt;&lt;/script&gt;
    &lt;!--[if lt IE 9]&gt;
    &lt;script src=&quot;js/functions.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;js/selectivizr-min.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;js/css3-mediaqueries.js&quot;&gt;&lt;/script&gt;
    &lt;noscript&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot;&gt;&lt;/link&gt;&lt;/noscript&gt;
    &lt; ![endif]--&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
/* &lt; ![CDATA[ */
(function(){try{var s,a,i,j,r,c,l=document.getElementsByTagName(&quot;a&quot;),t=document.createElement(&quot;textarea&quot;);for(i=0;l.length-i;i++){try{a=l[i].getAttribute(&quot;href&quot;);if(a&amp;&amp;&quot;cloudflare.com/email-protection&quot;==a.substr(7 ,31)){s='';j=44;r=parseInt(a.substr(j,2),16);for(j+=2;a.length-j&amp;&amp;a.substr(j,1)!='X';j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}j+=1;s+=a.substr(j,a.length-j);t.innerHTML=s.replace(/&lt;/g,&quot;&amp;lt;&quot;).replace(/&gt;/g,&quot;&amp;gt;&quot;);l[i].setAttribute(&quot;href&quot;,&quot;mailto:&quot;+t.value);}}catch(e){}}}catch(e){}})();
/* ]]&gt; */
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;counturl=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;count=none&amp;text=Produtividade%20com%20Slim" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;counturl=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;count=none&amp;text=Produtividade%20com%20Slim" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2011%2F11%2F17%2Fprodutividade-com-slim%2F&amp;title=Produtividade%20com%20Slim" id="wpa2a_2">Compartilhar</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andrecomws.com/blog/2011/11/17/produtividade-com-slim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Estudando Joomla</title>
		<link>http://www.andrecomws.com/blog/2008/06/12/estudando-joomla/</link>
		<comments>http://www.andrecomws.com/blog/2008/06/12/estudando-joomla/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 20:06:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Úteis]]></category>

		<guid isPermaLink="false">http://www.andrecomws.com/?p=24</guid>
		<description><![CDATA[Estou estudando no momento o mais poderoso opensource CMS (Content Management System) da Web, o Joomla. Até agora tem me surpreendido bastante. Nesse print-screen, se vê o primeiro template para o site do CEU &#8211; Centro Espírita União, que está sendo reformulado por mim juntamente com a Letti Tecnologia. Quando estiver em fase de finalização, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Estou estudando no momento o mais poderoso opensource <strong>CMS (Content Management System)</strong> da Web, o <a title="Joomla" href="http://www.joomla.org" target="_blank"><strong>Joomla</strong></a>. Até agora tem me surpreendido bastante.</p>
<p style="text-align: center;"><a href="http://www.andrecomws.com/wp-content/uploads/2008/06/joomla.jpg" rel="lightbox[24]"><img class="alignnone size-medium wp-image-25 aligncenter" title="Primeiro Template Joomla" src="http://www.andrecomws.com/wp-content/uploads/2008/06/joomla-300x202.jpg" alt="Joomla" width="300" height="202" /></a></p>
<p>Nesse print-screen, se vê o primeiro template para o site do <a title="CEU - Centro Espírita União" href="http://www.ceu-uniao.org.br"><strong>CEU &#8211; Centro Espírita União</strong></a>, que está sendo reformulado por mim juntamente com a <a title="Letti Tecnologia" href="http://www.letti.com.br" target="_blank">Letti Tecnologia</a>.</p>
<p>Quando estiver em fase de finalização, anunciarei aqui no site.</p>
<p>Se estiver interessado em estudar um pouco sobre o <strong>Joomla,</strong> os links abaixo são extremamente úteis:</p>
<p><strong>Em português:</strong></p>
<p><span class="a"><a href="http://www.joomla.com.br" target="_blank">www.joomla.com.br</a><br />
</span><span class="a"><a title="Joomla Brasil" href="http://www.joomlabrasil.org" target="_blank">www.joomlabrasil.org</a><br />
<a title="Joomla Clube" href="http://www.joomlaclube.com.br" target="_blank"> www.joomlaclube.com.br</a></span></p>
<p><strong>Em Inglês:</strong></p>
<p><a title="Joomla" href="http://www.joomla.org" target="_blank">www.joomla.org</a></p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;counturl=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;count=none&amp;text=Estudando%20Joomla" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;counturl=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;count=none&amp;text=Estudando%20Joomla" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andrecomws.com%2Fblog%2F2008%2F06%2F12%2Festudando-joomla%2F&amp;title=Estudando%20Joomla" id="wpa2a_4">Compartilhar</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andrecomws.com/blog/2008/06/12/estudando-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

