D’Road Cafe offers signature brunch items. See for yourself
A look at some of the brunch offerings at downtown Montgomery’s D’Road Cafe.
Every year, Americans devour an estimated 50 million burgers, a sizzling testament to the nation’s enduring passion for beef, buns and bold toppings.
From roadside diners to upscale gastropubs, the hamburger has become a culinary symbol, with each state offering its own unique twist.
Advertisement
The team at Foodie has taken on the delicious challenge of finding the very best burger in every state. By combing through hundreds of customer reviews, spotlighting local award winners and even digging into regional news coverage, they’ve crafted a list that celebrates standout spots from coast to coast.
And when it comes to Alabama, one burger rises above the rest.
What is the best burger in Alabama?
In Alabama, Vicki’s Lunch Van in Montgomery claims the top spot.
What sets it apart? According to Foodie, the small, no-frills spot is “darn-near flawless,” known for freshly made cheeseburgers that taste exactly how a classic burger should.
If there’s one dish that defines the experience, it’s the Gunter Pile. This decadent creation layers a juicy burger patty with gravy and a mixture of fried and crispy onions, all atop a bed of fries. It’s messy, indulgent and distinctly Southern.
Advertisement
How to grab your burger at Vicki’s Lunch Van
If you want to try Vicki’s Lunch Van, note that this Montgomery favorite typically operates during limited lunch hours. Vicki’s is located at 106 Coliseum Blvd.
A lasting legacy
According to posts shared on Facebook, the restaurant’s owner, Vicki Lammon, passed away in February 2026.
The news brought an outpouring of support and memories from devoted customers. Many spoke not just of the quality of the food, but also of the welcoming atmosphere and personal touch that made the place special.
Jennifer Lindahl is a Breaking and Trending Reporter in Alabama for USA TODAY’s Deep South Connect Team. Connect with her on X @jenn_lindahl and email at jlindahl@usatodayco.com.
Tuscaloosa librarian Katy Busby named finalist for Alabama Elementary Teacher of the Year
Advertisement
WHAT INFORMATION THAT WE GIVE YOU ON OUR FREE APP AND OF COURSE ONLINE AS WELL. TUSCALOOSA EDUCATORS EARNING STATEWIDE RECOGNITION FOR HER IMPACT IN THE LIBRARY. TUSCALOOSA MAGNET SCHOOLS ELEMENTARY LIBRARIAN KATIE BUSBY IS NOW ONE OF THE TOP 16 FINALISTS FOR ALABAMA ELEMENTARY TEACHER OF THE YEAR. SHE WAS NAMED THE DISTRICT’S ELEMENTARY TEACHER OF THE YEAR LAST YEAR, BEFOR
Advertisement
Tuscaloosa librarian Katy Busby named finalist for Alabama Elementary Teacher of the Year
Updated: 8:46 PM CDT Apr 6, 2026
Editorial Standards ⓘ
Advertisement
A Tuscaloosa educator is earning statewide recognition for her impact in the library.Tuscaloosa Magnet Schools Elementary librarian Katy Busby is now one of the top 16 finalists for Alabama Elementary Teacher of the Year.Busby was named the district’s Elementary Teacher of the Year last year, before advancing to the state competition.The winner will be announced next month. Your neighborhood: Local coverage from WVTM 13
TUSCALOOSA, Ala. —
A Tuscaloosa educator is earning statewide recognition for her impact in the library.
Advertisement
Tuscaloosa Magnet Schools Elementary librarian Katy Busby is now one of the top 16 finalists for Alabama Elementary Teacher of the Year.
Busby was named the district’s Elementary Teacher of the Year last year, before advancing to the state competition.
The winner will be announced next month.
Advertisement
Your neighborhood: Local coverage from WVTM 13
Advertisement
`;
}
function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}
function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}
function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}
var location = { zip: window.DEFAULT_ZIPCODE };
Advertisement
try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
Advertisement
if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wvtm13.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wvtm13.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}
Advertisement
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}
var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}
function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;
Advertisement
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);
for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex
`;
}
function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}
function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;
Advertisement
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}
function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}
Advertisement
var location = { zip: window.DEFAULT_ZIPCODE };
try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;
Advertisement
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wvtm13.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wvtm13.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}
Advertisement
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}
var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}
function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);
for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex
Alabama is one of the premier places to find a quiet stop, as many small towns offer calm, peaceful communities, such as Mentone and Magnolia Springs. Yet, in these towns, there are still plenty of things to do and a rich history to appreciate. For instance, fans of authors Harper Lee and Truman Capote will delight in the literary offerings found in Monroeville. Whether it’s dining on the delicious seafood of Bayou La Batre or taking in the gorgeous white sand beaches of Orange Beach, you won’t regret slowing down or spending the night in these eight quietest Alabama towns.
Bayou La Batre
Shrimp boats are pictured in Bayou La Batre, Alabama.
Resting along the Mississippi Sound on the northern Gulf Coast is Bayou La Batre. Widely recognized as a fishing village, the town has also earned its name as the Seafood Capital of Alabama due to the large number of annual events celebrating fishing, along with many restaurants serving delicious seafood. The Blessing of the Fleet is their largest event (held on the 2nd and 3rd of May) that draws crowds from all over to enjoy good seafood and good company. Today, these events have expanded to offer Vietnamese Cuisine, a Gumbo Cook-off, an Arts & Crafts Show, a decorated boat show, and so much more. If you miss the event, not to worry. Places like Catalina Bayou are always ready to serve up delicious, local seafood.
With the town being a fishing town, naturally, there are plenty of places to fish. Sitting on the edge of the Gulf of Mexico (Gulf of America), visitors have ample opportunity to catch their own fish, with the waters being the perfect backdrop. Alternatively, packing a lighter lunch or a picnic would be perfect to have while spending some time at Rolston Park. The park features a playground for kids, along with a covered gazebo with picnic benches. The winding sidewalks throughout the park offer a beautiful view of the Gulf of Mexico for a post-meal leisurely activity.
Guntersville
Summer scene at Lake Guntersville, Alabama.
Considered in 2022 to be one of the South’s Best Lake Towns, Guntersville is widely known for easy lake living, miles of shoreline, and a place to find plenty of peace and quiet. Lake Guntersville State Park is a testament to that, offering 6,000 acres of natural woodlands and 36 miles of hiking and biking trails. In addition to being surrounded by the state’s largest lake, there are ample water activities, like kayaking through Hambrick Bat Cave. From May to October, thousands of bats emerge from the cave at night, and a good local pastime is to kayak or boat nearby to watch the bats go out into the night to hunt. And after spending a day on the water and exploring the sights, head over to the Old Town Stock House for a delectable treat. With the two primary chefs studying out of state, chefs Crystal McKone and Tom Colicchio returned to Guntersville to helm this upscale Southern American restaurant, serving seasonal dishes with the freshest catches and adding a Southern twist to fine-dining staples.
Greenville
An old movie theater on the main street in Greenville, Alabama. Image credit Sabrina Janelle Gordon via Shutterstock
For travelers curious about why Alabama’s state flower is the camellia, the residents of Greenville are responsible for that. Setting that bit of history aside, Greenville, like the camellia, has a lot of beauty for those willing to seek it out. For starters, the golf courses at the RTJ Golf Trail at Cambrian Ridge are a mixture of challenge and stunning scenery. So much so that several award-winning players and widely known golfing events are held there. In the evening, that Greenville beauty is captured in places like the Ritz Theatre, where pageants, concerts, and theater productions are held in those halls as they were during the 1950s and 1960s. And some of that beauty even passes to the local restaurants in Greenville, such as Bates House of Turkey. As one might suspect, the restaurant takes several creative liberties with serving many turkey-themed dishes like turkey sandwiches, turkey soup, and even turkey casserole. All of this is sustained by the Bates Turkey Farm, which, since 1923, still raises free-range turkeys and markets the various products locally and through an online catalogue.
Magnolia Springs
Street scene in Magnolia Springs, Alabama.
For those who love the Alabama beaches, the name Magnolia Springs might be familiar, as the town has served as a gateway to those coasts. Choosing to stop here over the beaches, however, rewards you with a beauty and peace unlike any other, so long as you plan for it. The heart of Magnolia Springs is its Victorian Bed and Breakfast, which offers nothing less than a taste of Victorian-era elegance for those who choose to stay there. With only five rooms available, it’s best to book in advance. In addition, one of the most iconic places to dine is the renowned Jesse’s Restaurant, where they serve Gulf-fresh seafood and other delectable dishes that you’ll want to reserve in advance. Setting those aside, Magnolia Springs offers plenty of scenic beauty through its handful of quick, easy trails, such as Magnolia Landing. As brief as they may be, the beauty of it all demands you slow down and take in the natural beauty of it all.
Mentone
Sunrise over DeSoto Falls near Mentone, Alabama.
Nestled within the woodlands of Lookout Mountain, you’ll eventually find yourself in Mentone. Perched on the highest point in the state, Mentone offers gorgeous views and is so remote that only a little over 300 people call it home. Nevertheless, it’s home to a surprising amount of tourist attractions and ways to unwind, such as the Cloudmont Ski and Golf Resort. The resort is uniquely positioned because it’s the only ski resort in the entire state; however, it’s diverse enough to serve as a golf course during warmer weather, too. The aforementioned Lookout Mountain is also great to explore, with scenic mountain-top views alongside a 104-foot waterfall. For full relaxation, regular yoga sessions are offered at DeSoto State Park and St. Joseph’s on-the-Mountain Episcopal Church for a nominal charge.
Monroeville
The “A Celebration of Reading Sculpture” by Branko Medencia in Monroeville, Alabama. Image credit VioletSkyAdventures via Shutterstock
For those with a deep love of literary history, Monroeville shouldn’t be overlooked, as it was home to two iconic literary legends: Truman Capote and Harper Lee. Both childhood friends, the two ended up writing the iconic novels In Cold Blood (by Truman Capote) and To Kill a Mockingbird (by Harper Lee). That being said, Lee’s book and her memory are more often displayed through a variety of museums and monuments throughout town.
The Old Courthouse Museum offers an opportunity to be sucked into Lee’s world, as its design inspired the courtroom in the novel. In a similar line, the Old Monroe County Bank Building served as the home of A.C. Lee’s law office, where Harper Lee wrote portions of her book.
Advertisement
Even though she drew inspiration from those places, her work continues to inspire others around town, as visitors can see to this day. The history of Lee can be found in parks like Lyle Salter Park, a downtown area serving as a marker about Monroeville as well as murals depicting various scenes from Lee’s book. This is in addition to the To Kill a Mockingbird Play, which runs from late March to early May on weekends.
Orange Beach
Perdido Pass, Orange Beach, Alabama.
While there are plenty of beach shores to explore in Alabama, one of the best and quietest ones to explore is that of Orange Beach. Unlike the name, the beaches have nothing but white sand and turquoise blue waters at their Gulf Shores. Exploring the town is also highly rewarding, as there is a nearby Waterfront Park with paved walking paths, a kids’ park with slides, shade structures, climbing areas, and a fishing pier, as well as a few restrooms and several picnic shelters.
History enthusiasts can also enjoy the area as well, with the Orange Beach Indian and Sea Museum being a place to delve deep into Native American culture. And after you’re done exploring, head over to The Wharf for a wide array of shopping and dining options.
Dauphin Island
Dauphin Island, Alabama. Editorial Photo Credit: Carmen K. Sisson via Shutterstock.
One of the five Mississippi-Alabama barrier islands, Dauphin Island is only 15 miles long from east to west but offers an island retreat unlike any other. Out of all the fishing areas, Dauphin Island is by far the most secluded, with the waters free to explore for fishing, kayaking or paddleboarding with Blue Heron Kayaks & Stand Up Paddleboards. Another popular spot to explore on dry land is the Audubon Bird Sanctuary, a 164-acre plot with walking trails through pines, live oaks, magnolias, and swamps and home to egrets and herons for viewing. For a quick bite, a stop at BGH Cafeis an option. The cafe specializes in Paninis, Po-Boys and Wraps with old-school soft-serve ice cream and malts. Conveniently located right at the Ferry Boat Landing, it’s hard to miss this quaint take-out restaurant.
From the secluded areas of Dauphin Island to the mountain village of Mentone, Alabama has diversity in its quiet spots if travelers are willing to take some back roads to get to them. Nevertheless, those adventures are rewarded with a remarkable dining experience at Magnolia Springs or with the beautiful, calm waters of Guntersville. Combined with locals welcoming you with that infamous southern hospitality, you will want to check out all the Yellowhammer State has to offer before too long.
Alabama gymnastics was one of the top-five teams in the nation all season, but it will not be one of the last eight teams competing for a chance at a national title.
The No. 5 Crimson Tide finished in last place at the Corvallis Regional Final with a score of 197.175, its second-lowest of the season. No. 4 UCLA (197.725) and No. 13 Minnesota (197.625) will be advancing to nationals in Fort Worth while No. 12 Utah’s (197.500) season ended Sunday night alongside Alabama’s.
“I’m really proud of our team tonight,” Alabama head coach Ashley Johnston said after the meet. “This was pretty much the toughest regional in the country to be at. This team has been No. 3 and 4 in the country pretty much all season long, one of the most consistent teams, 197+ in every competition this year. I think every single person that has watched this group sees the culture, sees the camaraderie, the connection of what we have built to be one of the most consistent teams, and so it was a great competition tonight. I think all four teams could be national champions. There’s just so much talent, so much competitiveness on the floor, and unfortunately it wasn’t our night to move on tonight. These moments are really hard, but at the same time, it’s really important to bring the team together and say, what can we do, and what will we do? The sun is gonna come up tomorrow. There will be lessons learned. There will be fires ignited to find our next step.”
Advertisement
This is the first time Alabama’s season has ended in the regional round since 2023. The Crimson Tide has not made it to the final night of NCAA competition since 2017.
Advertisement
In what has been a theme for the Crimson Tide the last five meets, there were no major mistakes that caused the team to completely fall apart, but all the little mistakes added up to too many deductions with things like hops on landings, bad form on leaps or balance checks.
Alabama was in last place heading into the final rotation, trailing the second-place spot by three tenths. The top-two teams advance to nationals. It was a sizable deficit, but the Crimson Tide was heading to its best event on the uneven bars. Alabama was putting together a strong bars rotation, but unfortunately for the Crimson Tide, the teams ahead of it in the standings were putting up good scores as well.
The Tide needed near perfection from Chloe LaCoursiere and Azaraya Ra-Akbar, who are ranked No. 1 and No. 2 respectively on the event. LaCoursiere had not scored below a 9.875 on the bars all season but stumbled forward on her dismount, effectively ending any hopes Alabama had for a comeback.
“We wanted to end on one of our highest-scoring potential events, which was bars,” Johnston said. “I think starting on beam, starting fierce and aggressive, was the right move for our team. I think they were really excited coming off that event. I think finishing on bars, they finished really strong, too. There was a lot of stuck landings, a lot of hit handstands. It was hard to push over that 9.9 threshold for whatever reason, but I thought from a performance standpoint, they really gave it everything and put on some great performances.”
Advertisement
Alabama opened up the meet with a 49.325 on the balance beam, which was a big improvement from the opening round of regionals on Friday and seemed to have some positive momentum heading into floor exercise.
Advertisement
The Crimson Tide needed a big score on floor exercise to have some cushion heading into the back half of the meet, probbaly in the 49.500+ range. Alabama was ranked No. 2 in the nation on floor and had the capability of putting up a high score. Instead, there were some tiny mistakes throughout on leaps and landings that led to a team score of 49.350, tying the lowest score of the season on the apparatus.
Alabama was in third place heading into the third rotation on vault, but it was only trailing second place by .075. Vault has been the Tide’s toughest rotation all season, but it was an opportunity on Sunday to gain some ground. Freshman Jasmine Cawley started the rotation out with a bang and stuck landing on her Yurchenko 1.5. But Jamison Sears fell in the second spot, and other gymnasts had some big hops. Kylee Kvamme was a last-minute insert and stuck her Yurchenko 1.5, earning a 9.925, which was Alabama’s only score above a 9.9 all meet.
A once promising season ends in disappointment for the Crimson Tide. Alabama was so consistent and steady all year long, but its scores slowly declined the last few weeks of the season in Year 4 under Johnston. The Crimson Tide’s season reached its peak in mid-February with back-to-back 197.950s, and Alabama never came close to that score again.
No one from Alabama qualified as an individual to compete at nationals for an individual title. This marks the end of the collegiate careers of outstanding four-year contributor and individual SEC champion Gabby Gladieux along with Corinne Bunagan, Karis German, Jordyn Paradise, Natalia Pawlak and Rachel Rybicki.
Advertisement
“I’m just so proud of our seniors,” Johnston said. “They will go down in history as leaders of a culture transformation, of building what Bama Gymnastics 3.0 is all about… I think every single one of them should hold their chin up and be proud of what they accomplished all year long. We’ll keep fighting as Bama always does.”
Advertisement
Sign up to our free newsletter and follow us on Twitter/X, Facebook, YouTube, Instagram, Threads and Blue Sky for the latest news.