Vous pouvez télécharger le fichier en pièce jointe (j'attends de voir s'il ne serait pas possible de simplifier tout ça et le renommer home.html puis le placer dans le répertoire de votre thème ou procéder vous-même au changement suivant :

Dans le fichier home.html, remplacer :

<tpl:EntryIf extended="1">
  <div class="post-content">{{tpl:EntryExcerpt}}</div>
  <p class="read-it"><a href="{{tpl:EntryURL}}"
  title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
  reading}}</a>...</p>
</tpl:EntryIf>
    
<!-- # Entry without excerpt -->
<tpl:EntryIf extended="0">
  <div class="post-content">{{tpl:EntryContent}}</div>
</tpl:EntryIf>

Par :

<!-- # si on est sur le premier billet et qu'il n'a pas d'extrait -->
<tpl:EntryIf first="1" extended="0">

  <!-- premier billet de la premiere page -->
  <tpl:PaginationIf start="1">
    <div class="post-content">{{tpl:EntryContent}}</div>
  </tpl:PaginationIf>
 
  <!-- premier billet sans extrait d'une page suivante -->
  <tpl:PaginationIf start="0">
    <div class="post-content"><p>{{tpl:EntryContent 
      remove_html="1" cut_string="400"}} (...) <span class="read-it"><a href="{{tpl:EntryURL}}"
      title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
      reading}}</a>...</span></p></div>
      <p class="read-it"><a href="{{tpl:EntryURL}}"
      title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
      reading}}</a>...</p>
  </tpl:PaginationIf>
</tpl:EntryIf>

<!-- si on est sur le premier billet et qu'il a un extrait -->
<tpl:EntryIf first="1" extended="1">

  <!-- premier billet de la premiere page -->
  <tpl:PaginationIf start="1">
    <div class="post-content">{{tpl:EntryExcerpt}}{{tpl:EntryContent}}</div>
  </tpl:PaginationIf>
 
  <!-- premier billet avec extrait d'une page suivante -->
  <tpl:PaginationIf start="0">
    <div class="post-content"><p>{{tpl:EntryExcerpt 
      remove_html="1" cut_string="400"}} (...) <span class="read-it"><a href="{{tpl:EntryURL}}"
      title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
      reading}}</a>...</span></p></div>
      <p class="read-it"><a href="{{tpl:EntryURL}}"
      title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
      reading}}</a>...</p>
  </tpl:PaginationIf>
</tpl:EntryIf>    


<!-- # si on n'est pas sur le premier billet -->
<tpl:EntryIf first="0" extended="0">
  
  <div class="post-content"><p>{{tpl:EntryContent remove_html="1" cut_string="400"}} (...) <span
   class="read-it"><a href="{{tpl:EntryURL}}"
    title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
    reading}}</a>...</span></p></div>
</tpl:EntryIf>

<tpl:EntryIf first="0" extended="1">
  
  <div class="post-content"><p>{{tpl:EntryExcerpt remove_html="1" cut_string="400"}} (...) <span
   class="read-it"><a href="{{tpl:EntryURL}}"
    title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
    reading}}</a>...</span></p></div>
</tpl:EntryIf>