Connect with us

Louisiana

'Coming Home': LSU's Textile & Costume Museum honors Louisiana-born fashion legend – Reveille

Published

on

'Coming Home': LSU's Textile & Costume Museum honors Louisiana-born fashion legend – Reveille


When one thinks about luxury fashion, Louisiana might not be the first place that comes to mind. An LSU museum is showcasing how a fashion designer from Louisiana became an American fashion legend.
The LSU Textile & Costume Museum is currently exhibiting fashion designer Geoffrey Beene’s award-winning work. As visitors shuffle through the museum, there are four decades of craftsmanship and art waiting to meet them. The walls of the museum display information about Beene with his sketches, designs and photos.
“Beene eschewed fashion as a trend and instead approached dressing as an artful expression and perhaps even a divine representation of female beauty,” the exhibit reads.
Hailing from Louisiana and trained in Paris, the exhibit shares Beene’s story.
“Mr. Beene was originally from Hainesville, Louisiana, which is a tiny, one stoplight town in the northern part of the state,” said Michael E. Mamp, the museum’s director and curator. “And he went on to be one of the most successful American fashion designers of all time.”

Courtesy of the LSU Textile and Costume Museum

The exhibit touches on every aspect of Beene’s career, from his affinity for polka dots to his use of florals, lace, line and shape. In one part of the exhibit, Beene’s southern heritage is spotlighted through the dresses and ensembles he designed.
All of the garments in the exhibit were donated to the LSU Textile & Costume Museum by Dr. Sylvia R. Karasu, a fan and long-time collector of Beene’s work. She donated 254 pieces with the hope that some of Beene’s work would be preserved in his home state.
Mamp discussed how museum visitors should look at Beene’s unique work, saying they “… have to look closely at the details because he was so focused on excellent craftsmanship, beautiful fabrications, finishing garments in a way that is really more akin to couture versus manufactured ready to wear.”
“He wasn’t interested in necessarily being fashioned forward,” Mamp said, “but just wanted to make beautiful, timeless clothes that people could wear over and over again.”
Mamp explained Beene’s legacy came from how well he constructed his clothes, saying the designer took “high end” approaches to fashion.
“Beautiful silk linings, attached petticoats underneath the skirt,” Mamp said. “Things that outwardly people wouldn’t see, but that make wearing the garment special for the person who puts it on.”

Courtesy of the LSU Textile and Costume Museum

Mamp hopes students leave the museum understanding Beene’s dedication to creating fashionable pieces without compromising quality.
“Beene’s ability to be successful, his commitment and dedication to making beautiful clothes. He never really compromised his standards in that regard,” Mamp said. “It is a testament, I think, to students about what one can achieve if they want it badly enough, and if they work hard enough at it.”
“Coming Home: Geoffrey Beene” will close Jan. 24. The Textile & Costume Museum keeps hundreds of textile and fashion artifacts, preserving and creating space for centuries of human art and clothing. Their next exhibit, “Color Me Fashion,” will open on March 16. Admission to the museum is free.



Source link

Advertisement

Louisiana

Louisiana State Police investigating deadly crash after driver allegedly evades police

Published

on

Louisiana State Police investigating deadly crash after driver allegedly evades police


Louisiana State Police investigating deadly crash after driver allegedly evades police

Advertisement

ma’am. I Yeah. Yeah. I ma. Yeah. Yeah. ma’am. Yeah. Um.

Advertisement

Louisiana State Police investigating deadly crash after driver allegedly evades police

Updated: 9:30 PM CDT Apr 6, 2026

Editorial Standards

Advertisement

Louisiana State Police are investigating a crash after a driver allegedly evaded police on Canal Boulevard. Police say the crash happened around 5 p.m. on Canal Boulevard at City Park Avenue. The crash happened after the rider of the dirt bike struck another car while evading New Orleans police and Louisiana State Police, who were attempting to conduct a traffic stop. The subject was taken to a local hospital, where he later died. The name or age of the dirt bike rider was provided. This is an ongoing investigation. Anyone with information and/or pictures and videos is urged to share that information with LSP Detectives. You may anonymously report information through the Louisiana State Police online reporting system by visiting lsp.org and clicking on Report Suspicious or Criminal Activity, or by calling the LSP Fusion Center Hotline at 1-800-434-8007.

Louisiana State Police are investigating a crash after a driver allegedly evaded police on Canal Boulevard.

Advertisement

Police say the crash happened around 5 p.m. on Canal Boulevard at City Park Avenue.

The crash happened after the rider of the dirt bike struck another car while evading New Orleans police and Louisiana State Police, who were attempting to conduct a traffic stop.

The subject was taken to a local hospital, where he later died.

Advertisement

The name or age of the dirt bike rider was provided.

This is an ongoing investigation.

Anyone with information and/or pictures and videos is urged to share that information with LSP Detectives. You may anonymously report information through the Louisiana State Police online reporting system by visiting lsp.org and clicking on Report Suspicious or Criminal Activity, or by calling the LSP Fusion Center Hotline at 1-800-434-8007.

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

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

`;
}

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

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

Advertisement

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

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;

Advertisement

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

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

Advertisement

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

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

Advertisement

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

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

Advertisement

Loading more articles…



Source link

Continue Reading

Louisiana

Louisiana closed primary system raises voter questions ahead of May 16 election

Published

on

Louisiana closed primary system raises voter questions ahead of May 16 election


In the closed system, registered Democrats can only vote for Democratic candidates. Registered Republicans can only vote for Republican candidates. Louisiana’s fastest-growing affiliation, “no party” voters, get to choose between the two.



Source link

Continue Reading

Louisiana

Red, Rock & Blue: Registration deadline approaches for tournament benefitting La. military charities

Published

on

Red, Rock & Blue: Registration deadline approaches for tournament benefitting La. military charities


BATON ROUGE, La. (WAFB) – The Red, Rock & Blue charity softball tournament to benefit Louisiana military charities is quickly approaching.

SLOW-PITCH SOFTBALL TOURNAMENT

  • April 17 – April 19
  • BREC Oak Villa | Baton Rouge

Each team will get a three-game guarantee. There are different divisions for different skill levels.

Team registration is open to the public. You can register a team online.

The deadline to register is Friday, April 10.

Advertisement

Click here for more information about the 32nd annual charity slow-pitch softball tournament.

Past tournaments have been held in July, but the 2026 tournament was moved to spring for the cooler temperatures.

Red Rock and Blue typically gives $50,000 or more to military charities like The Blue Star Mothers of Louisiana and Gulf Coast Veterans each year.

The Caterie Reunion IV to benefit Red Rock and Blue is also set for August 15 at The Texas Club in Baton Rouge. More information on that event, including the musical lineup and ticket sales, is coming soon.

*WAFB is a sponsor and supporter of the Red, Rock & Blue non-profit organization.

Advertisement

Click here to report a typo. Please include the headline.

Click here to subscribe to our WAFB 9 News daily digest and breaking news alerts delivered straight to your email inbox.

Watch the latest WAFB news and weather now.

Copyright 2026 WAFB. All rights reserved.



Source link

Advertisement
Continue Reading

Trending