Untitled

                Never    
HTML
       
<div class="container-fluid">
	<div class="row">
		<section class="col-lg-8 col-sm-12 blog" id="blog"> <!-- Start of recent articles -->	
					<div class="row">				
						<div class="offset-sm-2 col-sm-8 bg-white recent">
							<i class="fas fa-plus fa-3x float-left"></i>
							<h1 class="w-75 text-nowrap">RECENT ARTICLES</h1>
							<p class="w-50 clearfix">Here are my latest post ! </p>
						</div>
					</div>
					<div class="row">
						<?php
						foreach ($listeNews as $news){?>
						<div class="col-sm-6">
							<article class="blogpost">
								<div class="imgBx">
									<img src="images/<?=$news['image'] ?>" alt="" class="img-fluid">
								</div>
								<div class="content">
									<h2 class="itemrecent1"><?= $news['titre'] ?></h2>
									<p class="itemrecent1"><?= nl2br($news['contenu']) ?></p>
									<div class="itemrecent1"><a href="news-<?= $news['titre'] ?>-<?= $news['id'] ?>.html" class="btn btnD1">Read</a></div>
								</div>
								<div class="clearfix"></div>
							</article>
						</div>
						<?php } ?>   <!-- End of recent articles -->
					</div>
		</section>
		<aside class="col-lg-4 col-sm-12">
					<div class="row">
						<div class="col-sm-12 bg-white recent">
							<i class="fas fa-plus fa-3x float-left"></i>
							<h1 class="w-75 text-no">FOLLOW ME ON TWITTER !</h1>
							<p class="w-50 clearfix">To get in touch about my charts and crypto relative tweets.</p>
						</div>
					</div>
					<div class="row">
						<div class="col-sm-12">
							<div class="row">
								<div class="col-lg-12 col-md-6">
									<div class="twitterItem">
										<a class="twitter-timeline" data-width="315" data-height="350" data-theme="dark" href="https://twitter.com/TheChartRanger?ref_src=twsrc%5Etfw">Tweets by TheChartRanger</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
									</div>
								</div>
								<div class="col-lg-8 col-md-6">
									<h2 class="disclaimer">Disclaimer</h2>
									<p>This website references an opinion and is for entertainment and informational purposes only. It is not intended to be investment advice.</p>
								</div>
							</div>
						</div>
					</div>
			</aside>
		</div>
	</div>
</div>

Raw Text