Make Blog Contents
Sabtu, 30 Januari 2010
6
komentar
To make simple reader found our article with appear some page title, we use addition script in our template.
This session I will give you trick to make Blog Contents and described this trick.
Let's beginning following this instructions bellow:.
Step one:This session I will give you trick to make Blog Contents and described this trick.
Let's beginning following this instructions bellow:.
- Open Blogger Draft in your blogger account.
- In Menu Dashboard go to Layout, select Edit HTML.
- Save your template before beginning this experiment.
- Click Expand Widget Template such as this screenshot bellow:
Find this script code bellow:
<b:include data='post' name='post'/>
To easy way, you can use keyboard function, push Ctrl+F.
After found the script code above, remove and change with this script code bellow:
<!-- Post Contents -->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<a expr:href='data:post.url'>
<div style='padding:6px 0 6px 5px;border-right:1px solid #ccc;border-bottom:1px solid #ccc;margin-bottom:2px;background:#E0ECF8;color:#FF0000;'>
<data:post.title/></div></a>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
- Change your custom background and color font with your own like
(see the color code here)
- Save your Template.
Step Two:
- Make Link from another page:
See this example bellow:
# Text Link:
Use script code bellow:
<a href="http://Your Blog.blogspot.com/search?max-results=100">All Blog Contents Posting</a>
# Form Link:
Use script code bellow:
<form action="http://Your Blog.blogspot.com/search?max-results="" target="_blank"><input type="submit" value="All Blog Contents Posting" /></form>
Notes:
-The maximum result such as that script code above, which mean result to appear "100"
pages title every a page, if you change "50" this mean you want appear 50 pages title every a page
-On the form link maximum appear only 20 pages title every a page
-Don't forget to change name your blog's URL to come up with results that match your desires
Good Luck.