After a decade, Tampa’s Six Ten Brewing closes this weekend (2024)

click to enlarge

SixTenBrewing/Facebook

After celebrating a decade in Tampa Bay, Town ‘N’ Country’s popular Six Ten Brewing (7052 Benjamin Rd.) is emptying its kegs and closing its doors this weekend.

The local brewery—largely known for its wide variety of craft beers, regular event programming, and friendly hospitality—took to social media this week to announce the sale of its building and imminent closure of Six Ten.

“It is with mixed emotions that we announce the closing of our beloved brewery, as we have made the difficult decision to sell and allow another brewery to begin their journey,” Six Ten Brewing wrote on social media earlier this week. “From the first pint we poured to the countless celebrations, events and gatherings, every moment has been a life-changing experience for us. We are deeply grateful for the trust you placed in us, the feedback you shared, and the loyalty you showed.”

Six Ten's day last of service will be this Sunday, June 30.

Owners Leslie and Chris Johnson ditched their corporate jobs to open Six Ten Brewing in 2014, and quickly made a name for themselves in the local craft beer scene. In addition to an impressive "core beer" lineup of brews like the CBGB Berliner Weisse, TPA double IPA, Poco Loco Belgian Ale and Tent Beer Munich-style lager, Six Ten is also known for both its seasonal and specialty bottle drops.

Six Ten Brewing even snagged a gold medal at the 2021 Great American Beer Festival for its "Hold the Waffle" chocolate beer.

While it’s unsure what up-and-coming brewery is opening out of Six Ten’s former Town ‘N’ Country location, the Johnsons assure their customers that they can expect great service and brews from the newcomers.

“As we close this chapter, we want to assure you that the spirit of the brewery will live on in the hands of its new owners, who share a commitment to quality and community,” Six Ten Brewing’s closing announcement continues. “We have every confidence that they will continue to uphold the standards and traditions we have established over the years.”

Head to @SixTenBrewing on Facebook or Instagram for more information on the popular craft brewery. And if you’re planning a final trip to Six Ten this weekend, please remember to tip your bartenders.

For its final weekend of service, Six Ten Brewing is open from 3 p.m.-10 p.m. Friday and Saturday and 3 p.m.-8 p.m. on Sunday, June 30.

Location Details

Six Ten Brewing

7052 Benjamin Rd., Tampa

Subscribe to Creative Loafing newsletters.

Follow us: Google News | NewsBreak | Reddit | Instagram | Facebook | Twitter

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } // const insertionBlockClass = `fdn-paragraph-insertion-block`; const styleElementHook = `fdn-paragraph-insertion-styles`; jQuery(element).addClass(insertionBlockClass); if (jQuery(`[${styleElementHook}]`).length === 0) { jQuery('div.fdn-content-body, div #storyBody').append('

') const paragraphLineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() const styleElement = jQuery(`

`); const styleText = ` div.fdn-content-body br+.${insertionBlockClass}:not([hidden]), div #storyBody br+.${insertionBlockClass}:not([hidden]) { margin-top: ${paragraphLineHeight*2}px; margin-bottom: ${paragraphLineHeight}px; } div.fdn-content-body br+.${insertionBlockClass}[hidden] > div:last-of-type, div #storyBody br+.${insertionBlockClass}[hidden] > div:last-of-type { margin-bottom: ${paragraphLineHeight*2}px; } ` styleElement.text(styleText); jQuery('head').append(styleElement); } // } } jQuery(element).insertBefore(this.paragraphEndNodes[index]); } else { console.warn('Foundation.ParagraphTool.insertElemenAt: invalid insertion index', index); } } this.insertElemenAtEnd = function (element) { if (this.paragraphEndNodes.length) { let lastNode = this.getNodeAtIndex(this.paragraphEndNodes.length -1); if (this.isDoubleBrParagraphBreak(lastNode) || this.isBrParagraphBreakBeforeBlockElement(lastNode)) { if (jQuery(element).get(0).tagName.match(/SCRIPT/i) !== null) { jQuery('
').insertAfter(this.paragraphEndNodes[index]); jQuery('
').insertAfter(this.paragraphEndNodes[index]); } else { jQuery('div.fdn-content-body, div #storyBody').append('

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } } } } this.bodyContainer.append(element); } this.getNodeAtIndex = function (index) { return this.paragraphEndNodes[index]; } }

`); } var paragraphCount = myParagraphTool.getParagraphEndNodeCount(); // No need to insert if there aren't enough paragaphs if (paragraphCount >= parseInt(item.requiredCountToDisplay)) { // Matches specific paragraph insertion indexes if (item.insertPoint.match(/^\d+$/) !== null) { var insertIndex = parseInt(item.insertPoint) - 1; // Insert within content if (insertIndex < paragraphCount) { myParagraphTool.insertElemenAtIndex(componentElement, insertIndex); } // Append to the end if the insert point is beyond the paragraph count else { myParagraphTool.insertElemenAtEnd(componentElement) } } // Matches for 1/2, 1/4, 2/3, 5/6, etc else if (item.insertPoint.match(/^[1223456]\/[23456]$/) !== null) { var fractionMatch = new RegExp(/^([123456])(?:\/)([23456]$)/); var fractionPart = parseInt(item.insertPoint.match(fractionMatch)[1]); var fractionWhole = parseInt(item.insertPoint.match(fractionMatch)[2]); var fractionValue = fractionPart / fractionWhole; var fractionIndex = Math.floor(myParagraphTool.paragraphEndNodes.length * fractionValue) - 1; myParagraphTool.insertElemenAtIndex(componentElement, fractionIndex); } // Matches for every Nth insertion point else if (item.insertPoint.match(/^\d*th$/i) !== null) { var intervalIndex = parseInt(item.insertPoint.match(/^(\d*)th$/i)[1]); var startingIndex = parseInt(item.startingPoint) - 1; var insertionMax = parseInt(item.maxInsertions) || 100; var insertionCount = 0; for (var i = startingIndex; i < myParagraphTool.paragraphEndNodes.length && insertionCount < insertionMax; i++) { if ((i - startingIndex) % intervalIndex === 0) { let currentNode = myParagraphTool.getNodeAtIndex(i); const clonedComponent = componentElement.clone(); myParagraphTool.insertElemenAtIndex(clonedComponent, i); insertionCount++; } } } } }); Foundation.Content['18107017'].setupInlineComponents = function () { return true; }; if (typeof callback === 'function') { callback(); } }, 200); } Foundation.Content['18107017'].previewInsertionPoints = function () { var myParagraphTool = Foundation.Content['18107017'].paragraphTool myParagraphTool.paragraphEndNodes.each((index, item) => { const insertionPointPlaceholder = jQuery(`

`) myParagraphTool.insertElemenAtIndex(insertionPointPlaceholder, index); }); return 'Paragraph insertion placeholders applied.'; }

After a decade, Tampa’s Six Ten Brewing closes this weekend (2024)

References

Top Articles
Sugar Free Condensed Milk - Easy keto recipe!
50+ Favorite Trim Healthy Mama Friendly Christmas Baking Recipes
Fiskars X27 Kloofbijl - 92 cm | bol
Aberration Surface Entrances
Katie Pavlich Bikini Photos
Thor Majestic 23A Floor Plan
Yogabella Babysitter
Nehemiah 4:1–23
Top Scorers Transfermarkt
Martha's Vineyard Ferry Schedules 2024
A Complete Guide To Major Scales
Miss Carramello
Slapstick Sound Effect Crossword
Tlc Africa Deaths 2021
Fcs Teamehub
Keniakoop
UEQ - User Experience Questionnaire: UX Testing schnell und einfach
Dit is hoe de 130 nieuwe dubbele -deckers -treinen voor het land eruit zien
10-Day Weather Forecast for Florence, AL - The Weather Channel | weather.com
Star Wars: Héros de la Galaxie - le guide des meilleurs personnages en 2024 - Le Blog Allo Paradise
Bella Bodhi [Model] - Bio, Height, Body Stats, Family, Career and Net Worth 
Doublelist Paducah Ky
Jeffers Funeral Home Obituaries Greeneville Tennessee
About My Father Showtimes Near Copper Creek 9
Www.craigslist.com Austin Tx
Il Speedtest Rcn Net
BJ 이름 찾는다 꼭 도와줘라 | 짤방 | 일베저장소
Idle Skilling Ascension
4Oxfun
Yale College Confidential 2027
Housing Intranet Unt
Trust/Family Bank Contingency Plan
Que Si Que Si Que No Que No Lyrics
UPS Drop Off Location Finder
Covalen hiring Ai Annotator - Dutch , Finnish, Japanese , Polish , Swedish in Dublin, County Dublin, Ireland | LinkedIn
Dr Adj Redist Cadv Prin Amex Charge
Fetus Munchers 1 & 2
20 bank M&A deals with the largest target asset volume in 2023
Tsbarbiespanishxxl
Craigslist Freeport Illinois
2007 Jaguar XK Low Miles for sale - Palm Desert, CA - craigslist
Tinfoil Unable To Start Software 2022
Woody Folsom Overflow Inventory
Squalicum Family Medicine
Gabrielle Abbate Obituary
Sam's Club Gas Price Sioux City
Bf273-11K-Cl
A Snowy Day In Oakland Showtimes Near Maya Pittsburg Cinemas
Aaca Not Mine
Coleman Funeral Home Olive Branch Ms Obituaries
Kindlerso
Latest Posts
Article information

Author: Otha Schamberger

Last Updated:

Views: 5911

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Otha Schamberger

Birthday: 1999-08-15

Address: Suite 490 606 Hammes Ferry, Carterhaven, IL 62290

Phone: +8557035444877

Job: Forward IT Agent

Hobby: Fishing, Flying, Jewelry making, Digital arts, Sand art, Parkour, tabletop games

Introduction: My name is Otha Schamberger, I am a vast, good, healthy, cheerful, energetic, gorgeous, magnificent person who loves writing and wants to share my knowledge and understanding with you.