How to Implement AMP Pages in blogger template

How to make your blogger load very faster in ussual for next future mobilegadon era and website blog blogspot when every website blog move and implementation them to AMP (Accelerated Mobile Pages).
How to Implement AMP Pages in blogger template
There are rules to make AMP pages for loader faster in mobile responsive template when the pages are cached in Google search result and Google has been supported for AMP and have lighttunderbolt ⚡in search result. AMP blogger template builtin is not implemented by Google it's self, you must customize and edit blogger template manually not as wordpress uses plugin supported. Many differences in ussual like json js css script within  html not in AMP html there are many rules e.g. in image tag you must add amp in front of img tags like <amp-img alt='example amp image' href='www.example.com/example.png'>picture image</amp-img>. In many website forum there are disavantages if you instal AMP pages for your blog maybe next article.

Start and edit and Change your blogger template follow rules as ampproject commit in their website like :
Global amp pages as amppages project like :

<!doctype html>
<html amp lang="en">
  <head>
    <meta charset="utf-8">
    <script async src="https://cdn.ampproject.org/v0.js"></script>
    <title>Hello, AMPs</title>
    <link rel="canonical" href="http://example.ampproject.org/article-metadata.html">
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <script type="application/ld+json">
      {
        "@context": "http://schema.org",
        "@type": "NewsArticle",
        "headline": "Open-source framework for publishing content",
        "datePublished": "2015-10-07T12:02:41Z",
        "image": [
          "logo.jpg"
        ]
      }
    </script>
    <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
  </head>
  <body>
    <h1>Welcome to the mobile web</h1>
  </body>
</html>
It's not simple in mind you must change all image, js, json script to move in amp pages.
See you in next arricle guys.
How to change :
-
<html b:version='2' class='v2' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale' 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'> to <!doctype html>
- Remove html built in to <html ⚡> or <html amp>
- Add in between head tag <meta charset="utf-8">
- Add brtween head tag like <script async src="https://cdn.ampproject.org/v0.js"></script> , <link rel="canonical" href="$SOME_URL"> , <meta name="viewport" content="width=device-width,minimum-scale=1 intitial-scale=1"> and boiler template above.