grid.blade.php 1.52 KB
<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>