I have article pages marked up with schema.org microdata such as the following (simplified):
<div itemscope itemtype="http://schema.org/Article">
<div itemprop="name">My Article Title</div>
<div>by <span itemprop="author">John Doe</span></div>
<meta itemprop="url" content="/link/to/my-article" />
<div itemprop="articleBody">Article body goes here.</div>
</div>
I have various pages that link to these article pages, such as archive pages segmented by year and month, tag pages, search results, etc. On all of these pages that have links to articles, should I also add schema.org markup such as this:
<div itemscope itemtype="http://schema.org/Article">
<a itemprop="url" href="/link/to/my-article"><span itemprop="name">My Article Title</span></a>
</div>
Or is that frowned upon and/or penalized by the search engines?