articles.blade.php 1014 Bytes
<div class="home-articles clearfix no-gutter">
    <header class="home-articles-header">
        <a href="/news">Latest News <span class="icn-tick-right"></span></a>
    </header>
    
    <div class="col-xs-12 col-md-8">
        <div class="clearfix small-gutter with-gutter">
            @foreach ($articles as $article)
                <div class="home-article col-xs-12 col-ms-6">
                    <a href="{{ $article->getUrl() }}" target="_blank" {!! $article->getPublisher() !== 'FootyRoom' ? 'rel="ugc"' : '' !!}>
                        <img class="home-article-img" src="{!! $article->getThumbnailUrl() !!}">
                        <div class="home-article-title mt10">{{ $article->getTitle() }}</div>
                    </a>
                </div>
            @endforeach
        </div>
    </div>

    <div class="col-xs-12 col-md-4 hidden-xs hidden-ms hidden-sm small-gutter">
        <div class="clearfix">
            @include('transferCenter/instagramWidget')
        </div>
    </div>
</div>