<!doctype html>
<html lang="zxx">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
	<meta name="description" content="Get compelling, context-driven news, fact-based reporting, and a deeper look at the 'why' of each story with objective, impactful storytelling.">
	<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
	<meta name="format-detection" content="telephone=no" />
	<title>Scripps News | U.S. News and Latest World Headlines</title>
	<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
	<link href="all.css" rel="stylesheet" type="text/css" />
	<style>
		footer .top-bar .footer-logo {
			background-image: url("scripps-news-footer-logo.svg");
		}
	</style>
</head>
<body class="coming-soon-page">
	<div class="coming-soon-hero-module">
		<div class="container-small">
			<img class="logo" src="scripps-news-logo.svg"/>
			<h2 class="title">Scripps News to debut in January</h2>
			<p class="description">Scripps News delivers compelling, context-driven news, fact-based reporting, and a deeper look at the "why" of each story with objective, impactful storytelling.</p>
		</div>
	</div>
	<div class="coming-soon-recent-coverage-module">
		<div class="container-small">
			<h2 class="newsy-listing-title">Recent Coverage</h2>
			<div class="holder-sides">
				<div class="loading loading-absolute"></div>
			</div>
		</div>
	</div>
	<footer>
		<div class="container-small">
			<div class="top-bar">
				<a href="https://www.scrippsnews.com/" class="footer-logo">newsy</a>
			</div>
			<div class="bot-row">
				<p>© <span class="current-year">2022</span> Scripps News, part of The E.W. Scripps Company. All Rights Reserved.</p>
			</div>
		</div>
	</footer>
	<script type="text/javascript" src="jquery.2.1.4.min.js"></script>
	<script>
		$(document).ready(function(){
			$('footer .current-year').text(new Date().getFullYear());

			function getRecentCoverageRecords() {
				const storiesApiURL = 'https://api-v2.newsy.com/stories?limit=4';
				const storiesBaseURL = 'https://www.newsy.com/stories/';
				const moduleContainer = $('.coming-soon-recent-coverage-module');
				const loading = moduleContainer.find('.loading');
				moduleContainer.find('.article-item').css('opacity', 0);
				loading.show();

				const defaultArticlesHTML = '<article class="article-item">\n' +
						'<a target="_blank" href="https://www.newsy.com/stories/jan-6-panel-urges-criminal-charges-against-trump/" class="link-target">Jan. 6 Panel Urges Criminal Charges Against Former President Trump</a>\n' +
						'<figure class="figure">\n' +
						'<img src="https://cdn.newsy.com/images/videos/459x258/1671497482_OpV5NX.jpg" alt="Jan. 6 Panel Urges Criminal Charges Against Former President Trump" loading="lazy" width="393" height="217">\n' +
						'</figure>\n' +
						'<h3 class="title">Jan. 6 Panel Urges Criminal Charges Against Former President Trump</h3>\n' +
						'</article>\n' +
						'<article class="article-item">\n' +
						'<a target="_blank" href="https://www.newsy.com/stories/lawmakers-unveil-bill-to-avoid-government-shutdown/" class="link-target">Lawmakers Unveil Bill To Avoid Government Shutdown, Boost Ukraine Aid</a>\n' +
						'<figure class="figure">\n' +
						'<img src="https://cdn.newsy.com/images/videos/356x200/1671540815_HzQ2n4.jpg" alt="Lawmakers Unveil Bill To Avoid Government Shutdown, Boost Ukraine Aid" loading="lazy" width="393" height="217">\n' +
						'</figure>\n' +
						'<h3 class="title">Lawmakers Unveil Bill To Avoid Government Shutdown, Boost Ukraine Aid</h3>\n' +
						'</article>\n' +
						'<article class="article-item">\n' +
						'<a target="_blank" href="https://www.newsy.com/stories/chicago-bar-transforms-into-hanukkah-hot-spot-during-holiday/" class="link-target">Chicago Bar Transforms Into Hanukkah Hot Spot During The Holidays</a>\n' +
						'<figure class="figure">\n' +
						'<img src="https://cdn.newsy.com/images/videos/356x200/1671489275_At3bCs.jpg" alt="Chicago Bar Transforms Into Hanukkah Hot Spot During The Holidays" loading="lazy" width="393" height="217">\n' +
						'</figure>\n' +
						'<h3 class="title">Chicago Bar Transforms Into Hanukkah Hot Spot During The Holidays</h3>\n' +
						'</article>\n' +
						'<article class="article-item">\n' +
						'<a target="_blank" href="https://www.newsy.com/stories/how-science-can-help-you-stick-to-that-new-year-s-resolution/" class="link-target">How Science Can Help You Stick To That New Year\'s Resolution</a>\n' +
						'<figure class="figure">\n' +
						'<img src="https://cdn.newsy.com/images/videos/459x258/1671386402_fHKka8.jpg" alt="How Science Can Help You Stick To That New Year\'s Resolution" loading="lazy" width="393" height="217">\n' +
						'</figure>\n' +
						'<h3 class="title">How Science Can Help You Stick To That New Year\'s Resolution</h3>\n' +
						'</article>';
				$.ajax({
					url: storiesApiURL,
					type: 'get',
					dataType: 'json',
					success: function (response) {
						if(response.length > 0) {
							moduleContainer.find('.article-item').remove();
							$.each(response, function (key, item) {
								let html = '<article class="article-item">';
								html += '<a target="_blank" href="' + storiesBaseURL + item.id + '/" class="link-target">' + item.title + '</a>';
								if (item.image){
									html += '<figure class="figure">';
									html += '<img src="' + item.image.replace('/videos/m/', '/videos/356x200/') + '" alt="' + item.title + '" loading="lazy" width="393" height="217">';
									html += '</figure>';
								}
								html += '<h3 class="title">' + item.title + '</h3>';
								html += '</article>';
								moduleContainer.find('.holder-sides').append(html);
							});
						} else {
							moduleContainer.find('.holder-sides').append(defaultArticlesHTML);
						}
					},
					error: function (response) {
						moduleContainer.find('.holder-sides').append(defaultArticlesHTML);
					},
					complete: function (response){
						loading.hide();
					}
				});
			}
			getRecentCoverageRecords();
		});
	</script>
</body>
</html>