.social-ico a .fa-facebook{color:#3B5998;} .social-ico a .fa-google-plus{color:#DD4B39;} .social-ico a .fa-twitter{color:#55ACEE;} .social-ico a .fa-rss{color:#F0B70C;}
<b:if cond='data:useImage'> <b:if cond='data:imagePlacement == "BEHIND"'> <!-- Show image as background to text. You can't really calculate the width reliably in JS because margins are not taken into account by any of clientWidth, offsetWidth or scrollWidth, so we don't force a minimum width if the user is using shrink to fit. This results in a margin-width's worth of pixels being cropped. If the user is not using shrink to fit then we expand the header. --> <b:if cond='data:mobile'> <div id='header-inner'> <div class='titlewrapper' style='background: transparent'> <b:include name='title'/> </div> <b:include name='description'/> </div> <b:else/> <div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "_height: " + data:height + "background-repeat: no-repeat; "' id='header-inner'> <div class='titlewrapper' style='background: transparent'> <b:include name='title'/> </div> <b:include name='description'/> </div> </b:if> <b:else/> <!--Show the image only--> <div id='header-inner'> <a expr:href='data:blog.homepageUrl' style='display: block'> <img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block'/> </a> <!--Show the description--> <b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'> <b:include name='description'/> </b:if> </div> </b:if> <b:else/> <!--No header image --> <div id='header-inner'> <div class='titlewrapper'> <b:include name='title'/> </div> <b:include name='description'/> </div> </b:if> </b:includable> <b:includable id='description'> <div class='descriptionwrapper'> <p class='description'><span><data:description/></span></p> </div> </b:includable> <b:includable id='title'>
//Config Force tag list, define all in lower case Force_Tag = [ '[pre]','<pre>', '[/pre]','</pre>', '<pre class="brush: plain; title: ; notranslate" title="">','<code>', '</pre>','</code>' ]; var Cur_Cform_Hdr = '.comment_form'; var Cur_Cform_Url = $('#comment-editor') .attr('src');
function trim(str) { var whitespace = ' \n\r\t\f\x5b\x5d\x7c\x7d\x3c\x3e\x0b\xa0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000'; for (var i = 0; i < str.length; i++) { if (whitespace.indexOf(str.charAt(i)) != -1) { str = str.substring(0, i); break } } return str } $('#comment_block .comment_body p') .html(function (index, oldhtml) { if (Replace_Youtube_Link) { var search_key = 'http://www.youtube.com/watch?v='; var check_index = oldhtml.indexOf(search_key); while (check_index != -1) { ht = oldhtml.substring(check_index); yt_link = trim(ht); var yt_code_index = yt_link.indexOf('&'); var yt_code = ''; if (yt_code_index == -1) { yt_code = yt_link.substring(search_key.length) } else { yt_code = yt_link.substring(search_key.length, yt_code_index) } var yt_video = '<iframe class="comment_youtube" src="http://www.youtube.com/embed/' + yt_code + '?autohide=1" frameborder="0" allowfullscreen></iframe>'; oldhtml = oldhtml.substring(0, check_index) + yt_video + oldhtml.substring(check_index + yt_link.length); check_index = oldhtml.indexOf(search_key); if (check_index == -1) { search_key = 'https://www.youtube.com/watch?v='; check_index = oldhtml.indexOf(search_key) } } } if (Replace_Image_Link) { var save_html = ''; var temp_html = oldhtml; for (var i = 0; i < Replace_Image_Ext.length; i++) { var search_key = '.' + Replace_Image_Ext[i]; var upper_html = temp_html.toUpperCase(); var check_index = upper_html.indexOf(search_key); while (check_index != -1) { img_src = temp_html.substring(0, check_index + search_key.length); upper_html = img_src.toUpperCase(); var http_search = 'HTTP://'; var find_http = upper_html.indexOf(http_search); var save_http = ''; while (find_http != -1) { save_http = http_search.toLowerCase(); img_src = img_src.substring(find_http + http_search.length); upper_html = img_src.toUpperCase(); find_http = upper_html.indexOf(http_search) } http_search = 'HTTPS://'; upper_html = img_src.toUpperCase(); find_http = upper_html.indexOf(http_search); while (find_http != -1) { save_http = http_search.toLowerCase(); img_src = img_src.substring(find_http + http_search.length); upper_html = img_src.toUpperCase(); find_http = upper_html.indexOf(http_search) } if (save_http == '' || img_src.length < 6) { break } img_src = save_http + img_src; save_html += temp_html.substring(0, check_index + search_key.length - img_src.length) + '<img src="' + img_src + '" class="comment_img"/>'; temp_html = temp_html.substring(check_index + search_key.length); upper_html = temp_html.toUpperCase(); check_index = upper_html.indexOf(search_key) } } oldhtml = save_html + temp_html } if (Replace_Force_Tag) { var length = Force_Tag.length; if (length % 2 == 1) { length-- } for (var i = 0; i < length; i += 2) { while (1) { var temp_html = oldhtml.toLowerCase(); check_index = temp_html.indexOf(Force_Tag[i]); if (check_index != -1) { oldhtml = oldhtml.substring(0, check_index) + Force_Tag[i + 1] + oldhtml.substring(check_index + Force_Tag[i].length) } else { break } } } } return oldhtml }); $('.comment_wrap .comment_body p') .html(function (i, h) { temp = h.toLowerCase(); index = temp.indexOf('@<a href="#c'); if (index != -1) { index_tail = temp.indexOf('</a>', index); if (index_tail != -1) { h = h.substring(0, index) + h.substring(index_tail + 4) } } return h });
function Valid_Par_Id(par_id) { r = par_id.indexOf('c'); if (r != -1) par_id = par_id.substring(r + 1); return par_id }
Author Description here.. Nulla sagittis convallis. Curabitur consequat. Quisque metus enim, venenatis fermentum, mollis in, porta et, nibh. Duis vulputate elit in elit. Mauris dictum libero id justo. </p> </div>
<form action='http://feedburner.google.com/fb/a/mailverify' class='sub-dd' method='post' onsubmit='window.open('http://feedburner.google.com/fb/a/mailverify?uri=bloggertheme09&loc=en_US;, 'popupwindow', scrollbars=yes,width=550,height=520');return true' target='popupwindow'>Subscribe to this Blog via Email : <input name='email' style='width: 160px; background-color: rgb(255, 255, 160);' type='text'/> <input name='uri' type='hidden' value='bloggertheme09'/><input name='loc' type='hidden' value='en_US'/><input type='submit' value='Subscribe'/> </form>
var bodyFromEntry = function(entry) { if (entry.gd$extendedProperty) { for (var k in entry.gd$extendedProperty) { if (entry.gd$extendedProperty[k].name == 'blogger.contentRemoved') { return '<span class="deleted-comment">' + entry.content.$t + '</span>'; } } } return entry.content.$t; }
var parse = function(data) { cursor = null; var comments = []; if (data && data.feed && data.feed.entry) { for (var i = 0, entry; entry = data.feed.entry[i]; i++) { var comment = {}; // comment ID, parsed out of the original id format var id = /blog-(\d+).post-(\d+)/.exec(entry.id.$t); comment.id = id ? id[2] : null; comment.body = bodyFromEntry(entry); comment.timestamp = Date.parse(entry.published.$t) + ''; if (entry.author && entry.author.constructor === Array) { var auth = entry.author[0];
if (auth) { comment.author = { name: (auth.name ? auth.name.$t : undefined), profileUrl: (auth.uri ? auth.uri.$t : undefined), avatarUrl: (auth.gd$image ? auth.gd$image.src : undefined) }; } } if (entry.link) { if (entry.link[2]) { comment.link = comment.permalink = entry.link[2].href; } if (entry.link[3]) { var pid = /.*comments\/default\/(\d+)\?.*/.exec(entry.link[3].href); if (pid && pid[1]) { comment.parentId = pid[1]; } } } comment.deleteclass = 'item-control blog-admin'; if (entry.gd$extendedProperty) { for (var k in entry.gd$extendedProperty) { if (entry.gd$extendedProperty[k].name == 'blogger.itemClass') { comment.deleteclass += ' ' + entry.gd$extendedProperty[k].value; } else if (entry.gd$extendedProperty[k].name == 'blogger.displayTime') { comment.displayTime = entry.gd$extendedProperty[k].value; } } } comments.push(comment); } } return comments; };
<!-- Page Counter - Edit Number Of Post To Show On Each Page -->
<script type='text/javascript'>
var home_page="/"; var urlactivepage=location.href; var postperpage=7; var numshowpage=2; var upPageWord ='«'; var downPageWord ='»';