templates/_partials/home/latest_tweets.html.twig line 1

Open in your IDE?
  1. <h3>Derniers Tweets</h3>
  2. <div class="footer_tweet">
  3.     {% if tweets is not null %}
  4.     <ul>
  5.         {% for tweet in tweets %}
  6.             <li>
  7.                 <a href="https://twitter.com/jphNovitz" target="_blank">@jphNovitz </a>, le <a href="{{ tweet.link }}" target="_blank"> {{ tweet.date }}</a>
  8.                 <br />{{ tweet.text|nl2br }}
  9.             </li>
  10.         {% endfor %}
  11.     </ul>
  12.     {% else %}
  13.     <p class="footer_mail">Tweets désactivés <br />
  14.         <a href="https://twitter.com/jiphphi" target="_blank" class="footer_content">@jiphphi </a>
  15.     </p>
  16.     {% endif %}
  17. </div>