|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
-
-
-
- use yii\helpers\Html;
-
-
-
-
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>" />
- <title><?= Html::encode($this->title) ?></title>
- <?php $this->head() ?>
- <style type="text/css">
- body {
- font-family: Arial ;
- font-size: 14px ;
- }
-
- a {
- color:
- }
-
-
- width: 70px ;
- position: relative;
- bottom: -17px ;
- }
-
-
- padding: 15px ;
- background-color: white ;
- }
-
-
- padding: 5px 15px ;
- color: gray ;
- border-top: dotted 1px
- text-align: center ;
- }
-
-
- text-decoration: none ;
- color:
- }
-
-
- width: 45px ;
- }
-
-
- margin-top: 10px ;
- }
- </style>
- </head>
- <body>
- <?php $this->beginBody() ?>
- <div id="content">
- <?= $content ?>
- </div>
- <div id="footer">
- <a id="link-distrib" href="http://www.opendistrib.net/"><img src="http://www.opendistrib-dev.net/img/logo-distrib.png" alt="distrib" /></a>
- <div class="baseline">Plateforme de gestion de commandes</div>
- </div>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|