Blame view

resources/views/posts/grid.blade.php 1.52 KB
e77200db5   nologostudio.ru   Initial 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  <style>
  	.grid-card--match .card-image,
  	.card--match .card-image {
  		display:none;
  	}
  </style>
  
  <div class="posts-page clearfix {{ ($page === 1)? 'first-page' : '' }}">
  	@for ($counter = 0; $counter < count($posts) && $post = $posts[$counter];  $counter++)
  		@include('posts/videoPost', ['postCssClass' => $postCssClass ?? ''])
  
  		@if ($counter === 11)
  			<div class="clear">&nbsp;</div>
  			@if (!$isPrerenderRequest && ($isShowAds ?? true))
  				<div class="wide_sponsors">
  					<div class="FR_WideBoard_Middle">
  						<div id='wideboard-middle-page-{{ $page }}' data-refresh-time="-1">
  							@if ($page === 1)
  							<!-- FootyRoom-1 -->
  <!-- Tag ID: footyroomCO_728x90_970x90_970x250_ATF -->
  <div align="center" data-freestar-ad="__970x250" id="footyroomCO_728x90_970x90_970x250_ATF">
    <script data-cfasync="false" type="text/javascript">
      freestar.config.enabled_slots.push({ placementName: "footyroomCO_728x90_970x90_970x250_ATF", slotId: "footyroomCO_728x90_970x90_970x250_ATF" });
    </script>
  </div>
  				@else
  								<!-- FootyRoom-2 -->
  <ins class="adsbygoogle"
  style="display:block"
  data-ad-client="ca-pub-7050889928379236"
  data-ad-slot="3303759140"
  data-ad-format="auto"
  data-full-width-responsive="true"></ins>
  <script>
  (adsbygoogle = window.adsbygoogle || []).push({});
  </script>
  								@endif
  						</div>
  					</div>
  				</div>
  			@endif
  		@endif
  	@endfor
  
  	@if (!$posts)
  		<div class="no-matches-warning">No matches were found, probably because it's the start of the new season. Choose previous seasons from the menu.</div>
  	@endif
  </div>