hexo-theme-cards icon indicating copy to clipboard operation
hexo-theme-cards copied to clipboard

AMP Support

Open hayschan opened this issue 3 years ago • 2 comments

Though Google said AMP does not directly affect SEO ranking, often do we see AMP sites result higher ranks in mobile users queries. Any planned integration for AMP?

AMP is a simple and robust format to ensure your website is fast, user-first, and makes money. AMP provides long-term success for your web strategy with distribution across popular platforms and reduced operating and development costs.

hayschan avatar Nov 06 '20 15:11 hayschan

For your reference, here's how a plugin turns Hexo blogs into amp-enabled websites. hexo-generator-amp The first step requires modifying the head.ejs

<% if (is_post() && config.generator_amp){ %>
  <link rel="amphtml" href="<%= config.url %><%= config.root %><%= page.path %>/amp/index.html">
<% } %>

hayschan avatar Nov 06 '20 15:11 hayschan

that's worthy to tryout, I believe ;)

ChrAlpha avatar Nov 06 '20 15:11 ChrAlpha