[Documentation de SPIP] Propose : To fill HTML Meta tags on article pages

Article proposé
---------------

L'article "To fill HTML Meta tags on article pages" est proposé à la
publication.
Vous êtes invité à venir le consulter et à donner votre opinion
dans le forum qui lui est attaché. Il est disponible à l'adresse :
http://www.spip.net/ecrire/articles.php3?id_article=2161

** To fill HTML Meta tags on article pages **
par Paul Knight

The goal of this example is to populate the meta tags on our page with the
list of keywords associated with the article as well as the names of the
authors.

<head> <BOUCLE_head(ARTICLES)id_article> <title>#TITRE</title> <meta
name="Description" content="#DESCRIPTIF"> <meta name="Keywords"
content="<BOUCLE_keywords(MOTS)id_article",">#TITRE </BOUCLE_keywords>">
<meta name="Author" content="<BOUCLE_author(AUTEURS)id_article",">#NOM
</BOUCLE_author>"> </BOUCLE_head> </head>

If you want to optimize the indexing of your site by search engines, you
can, for example, include the description of the article, the associated
keywords and the name of the authors in (...)