[HOME]

Path : /home/hermanostamargo/www/bloques/
Upload :
Current File : /home/hermanostamargo/www/bloques/bloques-amp.php

    <? include "sql_bloques.php"; ?>
	<? if( mysqli_num_rows($res_bloques) > 0 ) { ?>
		<br>
		<hr>
		<br>
		<section class="container">				
			<? while($arr_asoc_bloques = mysqli_fetch_array($res_bloques)){ ?>
				<article class="bloques">
					<?
					$img_size_bloques = URL_ROOT."/images/" . $arr_asoc_bloques['imagen'];
					list($width_img_bloques, $height_img_bloques) = getimagesize($img_size_bloques);
					?>
					
					<amp-img width="<?=$width_img_bloques?>" height="<?=$height_img_bloques?>" src="<?=PROTOCOL.DOMAIN_NAME?>images/<?=$arr_asoc_bloques['imagen']?>" alt="strip_tags(<?=$arr_asoc_bloques['titulo']?>)" layout="responsive"></amp-img>
					<a class="text-danger" href="<?=$arr_asoc_bloques['enlace']?>"><h2><?=strip_tags($arr_asoc_bloques['titulo'])?></h2></a>
					<p><?=wordlimit(strip_tags($arr_asoc_bloques['descripcion']), $length = 25, $ellipsis = "...")?></p>
					<a href="<?=$arr_asoc_bloques['enlace']?>" <?=$target?> class="btn bg-secondary text-white">Leer más  &nbsp;<i class="fa fa-angle-double-right" aria-hidden="true"></i></a>
					
				</article>
				<br>
		         
			<? } ?>
		</section>
		<hr>
		<br>
	<? } ?>