editor Logout
Account Preferences
Did you know...
Jupiter is experiencing global warming, and it has no SUVs or humans. ?
Streaming Radio Guide
view source - https://www.ktbb.com/
*** Test System *** GO TO PRODUCTION
<!-- Revised 4/27/21 Foundation 5.5.3--> <!DOCTYPE HTML> <html class="no-js" lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="KTBB News Weather Talk "> <meta name="dcterms.dateCopyrighted" content="2021"> <meta name="dcterms.rightsHolder" content="Paul Gleiser - Gleiser Communications LLC"> <meta name="apple-mobile-web-app-title" content="KTBB 97.5 FM"> <script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script> <title>KTBB News, Weather, Talk &#8211; KTBB News, Weather, Talk</title> <meta name='robots' content='noindex, nofollow' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel='dns-prefetch' href='//ktbb.com' /> <link rel="alternate" type="application/rss+xml" title="KTBB News, Weather, Talk &raquo; Feed" href="https://ktbb.com/post/?feed=rss2" /> <link rel="alternate" type="application/rss+xml" title="KTBB News, Weather, Talk &raquo; Comments Feed" href="https://ktbb.com/post/?feed=comments-rss2" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/ktbb.com\/post\/wp-includes\/js\/wp-emoji.js?ver=6.8.2","twemoji":"https:\/\/ktbb.com\/post\/wp-includes\/js\/twemoji.js?ver=6.8.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This is used to determine if the browser is rendering an emoji with multiple data points * correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji * in the incorrect form, using a zero-width space. If the two sets render the same, then the browser * does not support the emoji correctly. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Checks if the center point of a single emoji is empty. * * This is used to determine if the browser is rendering an emoji with a single data point * correctly. The center point of an incorrectly rendered emoji will be empty. A correctly * rendered emoji will have a non-zero value at the center point. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.8.2 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} emoji Emoji to test. * * @return {boolean} True if the center point is empty. */ function emojiRendersEmptyCenterPoint( context, emoji ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( emoji, 0, 0 ); // Test if the center point (16, 16) is empty (0,0,0,0). var centerPoint = context.getImageData(16, 16, 1, 1); for ( var i = 0; i < centerPoint.data.length; i++ ) { if ( centerPoint.data[ i ] !== 0 ) { // Stop checking the moment it's known not to be empty. return false; } } return true; } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for Sark flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([C] + [Q]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDE8\uD83C\uDDF6', // as the sequence of two code points '\uD83C\uDDE8\u200B\uD83C\uDDF6' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Does Emoji 16.0 cause the browser to go splat? * * To test for Emoji 16.0 support, try to render a new emoji: Splatter. * * The splatter emoji is a single code point emoji. Testing for browser support * required testing the center point of the emoji to see if it is empty. * * 0xD83E 0xDEDF (\uD83E\uDEDF) == 🫟 Splatter. * * When updating this test, please ensure that the emoji is either a single code point * or switch to using the emojiSetsRenderIdentically function and testing with a zero-width * joiner vs a zero-width space. */ var notSupported = emojiRendersEmptyCenterPoint( context, '\uD83E\uDEDF' ); return ! notSupported; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString(), emojiRendersEmptyCenterPoint.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://ktbb.com/post/wp-includes/css/dist/block-library/style.css?ver=6.8.2' media='all' /> <style id='wp-block-library-theme-inline-css'> .wp-block-audio :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-audio :where(figcaption){ color:#ffffffa6; } .wp-block-audio{ margin:0 0 1em; } .wp-block-code{ border:1px solid #ccc; border-radius:4px; font-family:Menlo,Consolas,monaco,monospace; padding:.8em 1em; } .wp-block-embed :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-embed :where(figcaption){ color:#ffffffa6; } .wp-block-embed{ margin:0 0 1em; } .blocks-gallery-caption{ color:#555; font-size:13px; text-align:center; } .is-dark-theme .blocks-gallery-caption{ color:#ffffffa6; } :root :where(.wp-block-image figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme :root :where(.wp-block-image figcaption){ color:#ffffffa6; } .wp-block-image{ margin:0 0 1em; } .wp-block-pullquote{ border-bottom:4px solid; border-top:4px solid; color:currentColor; margin-bottom:1.75em; } .wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{ color:currentColor; font-size:.8125em; font-style:normal; text-transform:uppercase; } .wp-block-quote{ border-left:.25em solid; margin:0 0 1.75em; padding-left:1em; } .wp-block-quote cite,.wp-block-quote footer{ color:currentColor; font-size:.8125em; font-style:normal; position:relative; } .wp-block-quote:where(.has-text-align-right){ border-left:none; border-right:.25em solid; padding-left:0; padding-right:1em; } .wp-block-quote:where(.has-text-align-center){ border:none; padding-left:0; } .wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote:where(.is-style-plain){ border:none; } .wp-block-search .wp-block-search__label{ font-weight:700; } .wp-block-search__button{ border:1px solid #ccc; padding:.375em .625em; } :where(.wp-block-group.has-background){ padding:1.25em 2.375em; } .wp-block-separator.has-css-opacity{ opacity:.4; } .wp-block-separator{ border:none; border-bottom:2px solid; margin-left:auto; margin-right:auto; } .wp-block-separator.has-alpha-channel-opacity{ opacity:1; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots){ width:100px; } .wp-block-separator.has-background:not(.is-style-dots){ border-bottom:none; height:1px; } .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){ height:2px; } .wp-block-table{ margin:0 0 1em; } .wp-block-table td,.wp-block-table th{ word-break:normal; } .wp-block-table :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-table :where(figcaption){ color:#ffffffa6; } .wp-block-video :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-video :where(figcaption){ color:#ffffffa6; } .wp-block-video{ margin:0 0 1em; } :root :where(.wp-block-template-part.has-background){ margin-bottom:0; margin-top:0; padding:1.25em 2.375em; } </style> <style id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #fff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--dark-gray: #111;--wp--preset--color--light-gray: #f1f1f1;--wp--preset--color--yellow: #f4ca16;--wp--preset--color--dark-brown: #352712;--wp--preset--color--medium-pink: #e53b51;--wp--preset--color--light-pink: #ffe5d1;--wp--preset--color--dark-purple: #2e2256;--wp--preset--color--purple: #674970;--wp--preset--color--blue-gray: #22313f;--wp--preset--color--bright-blue: #55c3dc;--wp--preset--color--light-blue: #e9f2f9;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--gradient--dark-gray-gradient-gradient: linear-gradient(90deg, rgba(17,17,17,1) 0%, rgba(42,42,42,1) 100%);--wp--preset--gradient--light-gray-gradient: linear-gradient(90deg, rgba(241,241,241,1) 0%, rgba(215,215,215,1) 100%);--wp--preset--gradient--white-gradient: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);--wp--preset--gradient--yellow-gradient: linear-gradient(90deg, rgba(244,202,22,1) 0%, rgba(205,168,10,1) 100%);--wp--preset--gradient--dark-brown-gradient: linear-gradient(90deg, rgba(53,39,18,1) 0%, rgba(91,67,31,1) 100%);--wp--preset--gradient--medium-pink-gradient: linear-gradient(90deg, rgba(229,59,81,1) 0%, rgba(209,28,51,1) 100%);--wp--preset--gradient--light-pink-gradient: linear-gradient(90deg, rgba(255,229,209,1) 0%, rgba(255,200,158,1) 100%);--wp--preset--gradient--dark-purple-gradient: linear-gradient(90deg, rgba(46,34,86,1) 0%, rgba(66,48,123,1) 100%);--wp--preset--gradient--purple-gradient: linear-gradient(90deg, rgba(103,73,112,1) 0%, rgba(131,93,143,1) 100%);--wp--preset--gradient--blue-gray-gradient: linear-gradient(90deg, rgba(34,49,63,1) 0%, rgba(52,75,96,1) 100%);--wp--preset--gradient--bright-blue-gradient: linear-gradient(90deg, rgba(85,195,220,1) 0%, rgba(43,180,211,1) 100%);--wp--preset--gradient--light-blue-gradient: linear-gradient(90deg, rgba(233,242,249,1) 0%, rgba(193,218,238,1) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='twentyfifteen-fonts-css' href='https://ktbb.com/post/wp-content/themes/twentyfifteen/assets/fonts/noto-sans-plus-noto-serif-plus-inconsolata.css?ver=20230328' media='all' /> <link rel='stylesheet' id='genericons-css' href='https://ktbb.com/post/wp-content/themes/twentyfifteen/genericons/genericons.css?ver=20201026' media='all' /> <link rel='stylesheet' id='twentyfifteen-style-css' href='https://ktbb.com/post/wp-content/themes/ktbb2020/style.css?ver=20250415' media='all' /> <link rel='stylesheet' id='twentyfifteen-block-style-css' href='https://ktbb.com/post/wp-content/themes/twentyfifteen/css/blocks.css?ver=20240715' media='all' /> <script src="https://ktbb.com/post/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script src="https://ktbb.com/post/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script id="twentyfifteen-script-js-extra"> var screenReaderText = {"expand":"<span class=\"screen-reader-text\">expand child menu<\/span>","collapse":"<span class=\"screen-reader-text\">collapse child menu<\/span>"}; </script> <script src="https://ktbb.com/post/wp-content/themes/twentyfifteen/js/functions.js?ver=20250303" id="twentyfifteen-script-js" defer data-wp-strategy="defer"></script> <link rel="https://api.w.org/" href="https://ktbb.com/post/index.php?rest_route=/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://ktbb.com/post/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.8.2" /> <style type="text/css">.more a {color: #0066C8 !important; font-weight: bold;} .roster_slider .roster_nav a{ border: none !important;font-size:.7rem !important;} .roster_slider .roster_nav a.activeSlide{outline:none !important;} .roster_excerpt { line-height: 1.4rem; }</style> <style id="wp-custom-css"> .uagb-container-inner-blocks-wrap { max-width: 1480px !important; } .custom-dashboard { padding: 1rem; padding-top: 40px; } </style> <!-- Wordpress --> <meta property="og:title" content="KTBB - News, Weather, Talk"> <meta property="og:site_name" content="KTBB.com"> <meta property="og:url" content="https://ktbb.com/"> <meta property="og:description" content="KTBB is an American terrestrial radio station broadcasting a News-Talk format and simulcasted on 97.5 KTBB-FM. Licensed to Tyler, Texas, United States, the station serves the Tyler-Longview area"> <meta property="og:type" content="website"> <meta property="og:image" content="https://ktbb.com/post/wp-content/media/2020/04/placeholder2.jpg"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <link rel="shortcut icon" type="image/x-icon" href="https://www.ktbb.com/favicon.ico"> <link rel="stylesheet" href="css/foundation.css"> <link rel="stylesheet" href="css/tweak.css"> <link rel="stylesheet" href="css/weather-magnet.css"> <!--[if lt IE 9]> <script src="js/html5shiv.min.js"></script> <![endif]--> <script src="js/jquery.js"></script> <script src="js/foundation.min.js"></script> <style> .home-thumbs { width: 80px; height: 70px; float: left; margin-right: .3rem !important } </style> </head> <body id="top"> <!-- Tavern Town Hall Leaderboard --> <!-- <div class="row" style="margin-top:.3rem"> <div class="columns centered"> <section class="centered hidden-for-medium-down"> <a href="https://www.ktbb.com/jimmy/"><img src="jimmy/images/jimmybannercountrytavern1520.jpg" alt="Tavern Town Hall Leaderboard" title="Tavern Town Hall"></a> </section> <section class="show-for-medium-down centered"> <a href="https://www.ktbb.com/jimmy/"><img src="jimmy/images/jimmybannercountrytavern600.jpg" alt="Tavern Town Hall Leaderboard" title="Tavern Town Hall"></a> </section> </div> </div> --> <!-- Constitution Leaderboard --> <div class="row" style="margin-top:.3rem"> <div class="columns centered"> <section class="centered hidden-for-medium-down"> <a href="https://www.ktbb.com/constitution/"><img src="images/leaderboards/constitutionminute1520.jpg" alt="Constitution Minute banner" title="Constitution Minute"></a> </section> <section class="show-for-medium-down centered"> <a href="https://www.ktbb.com/constitution/"><img src="images/leaderboards/constitutionminutebanner600.jpg" alt="Constitution Minute" title="Constitution Minute"></a> </section> </div> </div> <!-- World Tour Super Leaderboard --> <div class="row" style="margin-top:.3rem"> <div class="columns centered"> <section class="centered hidden-for-medium-down"> <a href="https://www.ktbb.com/worldtour"><img src="worldtour/images/iberiabanner1520.jpg" alt="World Tour" title="World Tour"></a> </section> <section class="show-for-medium-down centered"> <a href="https://www.ktbb.com/worldtour"><img src="worldtour/images/iberiabanner600.jpg" alt="World Tour" title="World Tour"></a> </section> </div> </div> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@ Blue Bar Topper @@@@@@@@@@@@@@@@@@@@@@@@@@@ --> <div class="blue-topper"> <div class="row centered"> <!-- Date --> <div class="large-6 columns date"> Today is Saturday August 02, 2025 </div> <!-- Social --> <div class="large-6 columns social-icons"> <a href="/skeds.php"><i class="fas fa-clock"></i> Program Schedules&nbsp;&nbsp;</a> <a href="https://www.facebook.com/ktbbeasttexas"><img src="/images/facebook.png" alt="facebook icon" title="Follow us on Facebook"></a>&nbsp; <a href="https://twitter.com/KTBBRadio"><img src="/images/x.png" alt="twitter-X icon" title="Follow us on X"></a>&nbsp; <a href="/liveaudio/" class="listenbutton"><i class="fas fa-volume-up"></i>&nbsp;Listen Live!</a> </div> </div> </div> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@ END Blue Bar Topper @@@@@@@@@@@@@@@@@@@@@@@ --> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@ Header @@@@@@@@@@@@@@@@@@@@@@@ --> <div class="header"> <div class="row"> <!-- Logo --> <div class="large-3 columns"> <a href="https://www.ktbb.com" title="KTBB 97.5FM News Weather Talk"><img src="https://www.ktbb.com/images/logo.png" alt="ktbb logo"></a> </div> <!-- Weather magnet --> <div class="large-3 columns hide-for-medium-down centered"> <iframe class="magnet" src="https://templates.customweather.com/host/KTBB/wx_tile_03.jsp?city=31235&bgcolor=FFFFFF&metric=false" scrolling="no"></iframe> </div> <div class="large-6 columns menu-bar"> <nav class="top-bar" data-topbar> <ul class="title-area"> <li class="name"> </li> <li class="toggle-topbar menu-icon"><a href="#">Menu <img src="/images/hamburgericon.png" alt="menu icon" title="click to expand menu"></a></li> </ul> <section class="top-bar-section"> <!-- Right Nav Section --> <ul class="left"> <li class="has-dropdown"> <a href="https://www.ktbb.com/news/">News</a> <ul class="dropdown"> <li><a href="https://www.ktbb.com/news/local.php">Local News</a></li> <li><a href="https://www.ktbb.com/news/state.php">State News</a></li> <li><a href="https://www.ktbb.com/news/us.php">National News</a></li> <li><a href="https://www.ktbb.com/news/world.php">World News</a></li> <li><a href="https://www.ktbb.com/news/business.php">Business News</a></li> <li><a href="https://www.ktbb.com/news/political.php">Political News</a></li> <li><a href="https://www.ktbb.com/news/health.php">Health News</a></li> <li><a href="https://www.ktbb.com/news/showbiz.php">Show Biz News</a></li> <li><a href="https://www.ktbb.com/news/sports.php">Sports News</a></li> </ul> </li> <li class="has-dropdown"> <a href="https://www.ktbb.com/weather/">Weather</a> <ul class="dropdown"> <li><a href="https://www.ktbb.com/weather/">Forecast</a></li> <li><a href="https://www.ktbb.com/weather/doppler.php">Doppler Radar</a></li> <li><a href="https://www.ktbb.com/weather/satellite.php">Satellite Radar</a></li> <li><a href="https://www.ktbb.com/weather/current.php">Current Radar</a></li> <li><a href="https://www.ktbb.com/weather/forecast.php">Forecast Radar</a></li> <li><a href="https://www.ktbb.com/weather/future.php">Future Radar</a></li> </ul> </li> <li class="has-dropdown"> <a href="#">Sports</a> <ul class="dropdown"> <li><a href="https://www.ktbb.com/scores/">High School Scores</a></li> <li><a href="https://www.ktbb.com/news/sports.php">Headlines</a></li> <li><a href="https://www.ktbb.com/sportssked.php">Broadcast Schedule</a></li> <li><a href="https://www.antlersn.com/">Antler Sports Network</a> <li><a href="https://www.ktbb.com/scholasticallstars/index.php">Scholastic All Stars</a></li> <li><a href="https://westwoodonesports.com">Westwood One Sports</a></li> </ul> </li> <li><a href="http://ktbb.com/mediakit/">Media Kit</a></li> <li class="has-dropdown"> <a href="#">More</a> <ul class="dropdown"> <li><a href="https://www.ktbb.com/appoftheday/index.php">App of the Day</a></li> <li><a href="https://www.ktbb.com/constitution/">Constitution Minute</a></li> <li><a href="https://www.youtellmetexas.com">You Tell Me Texas</a></li> <li><a href="https://www.ktbb.com/infocus/">In Focus</a></li> <li><a href="https://www.ktbb.com/12strays/">Strays of Christmas</a></li> <li><a href="https://www.ktbb.com/contestrules.php">Contest Rules</a></li> <!-- <li><a href="https://www.ktbb.com/worldtour/">World Tour</a></li> --> <!-- <li><a href="https://www.ktbb.com/advertisers/">Advertisers</a></li> --> <li><a href="https://www.ktbb.com/personalities.php">Our Personalities</a></li> <li><a href="https://www.ktbb.com/audio/">Podcasts</a></li> <li><a href="https://www.ktbb.com/apps/">Streaming Apps</a></li> <li><a href="https://www.ktbb.com/alexa.php">Alexa</a></li> <li><a href="https://www.ktbb.com/trivia/">Trivia Quiz </a></li> <li><a href="https://www.ktbb.com/specialcoverage/">Special Coverage</a></li> </ul> </li> </ul> </section> </nav> </div> </div> </div> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@ END Header @@@@@@@@@@@@@@@@@@@@@@@ --> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@ Blue Bar Topper @@@@@@@@@@@@@@@@@@@@@@@@@@@ --> <!-- Content container --> <div class="content"> <!-- Leaderboard Row --> <div class="row"> <div class="large-12 columns"> <section class="centered hidden-for-medium-down"> <!-- <span class="small-ad">Advertisement</span> --> <!-- Home Super Leaderboard FULL --> <script> var m3_u = (location.protocol == 'https:' ? 'https://ktbb.com/455/www/delivery/ajs.php' : 'http://ktbb.com/455/www/delivery/ajs.php'); var m3_r = Math.floor(Math.random() * 99999999999); if (!document.MAX_used) document.MAX_used = ','; document.write("<scr" + "ipt src='" + m3_u); document.write("?zoneid=51"); document.write('&amp;cb=' + m3_r); if (document.MAX_used != ',') document.write("&amp;exclude=" + document.MAX_used); document.write(document.charset ? '&amp;charset=' + document.charset : (document.characterSet ? '&amp;charset=' + document.characterSet : '')); document.write("&amp;loc=" + escape(window.location)); if (document.referrer) document.write("&amp;referer=" + escape(document.referrer)); if (document.context) document.write("&context=" + escape(document.context)); if (document.mmm_fo) document.write("&amp;mmm_fo=1"); document.write("'><\/scr" + "ipt>"); </script> </section> <section class="show-for-medium-down centered"> <!-- Home 3:1 Rectangle RESP Mobile --> <script> var m3_u = (location.protocol == 'https:' ? 'https://ktbb.com/455/www/delivery/ajs.php' : 'http://ktbb.com/455/www/delivery/ajs.php'); var m3_r = Math.floor(Math.random() * 99999999999); if (!document.MAX_used) document.MAX_used = ','; document.write("<scr" + "ipt src='" + m3_u); document.write("?zoneid=32"); document.write('&amp;cb=' + m3_r); if (document.MAX_used != ',') document.write("&amp;exclude=" + document.MAX_used); document.write(document.charset ? '&amp;charset=' + document.charset : (document.characterSet ? '&amp;charset=' + document.characterSet : '')); document.write("&amp;loc=" + escape(window.location)); if (document.referrer) document.write("&amp;referer=" + escape(document.referrer)); if (document.context) document.write("&context=" + escape(document.context)); if (document.mmm_fo) document.write("&amp;mmm_fo=1"); document.write("'><\/scr" + "ipt>"); </script> </section> </div> </div> <div class="row"> <!-- Bulletin --> <div class="bulletin columns large-12"> <!-- bulletin --> </div> </div> <div class="row"> <div class="columns large-8"> <!-- Top Story Roster Slider hidden for small --> <section class="show-for-medium-up"> <h2 class="blue-box">Top Stories</h2> <br> <script type="text/javascript">jQuery("html").addClass("roster_slider_fouc");jQuery(document).ready(function() { jQuery(".roster_slider_fouc #roster_slider_abc-heads").show(); });</script><div class="roster_slider roster_slider_set6" style="max-width:480px;padding:0 25px;"> <div id="roster_slider_abc-heads" class="roster_slider_instance"> <div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431226" title="Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit" ><img src="https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95.png" alt="Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit" title="Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431226" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Smithsonian removes references to Trump's impeachments from 'Limits of Presidential Power' exhibit</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Stefani Reynolds/Getty Images(WASHINGTON) -- The Smithsonian's National Museum of American History removed references to President Donald Trump's&nbsp;two impeachment proceedings&nbsp;from an exhibit on the "Limits of Presidential Power," a Smithsonian... </span><p class="more"><a href="https://ktbb.com/post/?p=1431226" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431155" title="Corporation for Public Broadcasting to shut down after federal funding cuts" ><img src="https://deepnewz.com/_next/image?url=https%3A%2F%2Fmedia.deepnewz.com%2Fimages%2Ffunding-cut-drives-corporation-public-broadcasting-to-close-after-five-decades-21ee6e9c%2F4ba321c8676937952d6180122f9d6477f6aa00ae217a634a3aaaef106c14526f.jpeg&w=1920&q=75" alt="Corporation for Public Broadcasting to shut down after federal funding cuts" title="Corporation for Public Broadcasting to shut down after federal funding cuts" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431155" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Corporation for Public Broadcasting to shut down after federal funding cuts</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> ABC News(WASHINGTON) -- The Corporation for Public Broadcasting announced Friday that it will begin a "wind-down of its operations" and cut a majority of its jobs by the end of ...</span><p class="more"><a href="https://ktbb.com/post/?p=1431155" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431143" title="Trump moves nuclear submarines in response to Russia&#8217;s &#8216;highly provocative&#8217; statement" ><img src="https://ktbb.com/post/wp-content/media/2025/08/288e02aba37ae0c077837e76020fb584.jpg" alt="Trump moves nuclear submarines in response to Russia&#8217;s &#8216;highly provocative&#8217; statement" title="Trump moves nuclear submarines in response to Russia&#8217;s &#8216;highly provocative&#8217; statement" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431143" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Trump moves nuclear submarines in response to Russia's 'highly provocative' statement</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Andrew Harnik/Getty Images(WASHINGTON) -- President Donald Trump said on Friday he's ordered two nuclear submarines to move in the "appropriate regions" in response to what he called "highly provocative ...</span><p class="more"><a href="https://ktbb.com/post/?p=1431143" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431128" title="Midtown Manhattan office shooter fired 47 rounds in deadly rampage: Police" ><img src="https://ktbb.com/post/wp-content/media/2025/08/d20b3a1bebe352d018278319dce25e68.jpg" alt="Midtown Manhattan office shooter fired 47 rounds in deadly rampage: Police" title="Midtown Manhattan office shooter fired 47 rounds in deadly rampage: Police" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431128" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Midtown Manhattan office shooter fired 47 rounds in deadly rampage: Police</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Shane Devon Tamura, 27, identified by the NYPD as the Midtown Manhattan office building shooter. Obtained by ABC News(NEW YORK) -- The Midtown Manhattan office shooter fired 47 rounds from ...</span><p class="more"><a href="https://ktbb.com/post/?p=1431128" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431106" title="Bureau of Prisons moves Ghislaine Maxwell to prison camp in Texas" ><img src="https://ktbb.com/post/wp-content/media/2025/08/c8280b0c0d56639f88c6b1cfbb92d2e2.jpg" alt="Bureau of Prisons moves Ghislaine Maxwell to prison camp in Texas" title="Bureau of Prisons moves Ghislaine Maxwell to prison camp in Texas" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431106" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Bureau of Prisons moves Ghislaine Maxwell to prison camp in Texas</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Sylvain Gaboury/Patrick McMullan via Getty Images(BRYAN, Texas) -- The Bureau of Prisons has moved former&nbsp;Jeffrey Epstein&nbsp;associate Ghislaine Maxwell from a federal prison in Florida to a federal prison camp in ...</span><p class="more"><a href="https://ktbb.com/post/?p=1431106" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431075" title="Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid" ><img src="https://ktbb.com/post/wp-content/media/2025/08/7a7df931475ae74b5be0c32438cf4d2d.jpg" alt="Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid" title="Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431075" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Kevin Dietsch/Getty Images(LONDON) -- As global concern over the hunger crisis in Gaza intensifies, Steve Witkoff, President Donald Trump's special envoy to the Middle East, and U.S. Ambassador to&nbsp;Israel&nbsp;Mike Huckabee, ...</span><p class="more"><a href="https://ktbb.com/post/?p=1431075" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431067" title="Russia launches 6,400 drones, missiles into Ukraine in record-breaking month" ><img src="https://ktbb.com/post/wp-content/media/2025/08/f31ac5e39e4a7a53236e30853f7194fc.jpg" alt="Russia launches 6,400 drones, missiles into Ukraine in record-breaking month" title="Russia launches 6,400 drones, missiles into Ukraine in record-breaking month" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431067" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Russia launches 6,400 drones, missiles into Ukraine in record-breaking month</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Maxym Marusenko/NurPhoto via Getty Images(LONDON) --&nbsp;More than three years into Russia's full-scale invasion, Ukrainians across the country retreat each night to bomb shelters and metro stations in a nightly ritual ...</span><p class="more"><a href="https://ktbb.com/post/?p=1431067" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1431045" title="Stocks tumble after Trump unveils sweeping new tariffs" ><img src="https://ktbb.com/post/wp-content/media/2025/08/ca50fe2ad74a2316201a6c1779186e6a.jpg" alt="Stocks tumble after Trump unveils sweeping new tariffs" title="Stocks tumble after Trump unveils sweeping new tariffs" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1431045" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Stocks tumble after Trump unveils sweeping new tariffs</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Spencer Platt/Getty Images(NEW YORK) -- U.S. stocks tumbled in early trading on Friday, just hours after President Donald Trump&nbsp;signed&nbsp;an executive order slapping new tariffs on dozens of countries. A weak ...</span><p class="more"><a href="https://ktbb.com/post/?p=1431045" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1430861" title="Trump to sign order to revive Presidential Fitness Test for students" ><img src="https://ktbb.com/post/wp-content/media/2025/07/667f627d591d15744198d0782c147e4f.jpg" alt="Trump to sign order to revive Presidential Fitness Test for students" title="Trump to sign order to revive Presidential Fitness Test for students" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1430861" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Trump to sign order to revive Presidential Fitness Test for students</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Andrew Harnik/Getty Images(WASHINGTON) -- Kids in America's public schools will soon be lacing up their sneakers for the Presidential Fitness Test as President Donald Trump is set to announce its ...</span><p class="more"><a href="https://ktbb.com/post/?p=1430861" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div><div class="roster_slideri" style="background-color:#ffffff;border:0px solid #dddddd;min-height:225px;"> <!-- roster_slideri --><a class="roster_thumb_anchor" href="https://ktbb.com/post/?p=1430847" title="Federal government paying 154,000 people not to work" ><img src="https://ktbb.com/post/wp-content/media/2025/07/8493e7a86e0ed16b376f2369645f3bfc.jpg" alt="Federal government paying 154,000 people not to work" title="Federal government paying 154,000 people not to work" class="full roster_slider_thumbnail " style="float:none;margin:0;max-height:300px;border:0px solid #D8E7EE;display:block;padding:0;" /></a><div class="roster_contwrap" style="margin:0 10px;"><h1 class="slider_htitle " style="clear:none;line-height:23px;font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;margin:0 0 5px 0;"><a href="https://ktbb.com/post/?p=1430847" style="font-family:Verdana,Geneva,sans-serif, Arial, Helvetica, sans-serif;font-size:20px;font-weight:normal;font-style:normal;color:#222222;" >Federal government paying 154,000 people not to work</a></h1><span class="roster_excerpt " style="font-family:Arial,Helvetica,sans-serif, Arial, Helvetica, sans-serif Arial,Helvetica,sans-serif;font-size:16px;font-weight:normal;font-style:normal;color:#222222;"> Michael A. McCoy/For The Washington Post via Getty Images(WASHINGTON) -- The federal government is paying more than 154,000 federal employees not to work as part of the deferred resignation program, ...</span><p class="more"><a href="https://ktbb.com/post/?p=1430847" style="color:#222222;font-family:Arial,Helvetica,sans-serif;font-size:16px;" >Continue reading this article ...</a></p></div> <!-- /roster_contwrap--> <!-- /roster_slideri --> </div> </div> <div id="roster_slider_abc-heads_next" class="roster_next" style="background: transparent url(https://ktbb.com/post/wp-content/plugins/roster-slider/css/buttons/default/next.png) no-repeat 0 0;width:25px;top:45%;"></div><div id="roster_slider_abc-heads_prev" class="roster_prev" style="background: transparent url(https://ktbb.com/post/wp-content/plugins/roster-slider/css/buttons/default/prev.png) no-repeat 0 0;width:25px;top:45%;"></div><div id="roster_slider_abc-heads_nav" class="roster_nav"></div> </div><script type="text/javascript">jQuery(document).ready(function() { jQuery("#roster_slider_abc-heads").rosterDim({ skin : "default", handle : "roster_slider_abc-heads", visibleItems : 1, scrollItems : 8, sliderWidth :480, sliderHeight :225, transition :"scrollHorz", prevnext :1, autostep : 1, time : 10, easing : "swing", duration : 500, navnum : 1 }); jQuery("#roster_slider_abc-heads").touchwipe({ wipeLeft: function() { jQuery("#roster_slider_abc-heads").trigger("next", 1); }, wipeRight: function() { jQuery("#roster_slider_abc-heads").trigger("prev", 1); }, preventDefaultEvents: false }); });jQuery("#roster_slider_abc-heads .wpsc_buy_button").css({ "background":"#519d42","font-size":"12px","color":"#ffffff","border":"1px solid #519d42","border-radius":"0","padding":"4px 10px","line-height": "normal"});jQuery(".roster_slider_fouc #roster_slider_abc-heads").hide();</script> <noscript><p><strong>This page is having a slideshow that uses Javascript. Your browser either doesn't support Javascript or you have it turned off. To see this page as it is meant to appear please use a Javascript enabled browser.</strong></p></noscript> </section> <section class="show-for-small"> <!-- Mobile Top Stories --> <h2 class="blue-box">Top Stories</h2> <br> <a href="https://ktbb.com/post/?p=1431226"> <img width="630" height="354" src="https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit" title="Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit" decoding="async" loading="lazy" srcset="https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95.png 630w, https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95-225x126.png 225w, https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95-550x309.png 550w" sizes="auto, (max-width: 630px) 100vw, 630px" /><br> Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit</a> <hr> <a href="https://ktbb.com/post/?p=1431155"> Corporation for Public Broadcasting to shut down after federal funding cuts</a> <hr> <a href="https://ktbb.com/post/?p=1431143"> Trump moves nuclear submarines in response to Russia&#8217;s &#8216;highly provocative&#8217; statement</a> <hr> <a href="https://ktbb.com/post/?p=1431128"> Midtown Manhattan office shooter fired 47 rounds in deadly rampage: Police</a> <hr> <a href="https://ktbb.com/post/?p=1431106"> Bureau of Prisons moves Ghislaine Maxwell to prison camp in Texas</a> <hr> <a href="https://ktbb.com/post/?p=1431075"> Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid</a> <hr> <a href="https://ktbb.com/post/?p=1431067"> Russia launches 6,400 drones, missiles into Ukraine in record-breaking month</a> <hr> </section> <br> <section style="margin: .5rem auto 0 Auto; text-align: center"> <a href="appoftheday/index.php"> <img src="appoftheday/images/appoftheday180.jpg" alt="app of the day banner" title="App of the Day"></a>&nbsp; <a href="alexa.php"> <img src="images/promos/alexa180x80.jpg" alt="alexa banner" title="Alexa"></a>&nbsp; <a href="https://www.ktbb.com/apps/"> <img src="images/promos/gettheapp180x80.jpg" alt="get the app banner" title="Get the KTBB mobile app"></a>&nbsp; <a href="https://www.ktbb.com/liveaudio/"> <img src="images/promos/listenlive180x80.jpg" alt="listen live banner" title="Listen Live!"></a> </section> </div> <div class="columns large-4" style="border-left: 2px solid #666;"> <section> <!-- Local News Links --> <h2 class="blue-box centered">East Texas News</h2> <br> <img class="home-thumbs" src="https://ktbb.com/post/wp-content/media/2025/08/2025-08-01_225510-198x200.jpg" /> <strong><a href="https://ktbb.com/post/?p=1431262">ETX man gets 60 years for sexual assault of a child</a></strong> &nbsp; LINDEN — According to our news partner KETK, a Hughes Springs man was convicted of aggravated sexual assault<a href="https://ktbb.com/post/?p=1431262">... Read more</a> <hr> <img class="home-thumbs" src="https://ktbb.com/post/wp-content/media/2025/08/2025-08-01_061034.jpg" /> <strong><a href="https://ktbb.com/post/?p=1430994">Former Eustace officer gets 20 years for child porn</a></strong> &nbsp; HENDERSON COUNTY — According to our news partner KETK, a former Eustace police officer was sentenced on Thur<a href="https://ktbb.com/post/?p=1430994">... Read more</a> <hr> <img class="home-thumbs" src="https://ktbb.com/post/wp-content/media/2025/08/2025-08-01_061456-199x200.jpg" /> <strong><a href="https://ktbb.com/post/?p=1430997">Panola County officials accused of misconduct, racketeering</a></strong> &nbsp; CARTHAGE — A lawsuit filed in Panola County accuses several officials of misconduct, racketeering and operat<a href="https://ktbb.com/post/?p=1430997">... Read more</a> <hr> <img class="home-thumbs" src="https://ktbb.com/post/wp-content/media/2025/08/Screenshot-2025-08-01-164148-e1754084559146-200x200.jpg" /> <strong><a href="https://ktbb.com/post/?p=1431207">Man sentenced to 25 years for copper theft</a></strong> &nbsp; POLK COUNTY &#8211; A man was sentenced to 25 years in prison as a habitual offender for engaging in organized<a href="https://ktbb.com/post/?p=1431207">... Read more</a> <hr> <img class="home-thumbs" src="https://ktbb.com/post/wp-content/media/2017/03/Henderson-County-Sheriffs-Department-patch.jpeg" /> <strong><a href="https://ktbb.com/post/?p=1431095">Children reportedly found home alone with drugs, three arrested</a></strong> &nbsp; HENDERSON COUNTY &#8211; Three people were arrested Thursday night after a traffic stop led Henderson County a<a href="https://ktbb.com/post/?p=1431095">... Read more</a> <hr> <h3 class="blue-box centered"><a href="https://www.ktbb.com/news/local.php">More Local News</a></h3> <h3 class="blue-box centered"><a href="https://www.ktbb.com/news/">Main News Page</a></h3> </section> <hr class="visible-for-small-only"> </div> </div> <hr class="divider"> <!-- YTMT Row --> <div class="row"> <div class="columns medium-4 small-12" style="border-right: 2px solid #666666"> <a href="https://www.youtellmetexas.com"><img src="images/ytmt-home-banner.jpg" title="You Tell Me Texas" alt="YTMT Logo"></a> </div> <div class="columns medium-8 small-12"> <a href="https://www.youtellmetexas.com"> <h2 class="blue-text">He had to be stopped.</h2> </a> <p>Donald Trump was alone among Republicans with whom official Washington could not abide. <a href="https://www.youtellmetexas.com/">Read More</a> <h2><a href="https://www.youtellmetexas.com"> This article and more on YouTellMeTexas.com</a></h2> </div> </div> <hr class="divider"> <!-- State National World headline sections --> <div class="row"> <div class="columns large-4"> <section> <h2 class="blue-box">State News</h2> <img src="../news/images/state-news-default.jpg" alt="State news image" title="KTBB State News"> <a href="https://ktbb.com/post/?p=1430943"> Rural Texas county&#8217;s top leaders were asleep, out of town during initial hours of flood crisis</a> <hr> <a href="https://ktbb.com/post/?p=1431290"> Limited options for Democrats to retaliate if Texas Republicans redraw congressional map</a> <hr> <a href="https://ktbb.com/post/?p=1430945"> Texas researcher was held at an airport for over a week. Now he faces deportation</a> <hr> <a href="https://ktbb.com/post/?p=1431244"> Teacher charged in fatal stabbings in Arkansas bounced between schools in 3 states</a> <hr> <a href="https://ktbb.com/post/?p=1431247"> Democrats say a GOP plan to redraw House districts in Texas harms Black and Hispanic voters</a> <hr> <h3 class="gray-box"><a href="news/state.php">More State News</a></h3> </section> <br> </div> <div class="columns large-4"> <section> <h2 class="blue-box">National News</h2> <a href="https://ktbb.com/post/?p=1431226"> <img width="630" height="354" src="https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit" title="Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit" decoding="async" loading="lazy" srcset="https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95.png 630w, https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95-225x126.png 225w, https://ktbb.com/post/wp-content/media/2025/08/c882a6be8f20e07149702ea8e795fc95-550x309.png 550w" sizes="auto, (max-width: 630px) 100vw, 630px" /><br> Smithsonian removes references to Trump&#8217;s impeachments from &#8216;Limits of Presidential Power&#8217; exhibit</a> <hr> <a href="https://ktbb.com/post/?p=1431128"> Midtown Manhattan office shooter fired 47 rounds in deadly rampage: Police</a> <hr> <a href="https://ktbb.com/post/?p=1431106"> Bureau of Prisons moves Ghislaine Maxwell to prison camp in Texas</a> <hr> <a href="https://ktbb.com/post/?p=1431088"> Man at large after allegedly killing 4 people, leaving baby alive in Tennessee: Officials</a> <hr> <a href="https://ktbb.com/post/?p=1431063"> Teacher charged in Arkansas couple&#8217;s murder held without bond</a> <hr> <h3 class="gray-box"><a href="news/us.php">More US News</a></h3> </section> <br> </div> <div class="columns large-4"> <section> <h2 class="blue-box">World News</h2> <a href="https://ktbb.com/post/?p=1431075"> <img width="630" height="354" src="https://ktbb.com/post/wp-content/media/2025/08/7a7df931475ae74b5be0c32438cf4d2d.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid" title="Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid" decoding="async" loading="lazy" srcset="https://ktbb.com/post/wp-content/media/2025/08/7a7df931475ae74b5be0c32438cf4d2d.jpg 630w, https://ktbb.com/post/wp-content/media/2025/08/7a7df931475ae74b5be0c32438cf4d2d-225x126.jpg 225w, https://ktbb.com/post/wp-content/media/2025/08/7a7df931475ae74b5be0c32438cf4d2d-550x309.jpg 550w" sizes="auto, (max-width: 630px) 100vw, 630px" /><br> Witkoff and Huckabee visit Gaza as Trump comes up with a plan for aid</a> <hr> <a href="https://ktbb.com/post/?p=1431067"> Russia launches 6,400 drones, missiles into Ukraine in record-breaking month</a> <hr> <a href="https://ktbb.com/post/?p=1430621"> At least 37 killed, 270 injured while seeking aid in northern Gaza: Hospital</a> <hr> <a href="https://ktbb.com/post/?p=1430244"> Heavy rain leaves dozens dead in Beijing, state media reports</a> <hr> <a href="https://ktbb.com/post/?p=1430234"> UK to recognize Palestinian state as Netanyahu considers annexing parts of Gaza</a> <hr> <h3 class="gray-box"><a href="news/world.php">More World News</a></h3> </section> <br> </div> </div> <hr class="divider hide-for-small"> <div class="row"> <div class="columns large-4"> <section> <h2 class="blue-box">Political News</h2> <a href="https://ktbb.com/post/?p=1431155"> <img width="766" height="510" src="https://deepnewz.com/_next/image?url=https%3A%2F%2Fmedia.deepnewz.com%2Fimages%2Ffunding-cut-drives-corporation-public-broadcasting-to-close-after-five-decades-21ee6e9c%2F4ba321c8676937952d6180122f9d6477f6aa00ae217a634a3aaaef106c14526f.jpeg&amp;w=1920&amp;q=75" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Corporation for Public Broadcasting to shut down after federal funding cuts" title="Corporation for Public Broadcasting to shut down after federal funding cuts" decoding="async" loading="lazy" /><br> Corporation for Public Broadcasting to shut down after federal funding cuts</a> <hr> <a href="https://ktbb.com/post/?p=1431143"> Trump moves nuclear submarines in response to Russia&#8217;s &#8216;highly provocative&#8217; statement</a> <hr> <a href="https://ktbb.com/post/?p=1431083"> Republican Rep. Bryan Steil booed defending Trump tariffs at Wisconsin town hall</a> <hr> <a href="https://ktbb.com/post/?p=1430861"> Trump to sign order to revive Presidential Fitness Test for students</a> <hr> <a href="https://ktbb.com/post/?p=1430854"> 1,350 more National Guard members withdrawn from Los Angeles</a> <hr> <h3 class="gray-box"><a href="news/political.php">More Political News</a></h3> </section> <br> </div> <div class="columns large-4"> <section> <h2 class="blue-box">Business News</h2> <a href="https://ktbb.com/post/?p=1431055"> <img width="630" height="354" src="https://ktbb.com/post/wp-content/media/2025/08/5ac314573b603a943126ef7291d41ab1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Weak jobs report &#8216;not what we want to see,&#8217; White House says" title="Weak jobs report &#8216;not what we want to see,&#8217; White House says" decoding="async" loading="lazy" srcset="https://ktbb.com/post/wp-content/media/2025/08/5ac314573b603a943126ef7291d41ab1.jpg 630w, https://ktbb.com/post/wp-content/media/2025/08/5ac314573b603a943126ef7291d41ab1-225x126.jpg 225w, https://ktbb.com/post/wp-content/media/2025/08/5ac314573b603a943126ef7291d41ab1-550x309.jpg 550w" sizes="auto, (max-width: 630px) 100vw, 630px" /><br> Weak jobs report &#8216;not what we want to see,&#8217; White House says</a> <hr> <a href="https://ktbb.com/post/?p=1431045"> Stocks tumble after Trump unveils sweeping new tariffs</a> <hr> <a href="https://ktbb.com/post/?p=1430821"> What to know about Trump&#8217;s trade feud with India</a> <hr> <a href="https://ktbb.com/post/?p=1430557"> Fed holds interest rates steady, defying Trump&#8217;s pressure</a> <hr> <a href="https://ktbb.com/post/?p=1430481"> US economy grew more than expected as Trump&#8217;s tariffs took hold</a> <hr> <h3 class="gray-box"><a href="news/business.php">More Business News</a></h3> </section> <br> </div> <div class="columns large-4 centered"> <section> <!-- Home Medium Rectangle 300x250 Bottom --> <span class="small-ad">Advertisement</span> <script> <!--//<![CDATA[ var m3_u = (location.protocol == 'https:' ? 'https://ktbb.com/455/www/delivery/ajs.php' : 'http://ktbb.com/455/www/delivery/ajs.php'); var m3_r = Math.floor(Math.random() * 99999999999); if (!document.MAX_used) document.MAX_used = ','; document.write("<scr" + "ipt src='" + m3_u); document.write("?zoneid=43"); document.write('&amp;cb=' + m3_r); if (document.MAX_used != ',') document.write("&amp;exclude=" + document.MAX_used); document.write(document.charset ? '&amp;charset=' + document.charset : (document.characterSet ? '&amp;charset=' + document.characterSet : '')); document.write("&amp;loc=" + escape(window.location)); if (document.referrer) document.write("&amp;referer=" + escape(document.referrer)); if (document.context) document.write("&context=" + escape(document.context)); document.write("'><\/scr" + "ipt>"); //]]> --> </script> </section> <br> <section> <!-- Home Medium Rectangle 300x250 Bottom --> <script> var m3_u = (location.protocol == 'https:' ? 'https://ktbb.com/455/www/delivery/ajs.php' : 'http://ktbb.com/455/www/delivery/ajs.php'); var m3_r = Math.floor(Math.random() * 99999999999); if (!document.MAX_used) document.MAX_used = ','; document.write("<scr" + "ipt src='" + m3_u); document.write("?zoneid=55"); document.write('&amp;cb=' + m3_r); if (document.MAX_used != ',') document.write("&amp;exclude=" + document.MAX_used); document.write(document.charset ? '&amp;charset=' + document.charset : (document.characterSet ? '&amp;charset=' + document.characterSet : '')); document.write("&amp;loc=" + escape(window.location)); if (document.referrer) document.write("&amp;referer=" + escape(document.referrer)); if (document.context) document.write("&context=" + escape(document.context)); if (document.mmm_fo) document.write("&amp;mmm_fo=1"); document.write("'><\/scr" + "ipt>"); </script> </section> </div> </div> <hr class="divider"> <div class="row"> <div class="columns large-4"> <section> <h2 class="blue-box">Health News</h2> <a href="https://ktbb.com/post/?p=1430563"> <img width="630" height="354" src="https://ktbb.com/post/wp-content/media/2025/07/1578211a339d2be3eccc80d6710340e0.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Senate confirms Trump nominee Susan Monarez as CDC director. Here&#8217;s what to know" title="Senate confirms Trump nominee Susan Monarez as CDC director. Here&#8217;s what to know" decoding="async" loading="lazy" srcset="https://ktbb.com/post/wp-content/media/2025/07/1578211a339d2be3eccc80d6710340e0.jpg 630w, https://ktbb.com/post/wp-content/media/2025/07/1578211a339d2be3eccc80d6710340e0-225x126.jpg 225w, https://ktbb.com/post/wp-content/media/2025/07/1578211a339d2be3eccc80d6710340e0-550x309.jpg 550w" sizes="auto, (max-width: 630px) 100vw, 630px" /><br> Senate confirms Trump nominee Susan Monarez as CDC director. Here&#8217;s what to know</a> <hr> <a href="https://ktbb.com/post/?p=1429110"> 1st pill for obstructive sleep apnea could be around the corner</a> <hr> <a href="https://ktbb.com/post/?p=1429095"> Measles cases in US over 4.5 times higher than all of last year</a> <hr> <a href="https://ktbb.com/post/?p=1426540"> Why gentle exercise like yoga, tai chi and walking may help people sleep better</a> <hr> <a href="https://ktbb.com/post/?p=1426469"> More than 14M children globally have not received a dose of any vaccine: WHO</a> <hr> <h3 class="gray-box"><a href="news/health.php">More Health News</a></h3> </section> <br> </div> <div class="columns large-4"> <section> <h2 class="blue-box">Showbiz News</h2> <a href="https://ktbb.com/post/?p=1431213"> <img width="630" height="354" src="https://ktbb.com/post/wp-content/media/2025/08/ea2997974bd57feaa6fc3888585e8958.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Michael Jai White says he wanted his new film, &#8216;Trouble Man,&#8217; &#8216;to be an experience&#8217;" title="Michael Jai White says he wanted his new film, &#8216;Trouble Man,&#8217; &#8216;to be an experience&#8217;" decoding="async" loading="lazy" srcset="https://ktbb.com/post/wp-content/media/2025/08/ea2997974bd57feaa6fc3888585e8958.png 630w, https://ktbb.com/post/wp-content/media/2025/08/ea2997974bd57feaa6fc3888585e8958-225x126.png 225w, https://ktbb.com/post/wp-content/media/2025/08/ea2997974bd57feaa6fc3888585e8958-550x309.png 550w" sizes="auto, (max-width: 630px) 100vw, 630px" /><br> Michael Jai White says he wanted his new film, &#8216;Trouble Man,&#8217; &#8216;to be an experience&#8217;</a> <hr> <a href="https://ktbb.com/post/?p=1431187"> New series based on &#8216;The Holiday&#8217; is in the works</a> <hr> <a href="https://ktbb.com/post/?p=1431175"> John Krasinki announces &#8216;A Quiet Place: Part III&#8217; coming to theaters summer 2027</a> <hr> <a href="https://ktbb.com/post/?p=1431164"> &#8216;And Just Like That&#8230;&#8217; to end with season 3</a> <hr> <a href="https://ktbb.com/post/?p=1431146"> Marvel shares first look at Tom Holland&#8217;s new &#8216;Spider-Man: Brand New Day&#8217; suit</a> <hr> <h3 class="gray-box"><a href="news/showbiz.php">More Entertainment News </a></h3> </section> <br> </div> <div class="columns large-4"> <section> <h2 class="blue-box">Sports News</h2> <img src="https://www.ktbb.com/news/images/sports-news-default.jpg" alt="Sports news image" title="KTBB Sports News"> <a href="https://ktbb.com/post/?p=1431296"> Seattle Mariners and Texas Rangers meet in game 3 of series</a> <hr> <a href="https://ktbb.com/post/?p=1431294"> Roman Anthony&#8217;s walk-off single lifts Red Sox over Astros 2-1 in 10 innings</a> <hr> <a href="https://ktbb.com/post/?p=1431292"> Carlos Correa is back with the Astros &#8212; this time at third base</a> <hr> <a href="https://ktbb.com/post/?p=1431256"> Temporary injunction stops SFA from eliminating women’s sports programs</a> <hr> <a href="https://ktbb.com/post/?p=1431181"> Cowboys star edge rusher Micah Parsons requests trade and says team won&#8217;t negotiate</a> <hr> <h3 class="gray-box"><a href="news/sports.php">More Sports News</a></h3> </section> </div> </div> <p class="centered"><a href="#top">Top of page</a></p> <hr class="divider"> <div class="row centered"> <!-- Promo Ad Ad Row --> <div class="large-4 columns"> <section> <!-- Home 3:1 Rectangle 300x100 TOP --> <span class="small-ad">&nbsp;</span> <script> var m3_u = (location.protocol == 'https:' ? 'https://ktbb.com/455/www/delivery/ajs.php' : 'http://ktbb.com/455/www/delivery/ajs.php'); var m3_r = Math.floor(Math.random() * 99999999999); if (!document.MAX_used) document.MAX_used = ','; document.write("<scr" + "ipt src='" + m3_u); document.write("?zoneid=36"); document.write('&amp;cb=' + m3_r); if (document.MAX_used != ',') document.write("&amp;exclude=" + document.MAX_used); document.write(document.charset ? '&amp;charset=' + document.charset : (document.characterSet ? '&amp;charset=' + document.characterSet : '')); document.write("&amp;loc=" + escape(window.location)); if (document.referrer) document.write("&amp;referer=" + escape(document.referrer)); if (document.context) document.write("&context=" + escape(document.context)); if (document.mmm_fo) document.write("&amp;mmm_fo=1"); document.write("'><\/scr" + "ipt>"); </script> </section> </div> <div class="large-4 columns"> <section> <!-- Home 3:1 Rectangle 300x100 TOP --> <span class="small-ad">Advertisement</span> <script> var m3_u = (location.protocol == 'https:' ? 'https://ktbb.com/455/www/delivery/ajs.php' : 'http://ktbb.com/455/www/delivery/ajs.php'); var m3_r = Math.floor(Math.random() * 99999999999); if (!document.MAX_used) document.MAX_used = ','; document.write("<scr" + "ipt src='" + m3_u); document.write("?zoneid=56"); document.write('&amp;cb=' + m3_r); if (document.MAX_used != ',') document.write("&amp;exclude=" + document.MAX_used); document.write(document.charset ? '&amp;charset=' + document.charset : (document.characterSet ? '&amp;charset=' + document.characterSet : '')); document.write("&amp;loc=" + escape(window.location)); if (document.referrer) document.write("&amp;referer=" + escape(document.referrer)); if (document.context) document.write("&context=" + escape(document.context)); if (document.mmm_fo) document.write("&amp;mmm_fo=1"); document.write("'><\/scr" + "ipt>"); </script> </section> </div> <div class="large-4 columns"> <section> <!-- Home 3:1 Rectangle 300x100 BOTTOM --> <span class="small-ad">Advertisement</span> <script> var m3_u = (location.protocol == 'https:' ? 'https://ktbb.com/455/www/delivery/ajs.php' : 'http://ktbb.com/455/www/delivery/ajs.php'); var m3_r = Math.floor(Math.random() * 99999999999); if (!document.MAX_used) document.MAX_used = ','; document.write("<scr" + "ipt src='" + m3_u); document.write("?zoneid=57"); document.write('&amp;cb=' + m3_r); if (document.MAX_used != ',') document.write("&amp;exclude=" + document.MAX_used); document.write(document.charset ? '&amp;charset=' + document.charset : (document.characterSet ? '&amp;charset=' + document.characterSet : '')); document.write("&amp;loc=" + escape(window.location)); if (document.referrer) document.write("&amp;referer=" + escape(document.referrer)); if (document.context) document.write("&context=" + escape(document.context)); if (document.mmm_fo) document.write("&amp;mmm_fo=1"); document.write("'><\/scr" + "ipt>"); </script> </section> </div> </div> <!-- End Promo Ad Ad Row --> </div> <!-- @@@@@@@@@@@@@@@@ END Content container @@@@@@@@@@@@@@@@@@@@ --> <!-- @@@@@@@@@@@@@@@@@ Start Footer @@@@@@@@@@@@@@@ --> <div class="blue-footer centered"> <!-- Footer Links --> <a href="/news/">News</a> <a href="/weather/">Weather</a> <a href="/mediakit/">Media Kit</a> <a href="https://ktbb.com/skeds.php">Program Schedule</a> <a href="/contact/">Contact Us</a> <a href="/privacy.php">Privacy Policy</a> <a href="/logos/">Station Logos</a> <a href="/sitemap/">Site Map</a> </div> <div class="row footer"> <div class="columns large-4 centered"> <a href="https://www.atwcreative.com/"><img src="/images/atwcreative.png" alt="ktbb logo"></a> </div> <div class="columns large-4 centered"> <h3>Contact Us</h3> 1001 ESE Loop 323, Suite 455<br> Tyler, Texas 75701<br> <strong>Office:</strong>903-593-2519<br> <strong>Fax:</strong>903-597-8378<br> <a href="https://www.ktbb.com/contact/index.php" class="hidden-for-medium-down">E-Mail Us</a> <a href="https://www.ktbb.com/contact/mobilecontact.php" class="show-for-medium-down">E-Mail Us</a> </div> <div class="columns large-4 centered"> <h3>Resources</h3> <a href="https://www.ktbb.com/eeo/">Employment</a><br> <a href="https://www.ktbb.com/eeo/EEO 2024-2025.pdf">EEO Report</a> <br> <a href="https://www.ktbb.com/publicfiles.php">Public Inspection Files</a><br> <a href="https://www.ktbb.com/terms/">Terms of Use</a><br> <a href="https://www.ktbb.com/advertisers">Find an Advertiser</a><br> </div> </div> <hr> <div class="footercopy"> <div class="columns large-12 centered"> &copy; 1999 - 2025 Copyright <a href="https://www.atwcreative.com/">ATW Media, LLC</a> </div> </div> <!-- @@@@@@@@@@@@@@@@@ End Footer @@@@@@@@@@@@@@@ --> <script> $(document).ready(function () { $(document).foundation(); }) </script> <link rel='stylesheet' id='fifu-slider-style-css' href='https://ktbb.com/post/wp-content/plugins/fifu-premium/includes/html/css/slider.css?ver=7.0.6' media='all' /> <link rel='stylesheet' id='lightslider-style-css' href='https://cdnjs.cloudflare.com/ajax/libs/lightslider/1.1.6/css/lightslider.min.css?ver=6.8.2' media='all' /> <link rel='stylesheet' id='lightgallery-thumb-style-css' href='https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.8.3/css/lg-thumbnail.min.css?ver=6.8.2' media='all' /> <link rel='stylesheet' id='lightgallery-video-style-css' href='https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.8.3/css/lg-video.min.css?ver=6.8.2' media='all' /> <link rel='stylesheet' id='lightgallery-style-css' href='https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.8.3/css/lightgallery.min.css?ver=6.8.2' media='all' /> <link rel='stylesheet' id='roster_title6-css' href='https://fonts.googleapis.com/css?family=Titillium+Web&#038;ver=3.0.1' media='all' /> <link rel='stylesheet' id='roster_eventm_address_fontg6-css' href='https://fonts.googleapis.com/css?family=Open+Sans&#038;ver=3.0.1' media='all' /> <link rel='stylesheet' id='roster_eventm_cat_fontg6-css' href='https://fonts.googleapis.com/css?family=Open+Sans%3A600&#038;ver=3.0.1' media='all' /> <link rel='stylesheet' id='roster_slide_eventm_fontg6-css' href='https://fonts.googleapis.com/css?family=Open+Sans%3A600&#038;ver=3.0.1' media='all' /> <link rel='stylesheet' id='roster_default-css' href='https://ktbb.com/post/wp-content/plugins/roster-slider/css/skins/default/style.css?ver=3.0.1' media='all' /> <link rel='stylesheet' id='roster_rateit_css-css' href='https://ktbb.com/post/wp-content/plugins/roster-slider/css/css/rateit.css?ver=3.0.1' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <script src="https://www.youtube.com/iframe_api?ver=6.8.2" id="youtube-js"></script> <script src="https://player.vimeo.com/api/player.js?ver=6.8.2" id="fifu-vimeo-player-js"></script> <script id="fifu-image-js-js-extra"> var fifuImageVars = {"fifu_slider":"1","fifu_slider_vertical":"","fifu_is_front_page":"1","fifu_woo_lbox_enabled":"1","fifu_error_url":"","fifu_is_flatsome_active":"","fifu_block":"","fifu_redirection":"","fifu_forwarding_url":"","fifu_main_image_url":null,"base64_main_image_url":null,"fifu_local_image_url":""}; </script> <script src="https://ktbb.com/post/wp-content/plugins/fifu-premium/includes/html/js/image.js?ver=7.0.6" id="fifu-image-js-js"></script> <script id="fifu-lightslider-js-extra"> var fifuMainSliderVars = {"fifu_error_url":"","fifu_slider_crop":"1","fifu_slider_vertical":"","fifu_is_product":"","fifu_is_front_page":"1","fifu_adaptive_height":"1"}; </script> <script src="https://ktbb.com/post/wp-content/plugins/fifu-premium/includes/html/js/lightslider.js?ver=7.0.6" id="fifu-lightslider-js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-zoom/1.7.21/jquery.zoom.min.js?ver=6.8.2" id="jquery-zoom-js"></script> <script id="fifu-slider-js-js-extra"> var fifuSliderVars = {"fifu_slider_speed":"1000","fifu_slider_auto":"","fifu_slider_pause":"2000","fifu_slider_ctrl":"","fifu_slider_stop":"","fifu_slider_gallery":"","fifu_slider_thumb":"","fifu_slider_counter":"","fifu_slider_crop":"1","fifu_slider_vertical":"","fifu_slider_left":"","fifu_slider_right":"","fifu_is_product":"","fifu_adaptive_height":"1","fifu_url":null,"fifu_error_url":"","fifu_video":"","fifu_is_mobile":"1","fifu_wc_zoom":"1","fifu_key_lightgallery":"3ECF5562-CC52-41AC-856B-47A53EA4A379","pager":""}; </script> <script src="https://ktbb.com/post/wp-content/plugins/fifu-premium/includes/html/js/lightsliderConfig.js?ver=7.0.6" id="fifu-slider-js-js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.8.3/plugins/thumbnail/lg-thumbnail.min.js?ver=6.8.2" id="lightgallery-thumb-js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.8.3/plugins/video/lg-video.min.js?ver=6.8.2" id="lightgallery-video-js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.8.3/lightgallery.min.js?ver=6.8.2" id="lightgallery-js"></script> <script src="https://ktbb.com/post/wp-content/plugins/roster-slider/js/jquery.rateit.js?ver=3.0.1" id="roster_rateit_js-js"></script> <script src="https://ktbb.com/post/wp-content/plugins/roster-slider/js/roster.js?ver=3.0.1" id="roster-js"></script> <script src="https://ktbb.com/post/wp-content/plugins/roster-slider/js/jquery.easing.js?ver=3.0.1" id="easing-js"></script> <script src="https://ktbb.com/post/wp-content/plugins/roster-slider/js/jquery.touchwipe.js?ver=3.0.1" id="jquery.touchwipe-js"></script> <script src="https://ktbb.com/post/wp-content/plugins/roster-slider/js/rosterdim.js?ver=3.0.1" id="roster-responsive-js"></script> <!-- Wordpress --> </body> </html>


URL: