Connect with us

Nebraska

Nebraska’s Bergan Reilly shows out during homecoming spring volleyball match

Published

on

Nebraska’s Bergan Reilly shows out during homecoming spring volleyball match


Nebraska volleyball’s Bergan Reilly shows out during homecoming spring match

Advertisement

ALTHOUGH THE MAVS STILL TAKE TWO OF THREE FROM THE TOMMIES THIS WEEKEND. NEBRASKA SOFTBALL KICKED OFF ITS SPRING SEASON ON SATURDAY IN SIOUX FALLS, SOUTH DAKOTA, HOME OF MOUNT RUSHMORE AND NEBRASKA. GOTHENBURG AND RILEY. AND WHEN HER TIME IN LINCOLN IS DONE, SHE MAY JUST EARN A SPOT ON NEBRASKA VOLLEYBALL’S OWN MOUNT RUSHMORE. EDDIE MESSEL HAS MORE FROM THE SANFORD PENTAGON. NOW, IT IS NO SURPRISE WHO THE FAN FAVORITE WAS HERE FOR NEBRASKA VOLLEYBALL IN THEIR SPRING MATCH OUT IN SIOUX FALLS, RILEY. IT’S HER HOMETOWN. IT WAS A HOMECOMING FOR HER IN A GYM IN THE PENTAGON THAT SHE’S PLAYED MULTIPLE VOLLEYBALL MATCHES AND BASKETBALL GAMES DATING BACK TO HER TIME IN HIGH SCHOOL. THIS WAS SUCH A BIG MOMENT FOR HER AND HER FAMILY THAT HER FAMILY EVEN GOT A BOX HERE AT THE PENTAGON FOR FRIENDS AND LOVED ONES TO TAKE IN. WATCHING BACK HOME. BUT NOW, AS A HUSKER. A LOT OF FAMILIAR FACES IN THE CROWD AND JUST HAPPY THAT I COULD BRING MY TEAM HOME AND GOT TO HAVE A LITTLE TEAM DINNER LAST NIGHT WITH MY FAMILY. SO THAT WAS FUN. BUT YEAH, I THINK THE CROWD SHOWED OUT AND IT WAS REALLY FUN AND WE PLAYED REALLY WELL TOO. THAT CROWD SHOWED LOVE. RILEY’S SISTER AND OTHERS WEARING I HEART T SHIRTS THAT EVEN RILEY TOOK NOTICE OF. I DID SELLING THEM AT SCHEELS. RILEY DIDN’T DISAPPOINT THOSE IN ATTENDANCE. A TEAM HIGH 17 ASSISTS IN JUST TWO SETS, EVEN SHOWING OFF A LITTLE BIT OF HER OFFENSE TO DO IT IN YOUR HOMETOWN WHERE THERE’S A LOT OF PRIDE, I THINK IT’S PRETTY SPECIAL PRAYER. I THINK EVERYONE KNEW THAT THIS WAS A SPECIAL DAY FOR ME, BUT I ALSO KNOW AT THE END OF THE DAY THAT IT IS A GAME AND KIND OF ONCE THE GAME STARTS, ALL THAT STUFF GOES AWAY WITH MOM, TIFFANY AND DAD BRANDON IN THE STANDS. IT WAS A DAY FILLED WITH EMOTIONS FOR THE RILEY FAMILY. WELL, I’M NOT GOING TO LIE, I WAS THE FIRST TIME SHE WAS INTRODUCED AS A SENIOR SO THAT MAYBE MADE IT MADE THE EYES A LITTLE WET. THE BEGINNING OF THE END FOR RILEY, BACK WHERE IT ALL STARTED IN THE PENTAGON. I WAS JUST KIND OF LIKE A FULL CIRCLE MOMENT TO BE ABLE TO START OFF MY SENIOR YEAR BACK IN MY HOMETOWN WITH HER HUSKER UNIFORM ON AND WITH ALL THE RED IN THE CROWD. IT’S JUST IT’S IT’S JUST SUCH AN EXPERIENCE. THE HUSKER FAITHFUL BROUGHT THE SEA OF RED FROM LINCOLN, GIVING A LITTLE TASTE OF DEVANEY INSIDE THE PENTAGON. IT WAS REALLY FUN TO HAVE THAT ATMOSPHERE AND GET TO EXPERIENCE THAT, AND I’M GLAD THAT WE COULD BRING A LITTLE BIT OF A SHOW TO THE PEOPLE OF SIOUX FALLS. SO I LOVE THIS RALLY HERE IN SIOUX FALLS. WELL, THE LOUDEST AT THE PENTAGON GOT TODAY WAS AT THE END OF SET TWO WHEN RILEY SERVED UP AN ACE TO TAKE T

Advertisement

Nebraska volleyball’s Bergan Reilly shows out during homecoming spring match

Updated: 8:46 AM CDT Apr 13, 2026

Editorial Standards

Advertisement

Nebraska volleyball kicked off its spring season in Sioux Falls, South Dakota. It’s the home of Mount Rushmore and Nebraska setter Bergan Reilly. When her time in Lincoln is done, she may just earn a spot on Nebraska volleyball’s own Mount Rushmore.See the video above for the whole story.Make sure you can always see the latest news, weather, sports and more from KETV NewsWatch 7 on Google search.NAVIGATE: Home | Weather | Local News | National | Sports | Newscasts on demand |

Nebraska volleyball kicked off its spring season in Sioux Falls, South Dakota.

Advertisement

It’s the home of Mount Rushmore and Nebraska setter Bergan Reilly.

When her time in Lincoln is done, she may just earn a spot on Nebraska volleyball’s own Mount Rushmore.

See the video above for the whole story.

Advertisement

Make sure you can always see the latest news, weather, sports and more from KETV NewsWatch 7 on Google search.

NAVIGATE: Home | Weather | Local News | National | Sports | Newscasts on demand |

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’;

Advertisement

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

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.ketv.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.ketv.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);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

Advertisement

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

`;
}

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();
}
}

Advertisement

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’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

Advertisement

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 };

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’);
});
}
}

Advertisement

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’);

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.ketv.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.ketv.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’);
}

Advertisement

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);
}

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);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

Advertisement

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

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

Loading more articles…

Advertisement



Source link

Nebraska

Prairie Corridor project moves forward with land purchase near Pioneers Park

Published

on

Prairie Corridor project moves forward with land purchase near Pioneers Park


With less than 1% of Nebraska’s native tallgrass prairie remaining, Lincoln officials say a newly acquired tract of land could help preserve a disappearing part of the state’s landscape while expanding outdoor recreation opportunities for future generations.

Mayor Leirion Gaylor Baird and city leaders announced the purchase of nearly 100 acres southwest of Pioneers Park for $924,630 through a partnership involving the City of Lincoln, the Lower Platte South Natural Resources District, and Solidago Conservancy.

The acquisition advances the Prairie Corridor on Haines Branch project, a long-term effort to establish a continuous conservation and recreation corridor stretching from Pioneers Park Nature Center in Lincoln to the Spring Creek Prairie Audubon Center near Denton.

Mayor Leirion Gaylor Baird said the project will provide additional opportunities for residents and visitors to experience Nebraska’s prairie landscape while protecting natural resources.

Advertisement

“Advancing the Prairie Corridor, we create more opportunities for residents and visitors to hike, bike, explore nature, and experience the beautiful landscape that defines our region,” Gaylor Baird said. “We protect vital natural resources that improve water quality and help reduce flood risk downstream, and we preserve an important part of Nebraska’s natural heritage for future generations.”

The newly acquired Prairie Corridor Link property is intended to help connect Pioneers Park Nature Center and Spring Creek Prairie Audubon Center through a continuous protected prairie and trail system.

Plans for the Prairie Corridor include restoring over 5,000 acres of prairie lands (~2,000 acres of tallgrass prairie, and ~3,400 acres of native prairie) and constructing a 14.5-mile multiuse trail that will connect to Lincoln’s existing trail network.

“This property is a piece of a long-term vision to connect Pioneers Park Nature Center and Spring Creek Prairie Audubon Center through a continuous corridor, protected prairie, and trail,” Gaylor Baird said.

Parks and Recreation Director Maggie Stuckey-Ross said approximately over a majority of the Prairie Corridor Trail project has now been secured.

Advertisement

“Once complete, the corridor will include a continuous 7,400-acre passage of tallgrass prairie and a 14.5-mile multiuse trail, and in just nine years, nearly 70% of the Prairie Corridor trail corridor has been secured,” Stuckey-Ross said.

Project leaders say the Prairie Corridor has the potential to become a destination for hikers, cyclists, students, and nature enthusiasts from across Nebraska while helping preserve one of the state’s rarest ecosystems for future generations.

More information about the Prairie Corridor on Haines Branch is available at PrairieCorridor.org.



Source link

Advertisement
Continue Reading

Nebraska

Underground Railroad site reopens after 7-year closure in Nebraska City

Published

on

Underground Railroad site reopens after 7-year closure in Nebraska City


NEBRASKA CITY, Neb. (KOLN) – A piece of Underground Railroad history is reopening on Juneteenth after severe flooding forced it to close seven years ago.

The Mayhew Cabin offered shelter to people escaping slavery before the Civil War. Visitors can now walk through the same doors they did.

Family history connects to cabin

Darryl Hogan, president of the Mayhew Cabin Foundation, shares how his family escaped slavery in 1859.

“There was a slaveholder who held my third great-grandmother and a few other of the escaped slaves who had passed away, and they were going to be sold as property,” Hogan said from Canada. “So it was almost, in either a death sentence or a worse imprisonment than they had already had.”

Advertisement

The Mayhew family and abolitionist John Brown offered strangers a chance for freedom.

“En route, one of the enslaved people was pregnant and gave birth. So they are affectionately known as the 12 who passed through here,” said Doug Kreifels, board treasurer.

Cabin’s history dates to 1855

The Mayhew Cabin is one of Nebraska’s oldest structures, built in 1855 as the home of Allen B. Mayhew and his wife Barbara Ann. Barbara’s brother, John Kagi, lived there briefly as well.

Kagi helped abolitionist John Brown lead the enslaved people from Missouri to the cabin, as they escaped to Canada.

Flood damage closed site for seven years

Kreifels grew up learning about the cabin’s history.

Advertisement

“I remember when I went through that cabin and that cave and what an impact it had on me,” he said.

A flood in 2019 closed the site for seven years.

“And not only did it reach… as high as this overfill. I mean, it came up over the bank and flooded into the museum as well and caused some damage there,” Kreifels said.

Community effort restores cabin

The Mayhew Cabin Foundation restructured its board and used community grants to recruit Butch Bovier, a historical craftsman.

“Collectively, I think we bring a lot of skill sets together and goodwill,” said Robert Nelson, vice president of the board.

Advertisement

“They bring their dreams to me and I make them happen,” Bovier said.

Bovier helped restore the cabin.

“And that was kind of neat because what we did 20 years ago held up very well. In fact, it held up a lot better than we thought,” he said.

The team worked on the cottonwood logs.

“The logs are this wide, you don’t replace it because that much is bad. So we used a modern product to do some of that. In some cases, we just scraped it smooth,” Bovier said.

Advertisement

The team partially restored John Brown’s Cave. The cabin was moved to its current location in the 1930s from its original site. The owner at the time dug a tunnel-like system that leads to the ravine.

“It’s a tool that we use to help educate everyone who might have an interest in understanding what it might have been like for an enslaved person seeking freedom,” Kreifels said.

Volunteers make reopening possible

The Mayhew Cabin and John Brown’s Cave would not be able to open without the hard work of volunteers. For months, volunteers cleaned up the site and helped Bovier fix the cabin logs, cave and roof. One of them is Jason Hein, who moved to Nebraska City from California. Hein was looking for an opportunity to volunteer in the community and stumbled upon a Facebook post asking for extra hands to help at the Mayhew Cabin. His workplace Burr Farms donated machinery and services toward the efforts.

“You know, we don’t want things falling off the map. We want it to be there for future generations,” Hein said.

“And since that weekend, I’ve been out here Saturdays and Sundays every week. If there isn’t a whole bunch of hands trying to get something done, it’s not going to get done,” he said.

Advertisement

Volunteers have been preparing to reopen the site for more than three months.

“So, I mean, we’ve just literally been here, you know, cutting down trees or trimming trees and then people kind of walking by and seeing and asking, hey, what are you up to?” Nelson said.

The cabin will reopen on Juneteenth.

“And, it was just a matter of this is something that we need to do as a community. Let’s just do it and, make the world a little bit better place,” Hogan said.

Lane Trail and ‘Bloody Kansas’

The Mayhew Cabin was part of the Lane Trail on the Underground Railroad. At the time, the Kansas-Nebraska Act was formed and pro-slavery and abolitionists fought to sway the public toward their beliefs, giving it the nickname “Bloody Kansas.” Abolitionists in southeast Nebraska aided these efforts and helped slaves escape on the Lane Trail.

Advertisement

“It’s an incredible building, but it’s kind of the launch. It was seen as the southern terminus of the Army of the North marching into Kansas, but then also kind of the beginning of the Underground Railroad,” Nelson said.

Nelson, a former Omaha World Herald journalist, researched the Lane Trail extensively. He grew up in Falls City, Nebraska and found out his family has a history of aiding abolitionists.

“The successful fight to stop (slavery), based in Nebraska, or by the people who are involved with this Underground Railroad, is the reason the South secedes. They can’t expand anymore. You know, putting up the wall of Kansas really is what starts the Civil War. So that idea that’s that that’s the Civil War before the Civil War, and Nebraska played a big part of it. I think is a story that’s lost,” Nelson said.

Work remains on the site. The nonprofit wants to repair the museum building and other historic buildings on the property.

Juneteenth event details

A Juneteenth event starts at 7 p.m. Friday at the Mayhew Cabin in Nebraska City. People will have the opportunity to hear speeches from Butch Bovier, Robert Nelson and Darryl Hogan. The event is open to the public and free. There is outdoor seating, but people are welcome to bring lawn chairs. Live music will be provided by West Street Wranglers.

Advertisement

Refreshments will be served at the Hidden Falls Cave Event Center. The Mayhew Cabin is located at 2012 4th Corso in Nebraska City. Questions can be directed to Doug Kreifels at (402) 209-4060.

Click here to subscribe to our 10/11 NOW daily digest and breaking news alerts delivered straight to your email inbox.

Copyright 2026 KOLN. All rights reserved.



Source link

Advertisement
Continue Reading

Nebraska

Nebraska’s governor doesn’t carry a state-issued phone. Critics call it an abuse of state disclosure laws. – Flatwater Free Press

Published

on

Nebraska’s governor doesn’t carry a state-issued phone. Critics call it an abuse of state disclosure laws. – Flatwater Free Press


For more than two years, Nebraska Gov. Jim Pillen did not make or take a single call on his cellphone while on the clock as the state’s chief executive — at least none that there is any record of, according to his office’s top attorney.

After the Flatwater Free Press filed a public records request for call logs from Pillen’s cellphone dating back to September 2023, the governor’s general counsel said no such records exist.

“Governor Pillen does not have a state-issued mobile phone,” the lawyer, Michael J. Donley, said in an email earlier this month — more than four months after Flatwater filed the request.

Advertisement

The revelation marks Pillen’s latest step to shield his communications from public view. He broke with more than 30 years of gubernatorial practice by not releasing a public schedule in March 2023, just two months into his first term. And in August of that year, his office refused to release four of his emails in response to a public records request, citing “executive privilege” — a justification that does not exist in Nebraska’s public records laws.

“I don’t email, I don’t text,” the first-term Republican governor said in response to criticism from Democratic lawmakers over his refusal to release the emails. “Texting when it’s for anything other than logistics, I don’t do.”

His decision not to carry a state-owned cellphone makes him the first governor in at least 20 years not to do so — and, advocates say, amounts to an attempt to circumvent state law.