Skip to content

Instantly share code, notes, and snippets.

@aquelito
Created November 6, 2012 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aquelito/4027945 to your computer and use it in GitHub Desktop.
Save aquelito/4027945 to your computer and use it in GitHub Desktop.
Page Article Schema - BlogPosting
<!DOCTYPE html>
<html lang="fr" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="UTF-8" />
<title>Titre de l'article</title>
<meta itemprop="name" content="Titre de l'article" />
<meta itemprop="description" content="Coutre description de l'article" />
</head>
<body>
<div id="wrapper">
<div id="container">
<div id="content">
<p id="breadcumb" itemtype="http://schema.org/Breadcrumb" itemscope itemprop="breadcrumb">Vous êtes dans&nbsp;: <a itemprop="url" href="#">Accueil</a> > <a itemprop="url" href="#">Blog</a> > <a itemprop="url" href="#">Rubriques</a> > Hello world!</p>
<div id="main" role="main">
<div id="post-1" itemprop="about" itemscope itemtype="http://schema.org/BlogPosting">
<h1 itemprop="name">Titre de l'article</h1>
<img itemprop="image" alt="" src="http://placehold.it/350x150" />
<div itemprop="articleBody">
<p>Description de l'article</p>
</div>
<ul>
<li>Écrit le
<time itemprop="datePublished dateCreated" datetime="2012-10-21T04:06:49+00:00">21 octobre 2012</time>
</li>
<li>Catégories <a href="#" itemprop="genre">Catégorie</a></li>
<li>Mots-clés <a href="#" itemprop="keywords">Mot clé 1</a>, <a href="#" itemprop="keywords">Mot clé 2</a></li>
</ul>
<meta itemprop="interactionCount" content="UserComments:3">
<div id="author-prenom-nom" itemprop="author" itemscope itemtype="http://schema.org/Person">
<h2>À propos de <span itemprop="name">Prénom Nom</span></h2>
<p itemprop="description">Biographie de l'auteur</p> <a itemprop="url" rel="author" href="#"> Profil de Prénom Nom</a>
</div><!-- end #author-prenom-nom -->
<div id="comments">
<ol>
<li id="comment-1" itemprop="comment" itemscope itemtype="http://schema.org/UserComments"> <cite itemprop="creator name">Auteur 1</cite>
<time datetime="2012-10-25T12:00:00+00:00" itemprop="commentTime">25 octobre 2012 à 12 h 00 min</time>
<a href="#" itemprop="replyToUrl">Répondre</a>
<div itemprop="commentText">
<p>Texte du premier commentaire</p>
</div>
<ul class="children">
<li id="comment-2" itemprop="discusses" itemscope itemtype="http://schema.org/UserComments"> <cite itemprop="creator name">Auteur 2</cite>
<time datetime="2012-10-26T12:00:00+00:00" itemprop="commentTime">26 octobre 2012 à 12 h 00 min</time>
<a href="#" itemprop="replyToUrl">Répondre</a>
<div itemprop="commentText">
<p>Texte du second commentaire, en réponse au premier</p>
</div>
</li>
</ul>
</li>
<li id="comment-3" itemprop="comment" itemscope itemtype="http://schema.org/UserComments">
<cite itemprop="creator name">Author 3</cite>
<time datetime="2012-10-28T12:00:00+00:00" itemprop="commentTime">28 octobre 2012 à 12 h 00 min</time>
<a href="#" itemprop="replyToUrl">Répondre</a>
<div itemprop="commentText">
<p>Texte du troisième commentaire</p>
</div>
</li>
</ol>
</div><!-- end #comments -->
</div><!-- end #post-1 -->
</div><!-- end #main -->
</div><!-- end #content -->
</div><!-- end #container -->
</div><!-- end #wrapper -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment