Bladeren bron

add content

huaisianhuang 3 jaren geleden
bovenliggende
commit
f8677898fc
2 gewijzigde bestanden met toevoegingen van 24 en 3 verwijderingen
  1. 3 2
      webSite/config.toml
  2. 21 1
      webSite/content/blog/AMP-faster.md

+ 3 - 2
webSite/config.toml

@@ -12,13 +12,14 @@ googleAnalytics = "UA-153100602-5"
 publishDir  = "/var/www/html"
 
 
+
 # Define the number of posts per page
 paginate = 10
 
 
 [outputs]
- home = ["HTML"]
- page = ["HTML"]
+home = ["HTML"]
+page = ["HTML"]
 
 
 [menu]

+ 21 - 1
webSite/content/blog/AMP-faster.md

@@ -1,11 +1,31 @@
 +++
-title = "Why AMP makes your pages so fast?"
+title = "What is AMP in a website?"
 date = "2021-03-29T13:39:46+02:00"
 tags = ["AMP"]
 categories = ["trends"]
 banner = "https://amp.dev/static/remote/?url=https%3A%2F%2Fblog.amp.dev%2Fwp-content%2Fuploads%2F2021%2F04%2Fimage1-768x355.png"
 +++
 
+Mobile internet usage has surpassed desktop usage in each country. Over 30 billion mobile interactions are made from customers every day in the US alone. This means every day your webpage is browsed and used quite frequently. Therefore, mobile webpage loading speed is very important to your business. It is always essential for companeis to check the loading speed of their own mobile sites in every period of time. However, according to data collected by Google and SOASTA, around 40% of consumers leave a page that takes longer than three seconds to load. In three seconds, the company should load at least part of page content. The bad news is the fact that according to data, most mobile websites take around 6.9 seconds to load, that’s more than double the amount of time 40% of users wait before abandoning the page. And if your webpage fails to load in three seconds, you created outstanding content, regardless of how compelling it was, it would be totally in vain.
+
+## What is AMP?
+AMP(Accelerated Mobile Pages) was launched by Google as an open-source project to optimize mobile webpage loading speed.
+The goal of AMP project is to allowing any companies or users to create web pages as well as ads that are consistently fast, beautiful and high-performing across devices, and distribution platforms.
+
+AMP was built in collaboration with thousands of developers, publishers, websites, distribution companies, and tech companies. More than 1.5 billion AMP pages have been created to date, and more than 100 leading analytics, ad tech and CMS providers support the AMP format. ([ From AMP Dev](https://amp.dev/) )
+
+
+When you create mobile pages on the AMP format you get:
+
+1. Higher performance and engagement: Pages created in the AMP open-source project load almost instantly, giving users a smooth, more engaging experience on both their mobiles and desktop.
+
+2. Flexibility and results: Businesses have the opportunity to decide how to present their content and what technology vendors to use, while maintaining and improving KPIs.
+
+You’ve likely clicked an AMP page before, you just didn’t realize it. The only thing you might have noticed was how instantly the page after you clicked. AMP-built web pages have a lightning bolt indicator in the search result.
+The reason why AMP pages load instantly is because AMP restricts HTML/CSS and JavaScript, allowing faster rendering of mobile web pages. Unlike regular mobile pages, AMP pages are automatically cached by Google AMP Cache for faster load times on Google search.
+
+Users have certain expectations when they’re on their mobile devices, they want meaningful, relevant, and faster experiences – to ensure your target audience’s expectations are met AMP are your best bet.
+
 ## Why would we create website by AMP?
 
  1. Execute all JavaScript asynchronously: AMP only allows asynchronous JavaScript so that will not cause performance degradation.