rel-author-fr
<entry-title>rel author</entry-title>
Résumé
rel="author" est pour associer un article ou un billet à une page ou site représentant son auteur, typiquement pour lui donner du crédit pour son travail (ou des portions, comme des livres, articles, billets de blog, etc.)
par ex. une page ou un billet écrit par Erin pourrait contenir un lien comme
<a href="http://erin.example.com/" rel="author">Erin Smith</a>
L'attribut rel="author"
indique que la destination du lien représente l'auteur de la page en cours (ou le billet).
Implémentations
Cette section est informative.
Un ensemble intéressant d'implémentation rel="author" est fourni par Google dans une vidéo postée sur Youtube :
- Authorship markup video and the respective implementation procedure.
extensions
query parameter alternative
Google has proposed an alternate mechanism for specifying rel=author on sites/CMSs that don't permit authors to specify the rel attribute, using a query parameter added to the URL instead. e.g. the above example with query parameter:
<a href="http://erin.example.com/?rel=author">Erin Smith</a>
This technique is explained in the following video:
- Authorship markup using URL parameters video and the new implementation procedure with the help of Google Profile (and hopefully, this type of implementation can be used on any other personal BIO page of respective author).
query param issues
- While I understand the motivation here, this is not a good idea. There will definitely be someone who has ?rel= as an actual query param meaning something in their app, and this will just break things. Singpolyma 17:56, 12 August 2011 (UTC)
- ...