Forum Moderators: Robert Charlton & goodroi
Interesting to know if Google will bother with understanding aside tag.
If it does the aside tag has to be inside the article according to the latest on HTML5 to belong to the copy otherwise it will be related to site.
<body>
<header>
<h1>My wonderful blog</h1>
<p>My tagline</p>
</header>
<aside>
<!-- this aside contains two sections that are tangentially related
to the page, namely, links to other blogs, and links to blog posts
from this blog -->
<nav>
<h1>My blogroll</h1>
<ul>
<li><a href="http://blog.example.com/">Example Blog</a>
</ul>
</nav>
<nav>
<h1>Archives</h1>
<ol reversed>
<li><a href="/last-post">My last post</a>
<li><a href="/first-post">My first post</a>
</ol>
</nav>
</aside>
<aside>
<!-- this aside is tangentially related to the page also, it
contains twitter messages from the blog author -->
<h1>Twitter Feed</h1>
<blockquote cite="http://twitter.example.net/t31351234">
I'm on vacation, writing my blog.
</blockquote>
<blockquote cite="http://twitter.example.net/t31219752">
I'm going to go on vacation soon.
</blockquote>
</aside>
<article>
<!-- this is a blog post -->
<h1>My last post</h1>
<p>This is my last post.</p>
<footer>
<p><a href="/last-post" rel=bookmark>Permalink</a>
</footer>
</article>
<article>
...
http://www.w3.org/TR/html5/sections.html#the-aside-element
The spec has changed to allow aside to be used for secondary content, changing its context depending on whether it's contained within an article.here [html5doctor.com...] I first read about this relationship in 2009 in the above article.
here [html5doctor.com...] I first read about this relationship in 2009 in the above article.
I had a look at the current W3C website editors draft and there are plenty of examples in the comments on the first code block:
In my eyes all 3 resources say the same thing:
As for <aside> information outside the <article> personally I like the majority we never do this.
If the above is true or not I don't think Google would trust the implementation anyway.