Skip to content

Instantly share code, notes, and snippets.

@pafnuty
Last active August 29, 2015 14:15
Show Gist options
  • Save pafnuty/c2d04526454cb19e5e97 to your computer and use it in GitHub Desktop.
Save pafnuty/c2d04526454cb19e5e97 to your computer and use it in GitHub Desktop.
Как вывести ссылку на автора новости в blockpro http://bp.pafnuty.name/examples/#c2d04526454cb19e5e97
{* Формируем ссылку на автора новости с посмотром попап-профиля *}
{*Пробегаем по массиву с новостями*}
{foreach $list as $el}
{set $urlUser = $el.autor|escape:'url'} {* https://github.com/fenom-template/fenom/blob/8ce6779119c098562d2bafba9167fbb4e2a222be/docs/ru/mods/escape.md *}
<a href="/user/{$urlUser}" onclick="ShowProfile('{$urlUser}', '/user/{$urlUser}/', '1'); return false;">{$el.autor}</a>
{/foreach}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment