You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.2KB

  1. <?php
  2. use yii\helpers\Html ;
  3. ?>
  4. <div class="communiquer-mode-emploi<?php if(isset($pdf) && $pdf): ?> communiquer-mode-emploi-pdf<?php endif; ?><?php if(!isset($pdf)): ?> communiquer-mode-emploi-encart<?php endif; ?>">
  5. <div class="header">
  6. <div class="logo">
  7. <img src="./img/laboulange4.png" alt="Logo" />
  8. </div>
  9. <h1>La boîte à pain</h1>
  10. <h2>Plateforme de réservation de pain</h2>
  11. </div>
  12. <div class="clr"></div>
  13. <h3>Pour réserver votre pain en ligne</h3>
  14. <ol>
  15. <li>Inscrivez-vous sur <strong>www.laboiteapain.net</strong></li>
  16. <?php if(strlen($etablissement->code)): ?>
  17. <li>Ajoutez le producteur <strong><?= Html::encode($etablissement->nom); ?></strong><br />grâce au code : <span class="code"><strong><?= Html::encode($etablissement->code) ?></strong> <?php if(!isset($pdf)): echo Html::a('<span class="glyphicon glyphicon-pencil"></span>', ['etablissement/update'], ['class'=> 'btn btn-default btn-xs']); endif; ?></span></li>
  18. <?php else: ?>
  19. <li>Ajoutez la producteur <strong><?= Html::encode($etablissement->nom); ?></strong></li>
  20. <?php endif; ?>
  21. <li>Passez votre commande</li>
  22. </ol>
  23. </div>