April 2017

Blogger Templates can be very messed up with lots and lots of code. If you are trying to create a Blogger Template from scratch, the first thing you need is a blank HTML page. That’s exactly what we are going to do today.

Blank Template / HTML Page In Blogger.


Demo Here


Follow This Tutorial:



Blogger won’t allow you to just add the following code as template :



<html>
<head>
<title>My Awesome Blank Blog</title>
</head>
<body>
</body>
</html>


They will print out errors if you try to save the template. There are certain criteria for making a template for Blogger Blog :
  1. There must be skin
    <b:skin></b:skin> in the template
  2. A template must have at least one b:section tag
  3. Every section should have a unique id.
  4. Correct Syntax
If the above criterias are met, Blogger won’t produce any errors when saving the template. For creating a blank HTML Template, we will make sure these criterias are met.

Contents Of Blogger Blank Template:

As we said before, Blogger Templates should meet the criterias of Blogger. A Blank Blogger Template should contain the following :

  1. Basic HTML Page Tags (html, head, body) and their closings
  2. Only one <b:skin></b:skin> tag
  3. Need At least a 
    <b:section></b:section> tag.

Create Template:

Make sure your blog is using Simple Template.

If not, apply Simple Template to your blog.

  • Go to your Blogger Blog -> Template and click on Edit HTML button. 
  • Remove the contents of Template.

We will now add the Basic HTML page to the Template :


<?xml version="1.0" encoding="UTF-8" ?>
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head> </head>
<body>
</body>
</html>

Head:

The contents of the <head></head> tag are the title, skin and other elements. We should add the normal codes that are seen on Blogger Templates first :



<meta content='IE=EmulateIE7' http-equiv='X-UA-Compatible'/>
<b:if cond='data:blog.isMobile'>
<meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/>
<b:else/>
<meta content='width=1100' name='viewport'/>
</b:if>
<b:include data='blog' name='all-head-content'/> 

Add the title :


<title><data:blog.pageTitle/></title>

Add the Skin with basic CSS that can be changed using Blogger’s Template Designer :

Skin:



<b:skin>
<![CDATA[/*
body {
font: $undefinedbody.font);
color: $undefinedbody.text.color);
background: $undefinedbody.background);
padding: 0 $undefinedcontent.shadow.spread) $undefinedcontent.shadow.spread) $undefinedcontent.shadow.spread);
$undefinedbody.background.override) margin: 0;
padding: 0;
}
]]>
</b:skin>




There are more styles that can be inserted in <b:skin> , but only body’s is mentioned here. By adding more style rules into it, you will be easily able to update the colors, background etc… from the Template Designer.


There are additional CSS files that are loaded by Blogger before <b:skin>

Body

Blogger needs a <b:section> element in template. So, we should add it inside body.



<b:section id='main' showaddelement='yes'/>
This section is the main section of the blog where we can add gadgets to it.

The Whole Code

And the whole Template code would be :

<?xml version="1.0" encoding="UTF-8" ?>
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='IE=EmulateIE7' http-equiv='X-UA-Compatible'/>
<b:if cond='data:blog.isMobile'>
<meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/>
<b:else/>
<meta content='width=1100' name='viewport'/>
</b:if>
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<b:skin>
<![CDATA[/*
body {
font: $undefinedbody.font);
color: $undefinedbody.text.color);
background: $undefinedbody.background);
padding: 0 $undefinedcontent.shadow.spread) $undefinedcontent.shadow.spread) $undefinedcontent.shadow.spread);
$undefinedbody.background.override) margin: 0;
padding: 0;
}
]]>
</b:skin>
</head>
<body>
center><h1> Blank Blogger Template </h1></center>
<b:section class='main' id='main' showaddelement='yes'/>
<!-- Please Keep The Credits -->
<center><a href="http://4techblogger.blogspot.com">Blank Template By 4Tech</a></center>
</body>
</html>


Additional Code adding

  • Add additional CSS codes inside <skin></skin> 
  •  Add JavaScript codes before </head> or after <head> 
  • Add HTML codes (widgets, code) inside ..
    You can do all the stuff in this template just like you do it a HTML page.


If you want to display the Posts, add the following code inside <section></section> in body :



<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/>


Example :



<b:section class='main' id='main' showaddelement='yes'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/>
</b:section>

Now Save template and check out your blog. You will now have a plain blank Blog.


view count is Often used to display a count of the number of people who see Reviews These post. that usually is Often found in wordpress theme about news, or Also in the theme for fanshare, streaming, pv, music and so forth, but sometimes the view count Also is not suitable for low visitor blogs: v that not cool not see the numbers low. view count actually is not really applicable to blogger.



Because bloggers do not provide features view count. different from wordpress that has abundant features. but the lack of it does not apply to an expert blogger so he can created view count with the help of javascript and firebase, which is useful for storing the database. because the database is needed in view count.

This tutorial I have to providing my database, if you want to create a database go here

How to Display Post/Page View Count in Blog


Css
  1. Login to your Blogger account, go to Blogger dashboard, click the arrow adjacent to 'Go to post list icon' and select 'Template' from dropdown menu. You can also select the 'Template' from left navigation menu.
  2. Click 'Edit HTML'.
  3. Search for (Ctrl+F) </b:skin> and paste (Ctrl+V) the following code before </b:skin>.

  4. /* Post views counter */
    .post-view {
    margin-right: 8px!important;
    display: inline;
    background: #fefefe;
    color: #8c919b;
    padding: 4px 8px;
    cursor: default;
    transition: all .3s ease-out
    }
    .view-load {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent url('http://2.bp.blogspot.com/-60aISBQLRY0/VFBMqzLfzGI/AAAAAAAABgM/GInmVTvEzkc/s1600/loader.gif') no-repeat 0 0;
    vertical-align: middle
    }
    Javascript
    Search for (Ctrl+F) </body> and paste (Ctrl+V) the following code before </body>
     <script src='//cdn.firebase.com/js/client/2.2.1/firebase.js' type='text/javascript'></script>
    <script type='text/javascript'>//<![CDATA[
    $.eachundefined$undefined".post-view[data-id]"),functionundefineda,e){var l=$undefinede).parentundefined).findundefined"#postviews").addClassundefined"view-load"),i=new Firebaseundefined"https://usagilabs-db-7424d.firebaseio.com/pages/id/"+$undefinede).attrundefined"data-id"));i.onceundefined"value",functionundefineda){var n=a.valundefined),t=!1;null==n&&undefinedn={},n.value=0,n.url=window.location.href,n.id=$undefinede).attrundefined"data-id"),t=!0),l.removeClassundefined"view-load").textundefinedn.value),n.value++,"/"!=window.location.pathname&&undefinedt?i.setundefinedn):i.childundefined"value").setundefinedn.value))})});
    //]]>
    </script>

    For display view count after header post (under the title)

    HTML
    For display view count after header post (under the title) Search for (Ctrl+F) 'post-header' you will find like this <div class='post-header'> or <header class='post-header'> if met then add the code below right before the above code
    <div expr:data-id='data:post.id' class='post-view'><i class='fa fa-eye'></i> <span class='view-load' id='postviews'>0</span> View</div>
    The result is like the example below
    <header class='post-header'>
    <div expr:data-id='data:post.id' class='post-view'><i class='fa fa-eye'></i> <span class='view-load' id='postviews'>0</span> View</div>
    ..........
    .......
    </header>

    Then click the Save template

    For display view count in footer post (under the description of post)

    Find (Ctrl+F) 'post-footer' in HTML editor you will find like this <div class='post-footer'> or <footer class='post-footer'> if met then add the code below right before the above code
    <div expr:data-id='data:post.id' class='post-view'><i class='fa fa-eye'></i> <span class='view-load' id='postviews'>0</span> View</div>
    The result is like the example below
    <footer class='post-header'>
    <div expr:data-id='data:post.id' class='post-view'><i class='fa fa-eye'></i> <span class='view-load' id='postviews'>0</span> View</div>
    ..........
    .......
    </footer>
Then click the Save template


If all the above code is not found in your template, it is because not all of the templates have a structure html / class names are the same so sometimes you do not find the above code in your template, if you still can not install it please comment to include the url of your blog I will help :)

Here we go with our very first method of wifi password hacking with android using rooting process, after rooting there will be no rooting wifi hacking method too.


 Disclaimer: Please I won’t be held responsible for any illegal activity this WiFi hacks tricks is used for, it’s just for knowledge  & Education sake, just mug this for educational purpose.


 Method #1: Hacking of WPA2 WPS Router


#1. Firstly, if your android phone isn’t rooted, try to root it, and also make sure that such android phone have a Broadcom bcm4329 or bcm 4330 chipest unlike the Nexus 7, Galaxy S1/S2, Nuxus 1, Htc Desire HD, etc. The presence of Cyanogen ROM on your device can be of use to make the bcmon app work through.
#2. Then download and install Bcmon, it’s essential because it helps monitor mode on your broadcom chipest that helps in the PIN Cracking.
#3. After installation, run the app and tap “monitor mode” option.
#4. Download and Install Reaver app which helps to crack the WPS Pinto retrieve the WPA2 passphrase.
#5. After installation of reaver app, launch it and do an on-screen confirmation, which is, confirming that you’re not using it for an illegal purpose, then tap the APN or access point you’d wish to crack and continue. Most times, you might need to verify monitor mode to proceed, and this would cause the bcmon to open again.
#6. Verify your settings and also make sure that you’ve checked the Automatic Advanced settings” box.
#7. Finally, start cracking process by tapping start attack, at this final stage, it can take 2-10hrs for the cracking of WPS to be successful.

Method #2: WPS WPA TESTER (Hack Wifi from android mobile without Rooting)

WPS Connect app hack only WPS routers with limited features. But this is an advanced app for hacking wifi password from android mobile without rooting. You can check the wireless security of your routers from this Android app. If your router is not secure this wifi hacking android app easily bypass wifi password from android mobile and connect with android mobile to router directly without need any type of password.
This wifi hacking Android apps works in both rooted and without rooted android mobile. So you can easily hack wifi password from your android phone without rooting your android phone with this app.
WIFI WPS WPA TESTER
Price: Free
Latest WiFi Password Hacking on Android are More in below’s links and all wifi password hacking using android are tested and working with our professional’s Editors.

Method #3: Hack Wifi On Android Using AndroDumper App

Well, Another wifi hacking app without even rooting android is here. AndroDumper App is the best android application which helps you to hack wifi passwords on the non-rooted android device. For use, Andro Dumper android application follows below  Just follow the below steps to execute this process:
Step 1: First you need to download and installAndroDumper App‘.
Step 2: After successfully Installation, Open that app on your android device.
Step 3: Now press the refresh button at top of the screen in the app.
Step 4: Select try connects option from the pop-up and this app finds wifi password within a few seconds.
Well, you can try this app as well if above apps are not working properly. The very basic thing you need to keep in your mind is to proceed this hack when the wifis security is low.

Method #4: Hack WiFi On Non-Rooted Android Using Bcmon Android App

Bcmon is another android wifi hacking app and it is used to enable monitor mode on your rooted android device.  Bcmon app is required the rooted android device. This android app required rever android app is used to attack WPS enabled routers and find the WPA key. Bcmon App required approx 2-3 hours to crack WPS enable wifi network. This is working method, all you need to follow
Step 1: First you need to download and install Bcmon App on your android device.
Step 2: And install firmware tools and click on enable monitor mode and then download rever and install on your android device.
Step 3: After that check the box of an automatically advanced setting option. Rever is used to check available access point of WPS enables wifi networks.
Step 4: After scan chooses the WPS to enable network and click on start attack button.
switcher
Layout
Boxed Full
Boxed Background Image
Main Color
#007ABE

Shawon Khan

{picture#https://1.bp.blogspot.com/-BDYMzedJdjs/UAI7F8ZNFKI/AAAAAAAAACY/yhMlXb-dkDU/s50/avatku.jpg} Nor is it at all prudent for the hunter to be over curious touching the precise nature of the whale spout. {facebook#http://facebook.com} {twitter#http://twitter.com} {google#http://google.com} {pinterest#http://pinterest.com} {youtube#http://youtube.com}

Contact Form

Name

Email *

Message *

Powered by Blogger.