<div class="actor-detail-active">
  <h1 class="text-center text-uppercase">{{object.foaf:firstName}} {{object.foaf:name}}</h1>
  <div class="detail-content">
    <h2>Description</h2>
    <p>{{object.pair:description}}</p>

    <div class="row personal-information">
      <h2>Informations personnelles</h2>
      <div class="col-md-3 equal profile-picture">
        <img height="200" width="200" src="{{object.foaf:img}}" alt="Photo de profil" />
      </div>
      <div class="col-md-9 equal information-content">
        {{#if object.pair:zipCode}}
          <p>Adresse: {{object.pair:zipCode}} {{object.pair:town}}, {{object.pair:country}}</p>
        {{/if}}
        {{#if object.foaf:homePage}}
          <p>Personal Website: {{object.foaf:homePage}}</p>
        {{/if}}
        {{#if object.foaf:mbox}}
          <p>Contact: <a href="mailto:{{object.foaf:mbox}}">{{object.foaf:mbox}}</a></p>
        {{/if}}

        {{#if object.pair:socialNetworks}}
        <p>Réseaux sociaux:
          <ul>
            {{#each object.pair:socialNetworks}}
              <li><a href="{{'@id'}}">{{'@id'}}</a></li>
            {{/each}}
          </ul>
        </p>
        {{/if}}
      </div>
    </div>

    {{#if object.posts}}
      <div class="row" id="author-posts">
        <h2>Ses posts de blog</h2>

        <div class="container">
          {{#each object.posts}}
            {{>postItem this}}
          {{/each}}
        </div>
      </div>
    {{/if}}
  </div>
</div>
