<?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>Blogger Trick &#124; Blogger Template &#124; BloggerTrick.com &#187; Blogger Meta Tag Trick</title>
	<atom:link href="http://www.bloggertrick.com/category/blogger-meta-tag-trick/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bloggertrick.com</link>
	<description>Offers blogger templates, downloads, the latest features and news.</description>
	<lastBuildDate>Thu, 02 Jul 2009 08:25:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to create expandable post summaries or Read more on Classic template</title>
		<link>http://www.bloggertrick.com/how-to-create-expandable-post-summaries-or-read-more-on-classic-template</link>
		<comments>http://www.bloggertrick.com/how-to-create-expandable-post-summaries-or-read-more-on-classic-template#comments</comments>
		<pubDate>Wed, 03 Dec 2008 11:32:32 +0000</pubDate>
		<dc:creator>bloggertrick.com</dc:creator>
				<category><![CDATA[Blog Writing Tips]]></category>
		<category><![CDATA[Blogger Directories Submit]]></category>
		<category><![CDATA[Blogger Meta Tag Trick]]></category>
		<category><![CDATA[Blogger Template trick]]></category>
		<category><![CDATA[Blogger embed]]></category>
		<category><![CDATA[blogger posting]]></category>
		<category><![CDATA[Read More on Blog]]></category>

		<guid isPermaLink="false">http://bloggertrick.com/?p=321</guid>
		<description><![CDATA[D&#8217; you want to know &#8220;How to create expandable post summaries or Create Read more on Blogger Classic template&#8221; ??
Ok, i&#8217;ll give and share trick and tutorials about it, and of Course this article taken from :
http://help.blogger.com/bin/answer.py?answer=42215&#38;ctx=sibling


This article also Special for:
&#8221; How about one that works for old layout blogger?
Secretista / December 3rd, 2008, 5:14 [...]]]></description>
			<content:encoded><![CDATA[<p>D&#8217; you want to know &#8220;How to create expandable post summaries or Create Read more on Blogger Classic template&#8221; ??</p>
<p>Ok, i&#8217;ll give and share trick and tutorials about it, and of Course this article taken from :</p>
<p><span style="color: #ff00ff;"><em><a title="how to create read more on blogger classic template" href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling" target="_blank">http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling</a></em></span><span id="more-321"></span></p>
<div id="comment-388" class="comment">
<div class="comment-body clearfix">
<p>This article also Special for:</p>
<blockquote><p>&#8221; How about one that works for old layout blogger?</p>
<p class="comment-meta"><a rel="external nofollow" href="http://www.secretista.com/">Secretista</a> / December 3rd, 2008, 5:14 am&#8221;.</p>
</blockquote>
</div>
</div>
<p>She Asked About &#8220;How to create expandable post summaries or how to create Read more on Blogger Classic template.</p>
<p>Ok, Lets Begin&#8230;</p>
<p>Simple Answer is :</p>
<ul>
<li> Add <span> tags to your posts to mark which parts you want hidden in the summary version.</span></li>
<li>Add CSS declarations to your template to hide those sections on the index and archive pages, but not on post pages.</li>
</ul>
<p>Detail Answer is :</p>
<p>With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you&#8217;ll need to have <a href="http://help.blogger.com/bin/answer.py?answer=42049">post pages</a> enabled in order to make this feature work.</p>
<p>There are three ingredients that go into this feature: conditional CSS, a &#8220;read more&#8221; link for each post, and a modification for the posts that use this feature. So let&#8217;s go through it step by step.</p>
<h4>Conditional CSS</h4>
<p>We&#8217;re going to use conditional tags to change how posts display on different pages. Add the following code to your style sheet, depending on what kind of template you have:</p>
<p>(for classic templates)</p>
<pre>&lt;MainOrArchivePage&gt;
   span.fullpost {display:none;}
&lt;/MainOrArchivePage&gt;

&lt;ItemPage&gt;
   span.fullpost {display:inline;}
&lt;/ItemPage&gt;</pre>
<p>(for layouts)</p>
<pre>&lt;b:if cond='data:blog.pageType == "item"'&gt;
   span.fullpost {display:inline;}
&lt;b:else/&gt;
   span.fullpost {display:none;}
&lt;/b:if&gt;</pre>
<p>Your style sheet is usually near the top of your template, between the <code>&lt;style&gt;</code> and <code>&lt;/style&gt;</code> tags. If you have your style sheet in a separate file, you&#8217;ll still need to add these lines in your template, so the conditional tags will work. Just make sure you add in the <code>&lt;style&gt;</code> tags around them.</p>
<p>What we did here was to define a class called &#8220;fullpost&#8221; that will appear only on post pages (permalinks). Part of each post will use this class, as we&#8217;ll see later.</p>
<h4>&#8220;Read More&#8221; Links</h4>
<p>Add the following code to your template, somewhere after the <code>&lt;$BlogItemBody$&gt;</code> or <code>&lt;data:post.body/&gt;</code> tag:</p>
<p>(for classic templates)</p>
<pre><code>&lt;MainOrArchivePage&gt;&lt;br /&gt;
   &lt;a href="&lt;$BlogItemPermalinkURL$&gt;"&gt;Read more!&lt;/a&gt;
&lt;/MainOrArchivePage&gt;</code></pre>
<p>(for layouts)</p>
<pre><code>&lt;b:if cond='data:blog.pageType != "item"'&gt;&lt;br /&gt;
   &lt;a expr:href='data:post.url'&gt;Read more!&lt;/a&gt;
&lt;/b:if&gt;</code></pre>
<p>This link will only appear on the main page and archive pages, and it will redirect your reader to the post page containing the full text of your post. You can replace the &#8220;Read more!&#8221; text with whatever you like, of course.</p>
<h4>Post Modifications</h4>
<p>The final piece that we need is a little bit of code in your actual post. Each post that you want to use this feature on will need this code:</p>
<p><code>&lt;span class="fullpost"&gt;&lt;/span&gt;</code></p>
<p>This part can actually go in the <a href="http://help.blogger.com/bin/answer.py?answer=41401">post template</a>, if you don&#8217;t want to have to type it for each post. You&#8217;ll enter the summary text outside the span tags and the remainder inside, like so:</p>
<p><code>Here is the beginning of my post. &lt;span class="fullpost"&gt;And here is the rest of it.&lt;/span&gt;</code></p>
<p>Now, when a reader visits your blog, this post will appear like this:</p>
<blockquote><p>Here is the beginning of my post.<br />
<a href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling">Read more!</a></p></blockquote>
<p>When they click the link, they&#8217;ll go to the post page where they&#8217;ll see the whole thing:</p>
<blockquote><p>Here is the beginning of my post. And here is the rest of it.</p></blockquote>
<p><strong>Notes:</strong></p>
<ul>
<li>As with any template modifications, you should be sure to save a backup copy of your template before you start. Just copy and paste all your code to a text file on your hard drive, so you&#8217;ll have it there as a replacement in case anything goes wrong.</li>
<li>An alternative to creating post excerpts like this is to use the <a href="http://help.blogger.com/bin/answer.py?answer=42214">show/hide method</a> on entire posts. Each method has its own advantages and disadvantages.</li>
<li>Advantages to this method: Customizable summaries, rather than titles only. Can be applied to some posts and not others (for instance, you might only want this for your longer posts).</li>
<li>Disadvantages: Requires changes to the posts themselves, rather than to the template only. However, the &#8220;read more&#8221; link is in the template, so it will appear regardless of whether a post has been truncated or not. (Modifying this feature is left as an exercise for the reader.)</li>
</ul>
<p><strong><span style="color: #ff0000;">NOTES..!! :</span></strong></p>
<ul>
<li> This Artcle is taken from <a title="How to create expandable post summaries or Read more on Classic template" href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling" target="_blank">http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling<br />
</a></li>
<li>Click this link if you want to Read the originally content or article <strong><a title="How to create expandable post summaries or Read more on Classic template" href="http://help.blogger.com/bin/answer.py?answer=42215&amp;ctx=sibling" target="_blank">How to create expandable post summaries or Create Read more on Classic template.</a></strong></li>
<li>Thanks very much to <a href="http://blogger.com" target="_blank"><strong>Blogger</strong></a> caused give us more solutions !!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bloggertrick.com/how-to-create-expandable-post-summaries-or-read-more-on-classic-template/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Trick to make your Blog is SEO Friendly</title>
		<link>http://www.bloggertrick.com/trick-to-make-your-blog-is-seo-friendly</link>
		<comments>http://www.bloggertrick.com/trick-to-make-your-blog-is-seo-friendly#comments</comments>
		<pubDate>Thu, 18 Sep 2008 01:51:35 +0000</pubDate>
		<dc:creator>bloggertrick.com</dc:creator>
				<category><![CDATA[Blogger Meta Tag Trick]]></category>
		<category><![CDATA[Blogger SEO Trick]]></category>
		<category><![CDATA[blogger title tag]]></category>

		<guid isPermaLink="false">http://bloggertrick.com/?p=44</guid>
		<description><![CDATA[Trick to make your Blog is SEO Friendly
This is trick for Blogger so SEO Friendly, This is trick will use modification or added some meta tag Blogger default .
This is Trick to make your Blog is SEO Friendly :
First, Open your Menu HTML in your Blogger account, open template, edit HTML, then
Find this Code :
&#60;head&#62;
&#60;b:include [...]]]></description>
			<content:encoded><![CDATA[<p>Trick to make your Blog is SEO Friendly</p>
<p>This is trick for Blogger so SEO Friendly, This is trick will use modification or added some meta tag Blogger default .<span id="more-44"></span></p>
<p>This is Trick to make your Blog is SEO Friendly :</p>
<p>First, Open your Menu HTML in your Blogger account, open template, edit HTML, then<br />
Find this Code :</p>
<p><span style="color: #008000;">&lt;head&gt;<br />
&lt;b:include data=&#8217;blog&#8217; name=&#8217;all-head-content&#8217;/&gt;<br />
&lt;title&gt;&lt;data:blog.pageTitle/&gt;&lt;/title&gt;<br />
</span></p>
<p>Then change this code with code Trick to make your Blog is SEO Friendly<br />
bellow :</p>
<p><span style="color: #008000;">&lt;head&gt;<br />
</span><span style="color: #339966;"><code>&lt;b:if cond='data:blog.pageType == &amp;quot;item&amp;quot;'&gt;<br />
&lt;title&gt;&lt;data:blog.pageName/&gt; | &lt;data:blog.title/&gt;&lt;/title&gt;<br />
&lt;b:else/&gt;<br />
&lt;title&gt;&lt;data:blog.pageTitle/&gt;&lt;/title&gt;<br />
&lt;/b:if&gt;</code></span><span style="color: #008000;"></span></p>
<p><span style="color: #339966;">&lt;meta content=&#8217;</span><strong><span style="color: #ff0000;">Your Blog Description.</span></strong><span style="color: #339966;">&#8216; name=&#8217;description&#8217;/&gt;<br />
&lt;meta content=&#8217; </span><strong><span style="color: #ff0000;">Your Blog KeyWords.</span></strong><span style="color: #339966;">&#8216; name=&#8217;Keywords&#8217;/&gt;<br />
&lt;meta content=&#8217;global&#8217; name=&#8217;target&#8217;/&gt;<br />
&lt;meta content=&#8217;Index,follow&#8217; name=&#8217;Robots&#8217;/&gt;<br />
&lt;meta content=&#8217;ALL&#8217; name=&#8217;SPIDERS&#8217;/&gt;<br />
&lt;meta content=&#8217;ALL&#8217; name=&#8217;WEBCRAWLERS&#8217;/&gt;</span></p>
<p>like this :</p>
<div id="attachment_45" class="wp-caption alignleft" style="width: 310px"><a href="http://bloggertrick.com/wp-content/uploads/2008/09/meta-title-for-blogger.jpg"><img class="size-medium wp-image-45" title="meta-title-for-blogger" src="http://bloggertrick.com/wp-content/uploads/2008/09/meta-title-for-blogger-300x94.jpg" alt="seo trick for bloggger" width="300" height="94" /></a><p class="wp-caption-text">seo trick for bloggger</p></div>
<p>Read this article in pdf version <strong><a title="seo blogger" href="http://www.ziddu.com/download/2196782/TricktomakeyourBlogisSEOFriendly.pdf.html" target="_blank">Download here</a> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bloggertrick.com/trick-to-make-your-blog-is-seo-friendly/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
