Blogger Widget Script
Blogger Widget Script
Blogspot Blogs
http://ideas-mag-soratemplates.blogspot.com/p/sitemap_24.html
Before Editing we recommend you to make a backup of your template, so that anything
goes wrong you still have your blog design safe.
The First thing you need to do is to login into your Blogger account and go to >>
Templates >> Edit HTML and search for the ending ]]></b:skin> tag and just above it
paste the following code.
.mapasite {
margin-bottom: 10px;
background-color: #F8F8F8
.mapasite.active .mapa {
display: block
.mapasite .mapa {
display: none
.mapasite h2 {
background-color: #EEE;
color: #000;
font-size: 15px;
border-radius: 2px;
margin-bottom: 0;
cursor: pointer;
font-weight: 700
.mapasite h2 .botao {
font-size: 18px;
line-height: 1.2em
.botao .fa-minus-circle {
color: #f30
.mapapost {
overflow: hidden;
margin-bottom: 20px;
height: 70px;
background-color: #FFF
}
.mapa {
padding: 40px
.map-thumb {
background-color: #F0F0F0;
padding: 10px;
display: block;
width: 65px;
height: 50px;
float: left
.map-img {
width: 65px;
height: 50px;
overflow: hidden;
border-radius: 2px
.map-thumb a {
width: 100%;
height: 100%;
display: block;
.map-thumb a:hover {
.mapapost .wrp-titulo {
padding-top: 10px;
font-weight: 700;
font-size: 14px;
line-height: 1.3em;
padding-left: 25px;
padding-right: 10px;
display: block;
overflow: hidden;
margin-bottom: 5px
.mapapost .wrp-titulo a {
text-decoration: underline
.map-meta {
display: block;
float: left;
overflow: hidden;
padding-left: 25px;
.mapasite h2 .botao {
float: right
Now this is the most essential part of the tutorial and you have to do it very carefully. In
the template, search for the </body> tag and just above it paste the following HTML
Coding.
<script type='text/javascript'>
//<![CDATA[
$.ajax({
url: "/feeds/posts/default?alt=json-in-script",
type: 'get',
dataType: "jsonp",
success: function(dataZ) {
blogLabels.push(dataZ.feed.category[t].term)
postbody.html('<div class="siteLabel"></div>');
$('.static_page .post-body
.siteLabel').text(blogLabels);
$(".siteLabel").html(splabels);
$('.siteLabel span').each(function() {
$.ajax({
url: "/feeds/posts/default/-/" +
mapLabel_text + "?alt=json-in-script",
type: 'get',
dataType: "jsonp",
success: function(data) {
if
(data.feed.entry[i].link[j].rel == "alternate") {
posturl =
data.feed.entry[i].link[j].href;
break
var posttitle =
data.feed.entry[i].title.$t;
var author =
data.feed.entry[i].author[0].name.$t;
var get_date =
data.feed.entry[i].published.$t,
var tag =
data.feed.entry[i].category[0].term;
var content =
data.feed.entry[i].content.$t;
var $content =
$('<div>').html(content);
var src2 =
data.feed.entry[i].media$thumbnail.url;
htmlcode += '<div
class="mapapost"><div class="map-thumb"><div class="map-img"><a
href="' + posturl + '" style="background:url(' + src2 + ') no-
repeat center center;background-size: cover"/></div></div><h3
class="wrp-titulo"><a href="' + posturl + '">' + posttitle +
'</a></h3><div class="map-meta"><span class="p-author">' + author
+ '</span><span class="p-date">' + date + '</span></div></div>'
htmlcode += '</div>';
mapLabel.replaceWith('<div
class="mapasite"><h2>' + mapLabel_text + '<span class="botao"><i
class="fa fa-plus-circle"></i></span></h2>' + htmlcode +
'</div>');
$(this).parent('.mapasite').addClass('active');
$(this).find('.botao
.fa').removeClass('fa-plus-circle').addClass('fa-minus-circle');
});
$(document).on('click', '.mapasite.active
h2', function() {
$(this).parent('.mapasite').removeClass('active');
$(this).find('.botao
.fa').addClass('fa-plus-circle').removeClass('fa-minus-circle');
});
});
});
});
//]]>
</script>
Note :- the widget works on jquery so you have to install jquery plugin if you haven't
installed it yet..
Now this is the most essential part of the tutorial and you have to do it very carefully.Go
to your blogger dashboard > Pages > Add New Page.
On the new page content after adding the page title and hiding the comments using
options, add the following code in the page content area.
[sitemap]
For better understanding check the highlighted area in the below image.