16 lines
663 B
Smarty
16 lines
663 B
Smarty
<h3>Twitter</h3>
|
|
{literal}
|
|
<a href="https://twitter.com/Ponytopia" class="twitter-follow-button" data-show-count="true">Follow @Ponytopia</a>
|
|
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
|
|
{/literal}
|
|
{if $status==""}
|
|
No tweets :(
|
|
{else}
|
|
{foreach from=$status item=stat}
|
|
<p><a href="http://twitter.com/{$stat.screen_name}"><img src="{$stat.image}" style="border:none;"/>
|
|
{$stat.user}</a>:
|
|
{$stat.text}<br />
|
|
<small>at {$stat.date}</small>
|
|
</p>
|
|
{/foreach}
|
|
{/if}
|