<?php header('Content-type: text/html; charset=utf-8'); ?>
<?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */

  // load viewer library
  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';
  $dirsToCheck = array('/var/www/html/rossinimanagement.com/','','../','../../','../../../');
  foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}
  if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }


  // load records
  list($newsRecords, $newsMetaData) = getRecords(array(
    'tableName'   => 'news',
  ));

?>
<!DOCTYPE html>
<html>
	<head>
	<title>Innovative Logistics Management Solutions for Businesses</title>
	<meta name="description" content="Looking for a company experienced in logistics management? Call (816) 666-8404 to connect to our results driven team today!">
	<meta name="KeyWords" content="logistics management, Belton, MO">
	<meta name="classification" content="Material Handling">
	<meta name="ROBOTS" content="ALL">
	<meta name="rating" content="General">
	<meta name="resource-type" content="document">
	<meta name="revisit-after" content="30 days">

		
		<!-- Mobile Meta -->
		<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
		
		<!-- Put favicon.ico and apple-touch-icon(s).png in the images folder -->
	    <link rel="shortcut icon" href="assets/images/favicon.ico">
		    	
		<!-- CSS StyleSheets -->
		<link href='https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900' rel='stylesheet' type='text/css'>
		<link rel="stylesheet" href="assets/css/assets.css">
		
		<link rel="stylesheet" href="assets/css/style.css">
		<link id="theme_css" rel="stylesheet" href="assets/css/light.css">
		
		<!-- REVOLUTION SLIDER STYLES -->
		<link rel="stylesheet" href="assets/revolution/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css" type="text/css">
		<link rel="stylesheet" href="assets/revolution/css/settings.css" type="text/css">
		<link rel="stylesheet" href="assets/revolution/css/layers.css" type="text/css">
		<link rel="stylesheet" href="assets/revolution/css/navigation.css" type="text/css">
		<!--[if lt IE 9]>
	    	<script type="text/javascript" src="assets/js/html5.js"></script>
	    <![endif]-->
		
		<!-- Skin CSS file -->
		<link id="skin_css" rel="stylesheet" href="assets/css/skins/kuecker2.css">
		
	</head>
<body bgColor="#c3c3c3">
<table style="background-color:#f7f7f7; width:233px; height: 300px;">
  <tr>
     <td>
    <?php foreach ($newsRecords as $record): ?>
      <a href="<?php echo $record['_link'] ?>" target="_blank"><h5><?php echo $record['title'] ?></h5></a>
    <?php endforeach ?>

    <?php if (!$newsRecords): ?>
      No records were found!<br/><br/>
    <?php endif ?>
  </tr>
</table>
</html>
</body>