Make your pages discoverable (original) (raw)
Table of contents
- Linking pages with
- What if I only have one page?
- Integrate with third-party platforms through additional metadata
In some cases, you might want to have both a non-AMP and an AMP version of the same page, for example, a news article. Consider this: If Google Search finds the non-AMP version of that page, how does it know there’s an AMP version of it?
Linking pages with
In order to solve this problem, we add information about the AMP page to the non-AMP page and vice versa, in the form of <link>
tags in the <head>
.
Add the following to the non-AMP page:
And this to the AMP page:
What if I only have one page?
If you only have one page, and that page is an AMP page, you must still add the canonical link to it, which will then simply point to itself:
Sometimes a third-party site (that embeds your AMP page or includes links to it) needs to know more about your page other than the fact that it is an AMP page. The questions a platform might ask about your page are things like “Are you a news article?”, “Or a video?”, or “Do you have a screenshot and short description?”.
This isn’t just relevant for AMP pages but for all web pages. For some platforms, this metadata is additional, for others it is a requirement, meaning they won’t show links to your content if you didn’t include the right metadata. Make sure you include the right metadata for the platforms you want your content to appear on.
Use Schema.org for most search engines
Schema.org offers open vocabularies to add meta data to all sorts of things. In the case of AMP, the properties that make sense in context include the specific type of content (i.e. ‘news article’), the headline, the published date and associated preview images.
Example:
More examples can be found in the ampproject examples folder, including the alternative HTML attribute syntax).
Other metadata for even more platforms
Head to the Social Discovery guide at Web Fundamentals to learn about all the other different ways of preparing your content for discovery and distribution.