2A High School Basketball: Mark Morris coach Bill Bakamus signs off for final time (2024)

Back to homepage

Subscriber Login

Please subscribe to keep reading. You can cancel at any time.

Loading&hellp;

'; } else { var sFallBack = 'Click here to subscribe'; } $('#lee-services-list .loading').hide(); $('#lee-services-list').html('

'+sFallBack+'

'); $('.lee-featured-subscription').html(sFallBack); } function lee_formatPackage(oService){ try { var bOnlyModal = true; var oSettings = lee_getPackageSettings(oService.HomeMembership); var newService = {}; if(parseInt(oService.WebFeatureFG) === 2) return false; if(oService.WebStartPrice != ''){ var custom = JSON.parse(oService.WebStartPrice); $.each(custom, function(k,v){ newService[k] = v; }); } if(bOnlyModal && newService.in_modal && newService.in_modal.toLowerCase() === 'false') return false; if(!bOnlyModal && newService.not_members && newService.not_members.toLowerCase() === 'true') return false; newService.has_featured_class = newService.featured ? 'featured-package' : ''; newService.sort = parseInt((newService.sort) ? newService.sort : oSettings.sort); newService.title = (newService.package_title && newService.package_title != '') ? newService.package_title : oSettings.title; newService.level = oService.HomeMembership; newService.html = oService.WebOfferHTML; newService.disabled = newService.disable_purchase ? 'disabled' : ''; var price = lee_formatPackagePrice(newService.start_price); newService.start_price = price.cost; newService.format_dollars = (price.format_dollars) ? price.format_dollars : ''; newService.format_cents = (price.format_cents) ? price.format_cents : ''; newService.start_at_rate = (newService.fixed_rate === 'true') ? 'for the low price of' : 'starting at'; if( !newService.term ) newService.term = 'per month'; newService.has_promotion_class = ''; if( newService.promotional_price && newService.promotional_price != '' ){ newService.has_promotion_class = 'has-promotion'; var promotion = lee_formatPackagePrice(newService.promotional_price); newService.promotional_price = promotion.cost; newService.promotional_format_dollars = (promotion.format_dollars) ? promotion.format_dollars : ''; newService.promotional_format_cents = (promotion.format_cents) ? promotion.format_cents : ''; } newService.banner_class = ''; if( newService.banner && newService.banner != '' ){ newService.banner_class = 'has-banner'; } newService.description = (newService.description) ? newService.description : ''; newService.special_title_class = newService.special_title ? 'has-special-title' : ''; newService.special_label_class = newService.label ? 'has-label' : ''; newService.action_button = 'Sign Up'; if(newService.disabled === 'disabled'){ newService.start_at_rate = 'Call us at'; newService.start_price = '(877) 767-5187'; newService.term = 'to get started'; newService.action_button = 'Call Today'; } window.lee_service_impressions.push({ 'id': newService.level, 'name': newService.title, 'price': newService.start_price, 'brand': "tdn.com", 'category': 'subscription', 'list': 'Block', 'position': newService.sort }); return newService; } catch(e){ if(window.console) console.warn(e); return false; } } function lee_sortPackages(property) { var sortOrder = 1; if(property[0] === "-") { sortOrder = -1; property = property.substr(1); } return function (a,b) { var result = (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0; return result * sortOrder; } } function lee_getPackageSettings(sPackage){ switch(sPackage.toLowerCase()){ case 'dob': return {title: 'Digital Basic', sort: 0}; break; case 'dop': return {title: 'Digital Plus', sort: 1}; break; case 'dopl': return {title: 'Digital Platinum', sort: 2}; break; case 'silv': return {title: 'Silver', sort: 3}; break; case 'gold': return {title: 'Gold', sort: 4}; break; case 'plat': return {title: 'Platinum', sort: 5}; break; } } function lee_replacePackageTokens(sPackage, oService, sCol){ var hasPromotion = false; $.each(oService, function(k,v){ if( k === 'html'){ v = v.replace(new RegExp('{{domain}}', 'gi'), 'tdn.com') .replace(new RegExp('{{site_name}}', 'gi'), 'Longview Daily News') .replace(new RegExp('{{business_name}}', 'gi'), 'The Daily News') .replace(new RegExp('{{site_phone}}', 'gi'), '(877) 767-5187'); } sPackage = sPackage.replace(new RegExp('{{'+k+'}}', 'gi'), v); }); if(sCol) sPackage = sPackage.replace('{{col}}', sCol); return sPackage; } if(window.lee_services_active && window.lee_services_active != 'offline'){ try { var oPackages = [], oFeatured = false, sHtml = '', sTemplate = $('#lee-service-template').html(); $.each(window.leeMembershipPackages, function(i, oService){ var oService = lee_formatPackage(oService); if(oService){ oPackages.push(oService); if(oService.featured === 'true') oFeatured = oService; } }); if(oPackages.length === 0){ throw 'No packages defined'; } oPackages.sort(lee_sortPackages('sort')); if(!oFeatured) oFeatured = oPackages[0]; if(oPackages.length === 1){ window.lee_modal_service = oPackages[0]; sTemplate = $('#lee-service-template-single').html(); $('#lee-services-list').addClass('single'); } else { $('#lee-services-list').addClass('multiple'); } switch(oPackages.length){ case 6: var sCol = '2'; break; case 5: var sCol = '5ths'; break; case 4: var sCol = '3'; break; case 3: var sCol = '4'; break; case 2: var sCol = '6'; break; default: var sCol = '12'; break; } $('#lee-services-modal').addClass('packages_'+oPackages.length); $.each(oPackages, function(i, oService){ sHtml += lee_replacePackageTokens(sTemplate, oService, sCol); }); $('#lee-services-list .packages').html(sHtml).promise().then(function(){ $('#lee-services-list .loading').hide(); $('#lee-services-list .packages').css('opacity', 1); }); if(!__tnt.user.services){ if( $('.lee-featured-subscription').length > 0 && oFeatured ){ $('.lee-featured-subscription').each(function(){ var html = $(this).html(); if( !oFeatured.featured_button_text ){ if(oFeatured.promotional_price){ oFeatured.featured_button_text = oFeatured.promotional_format_dollars+oFeatured.promotional_price+oFeatured.promotional_format_cents+' '+oFeatured.term; } else { oFeatured.featured_button_text = 'Join for '+oFeatured.format_dollars+oFeatured.start_price+oFeatured.format_cents+' '+oFeatured.term; } } html = lee_replacePackageTokens(html, oFeatured); $(this).html(html); if(oFeatured.promotional_price) $(this).addClass('has-promotiom'); if( $(this).hasClass('show-after-loaded') ) $(this).show(); }); } } } catch (e) { if(window.console) console.warn(e); lee_serviceError(); } window.lee_fetched_services = true; } else { lee_serviceError('offline'); } });

Subscribe

Read Today's E-edition

2A High School Basketball: Mark Morris coach Bill Bakamus signs off for final time

0 Comments

Share this

alert top story breaking editor's pick

2A Prep Boys Basketball / State

  • Jordan Nailon
  • 0

2A High School Basketball: Mark Morris coach Bill Bakamus signs off for final time (5)

Jordan Nailon

YAKIMA — The end arrived earlier than expected for Mark Morris boys basketball coach Bill Bakamus and his mighty Monarchs.

A 51-47 loss in the Round of 12 of the 2A state tournament, Wednesday, eliminated Mark Morris on the first day of action at the Yakima Valley SunDome.

The Monarchs led by as many as 10 points on multiple occasions and never trailed until the final two minutes when Jalen Davis knocked down a corner three to put Bremerton up by one. Davis finished the the contest with a game-high 26 points.

Braydon Olson led Mark Morris with 26 points in his final game for the Monarchs.

Check back at TDN.com, and in Saturday's print edition of The Daily News for full coverage and photos from the final game in Bakamus' 31 year career at Mark Morris.

0 Comments

Tags

  • Sports
  • Basketball
  • Games And Toys
  • Politics

Get in the game with our Prep Sports Newsletter

Sent weekly directly to your inbox!

Related to this story

PHOTOS: Mark Morris vs Bremerton Boys Basketball / State Round of 12

Photos from the Monarchs 51-47 loss to Bremerton in the 2A boys basketball state tournament, Wednesday, in Yakima.

2A High School Boys Basketball: Mark Morris bounced at State by Bremerton in Bakamus’ final game (UPDATED)

The Monarchs lost in heartbreaking fashion to Bremerton in the Round of 12 at the 2A state tournament, Wednesday, in Yakima. It was the final …

PHOTOS: Mark Morris vs North Kitsap Boys Basketball (Regionals)

2A High School Boys Basketball: Mark Morris rejected by North Kitsap in Regional round

The Monarchs kept it close for the duration but couldn't find the key to unlocking the Vikings' defense in a 58-48 loss to open their run in t…

2A High School Boys Basketball: R.A. Long falls to Bremerton in season-ending loss at Regionals

The Lumberjacks had more than a hope down the stretch but untimely errors ended their season with a loss to Bremerton in the Regional round of…

2A High School Boys Basketball: Bakamus, Olson lead GSHL All-League selections

Just try to guess who won the 2A GSHL boys basketball Coach of the Year and Player of the Year awards. We dare you.

PHOTOS: Wahkiakum vs Northwest Christian (Colbert) Boys Basketball / State Consolation

Photos from the Mules' season-ending loss to Northwest Christian (Colbert) in a 2B boys basketball state tournament game at the Spokane Arena,…

2B High School Boys Basketball: Wahkiakum ousted by Northwest Christian (Colbert) at State

Wahkiakum had its season come to an end, but the Mules will have plenty to build on moving forward.

Boys Prep Basketball: Coach Bill Bakamus arrives at fork in the road, takes it

After more than three decades, Mark Morris basketball had to say goodbye to coach Bakamus last week. And the farewell came at a familiar spot;…

© Copyright 2024 The Daily News, PO Box 1666 Longview, WA 98632

Terms of Use | Privacy Policy | Advertising Terms of Use | Do Not Sell My Info | Cookie Preferences

2A High School Basketball: Mark Morris coach Bill Bakamus signs off for final time (2024)
Top Articles
Latest Posts
Article information

Author: Edwin Metz

Last Updated:

Views: 6180

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Edwin Metz

Birthday: 1997-04-16

Address: 51593 Leanne Light, Kuphalmouth, DE 50012-5183

Phone: +639107620957

Job: Corporate Banking Technician

Hobby: Reading, scrapbook, role-playing games, Fishing, Fishing, Scuba diving, Beekeeping

Introduction: My name is Edwin Metz, I am a fair, energetic, helpful, brave, outstanding, nice, helpful person who loves writing and wants to share my knowledge and understanding with you.