Commit 5f6947142925c7d3ff2da7da2e0131c94c4b02bd
1 parent
f981b4b2
- events
Showing
2 changed files
with
6 additions
and
10 deletions
Show diff stats
frontend/views/event/view.php
... | ... | @@ -41,7 +41,7 @@ _________________________________________________________ --> |
41 | 41 | [ |
42 | 42 | 'alias' => $tag->alias |
43 | 43 | ] |
44 | - ) ?>"><i class="fa fa-tags"></i> <?= $tag->label; ?></a> | |
44 | + ) ?>"><i class="fa fa-tags"></i> <?= $tag->title; ?></a> | |
45 | 45 | </li> |
46 | 46 | <?php } ?> |
47 | 47 | </ul> |
... | ... | @@ -183,7 +183,7 @@ _________________________________________________________ --> |
183 | 183 | [ |
184 | 184 | 'alias' => $tag->alias |
185 | 185 | ] |
186 | - ) ?>"><i class="fa fa-tags"></i> <?= $tag->label; ?></a> | |
186 | + ) ?>"><i class="fa fa-tags"></i> <?= $tag->title; ?></a> | |
187 | 187 | </li> |
188 | 188 | <?php } ?> |
189 | 189 | </ul> | ... | ... |
frontend/views/site/index.php
... | ... | @@ -22,13 +22,9 @@ _________________________________________________________ --> |
22 | 22 | |
23 | 23 | <div class="container"> |
24 | 24 | <div class="homepage owl-carousel" > |
25 | - | |
25 | + | |
26 | 26 | <?php foreach ($slides as $key => $slide){?> |
27 | - <div class="home-carousel" | |
28 | - <?php if ($slide->background !== null){?> | |
29 | - style="background: url(<?=$slide->background->getUrl()?>) center center repeat" | |
30 | - <?php } ?> | |
31 | - > | |
27 | + | |
32 | 28 | <div class="item"> |
33 | 29 | <div class="row"> |
34 | 30 | <div class="col-sm-5 <?=($key%2 == 0) ? 'right' : ''?>"> |
... | ... | @@ -45,9 +41,9 @@ _________________________________________________________ --> |
45 | 41 | </div> |
46 | 42 | </div> |
47 | 43 | </div> |
48 | - </div> | |
44 | + | |
49 | 45 | <?php }?> |
50 | - </div> | |
46 | + </div> | |
51 | 47 | <!-- /.project owl-slider --> |
52 | 48 | </div> |
53 | 49 | </div> | ... | ... |