templates/standard_tpl.html.twig line 1

Open in your IDE?
  1. {% extends "page_header.html.twig" %}
  2. {% macro render_author_bio(user) %}
  3.    <a href="#" class="post-author">
  4.          <div class="avatar">
  5.             <img src="{{ user.thumbnail|imagine_filter('thumbnail_small') }}" alt=""> 
  6.          </div>
  7.          <div class="info">
  8.             <h4 class="name">{{ user.getFullName() }}</h4>                                                
  9.             <p>{{ user.bio }}</p>
  10.             <span class="designation">All stories by : {{ user.getFullName() }}</span>
  11.          </div>
  12.    </a> 
  13. {% endmacro %}
  14. {% import _self as m %}