widget/sitemap: linkref part to format a single page
[minimedit.git] / widget / linkref.php
1 <?php
2         $article = new ArchiveArticle($Args);
3         printf('<a href="%s">%s</a>', $article->link, $article->name);
4         if ($article->image) {
5                 printf("\n\t".'<img class="right" src="/%s" />', $article->thumb('100x100'));
6         }
7         if ($article->teaser) {
8                 printf("\n\t<blockquote>%s</blockquote>",
9                         preg_replace('/\n(.*)/s', ' <small>\1</small>', $article->teaser)
10                 );
11         }