Blame view

frontend/modules/page/views/find/index.php 584 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <?php
  
  
  ?>
  
      <div class="w" style="min-height: 1000px"><!---->
          <h1 style="font-size: 40px"> Search: <?= $condition ?></h1>
  
  
          <div class="row">
  
              <?php if ($posts): ?>
                  <?php foreach ($posts as $post) : ?>
                      <div class="col-md-12">
                          <a href="<?= $post->getUrl() ?>"> <?= $post['lang']['title'] ?> </a>
                      </div>
  
                  <?php endforeach; ?>
  
              <?php else : ?>
                  <h1> Not found </h1>
              <?php endif; ?>
  
          </div>
      </div>
  
  <?php