This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Facebook OpenGraph --> | |
<meta content='article' property='og:type'/> | |
<meta expr:content='data:blog.title' property='og:site_name'/> | |
<!-- Titulo, URL & Descrição --> | |
<meta expr:content='data:blog.pageName' property='og:title'/> | |
<meta expr:content='data:blog.canonicalUrl' property='og:url'/> | |
<b:if cond='data:blog.metaDescription'> | |
<meta expr:content='data:blog.metaDescription' name='og:description'/> | |
<b:else/> | |
<meta expr:content='data:post.snippet' name='og:description'/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<b:if cond='data:blog.pageType == "static_page"'><br/> | |
<data:post.body/> | |
<b:else/> | |
<b:if cond='data:blog.pageType != "item"'> | |
<div expr:id='"summary" + data:post.id'><data:post.body/></div> | |
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>"); | |
</script> | |
<span class='jump-link' style='float:right;padding-top:20px;'><a expr:href='data:post.url + "#more"' expr:title='data:post.title'><data:post.jumpText/></a></span> | |
</b:if> | |
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript'> | |
img_thumb_width = 180; // Largura da Imagem | |
img_thumb_height = 180; // Altura da Imagem | |
summary_noimg = 500; // Comprimento do resumo se não houver imagem | |
summary_img = 400; // Comprimento do resumo se houver imagem | |
</script> | |
<script type='text/javascript'> | |
//<![CDATA[ | |
function removeHtmlTag(strx,chop){ | |
if(strx.indexOf("<")!=-1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript'> | |
img_thumb_width = 180; // Image Thumbnail Width | |
img_thumb_height = 180; // Image Thumbnail Height | |
summary_noimg = 500; // Length of Summary Text if no image is Used | |
summary_img = 400; // Length of Summary Text if post has Image Thumbnail | |
</script> | |
<script type='text/javascript'> | |
//<![CDATA[ | |
function removeHtmlTag(strx,chop){ | |
if(strx.indexOf("<")!=-1) |