Now Reading
Blues with an Australian twist coming to Leo & Leona’s …

Blues with an Australian twist coming to Leo & Leona’s …

Blues with an Australian twist coming to Leo & Leona’s

Return to homepage ×


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

‘);
$(‘.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.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 = ‘866-735-5631’;
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’: “lacrossetribune.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 : 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’), ‘lacrossetribune.com’)
.replace(new RegExp(‘{{site_name}}’, ‘gi’), ‘La Crosse Tribune’)
.replace(new RegExp(‘{{business_name}}’, ‘gi’), ‘La Crosse Tribune’)
.replace(new RegExp(‘{{site_phone}}’, ‘gi’), ‘866-735-5631’);
}
sPackage = sPackage.replace(new RegExp(‘{{‘+k+’}}’, ‘gi’), v);
});
if(sCol) sPackage = sPackage.replace(‘{{col}}’, sCol);
return sPackage;
}

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

×

Thanks for reading! Log in to continue.

Enjoy more articles by logging in or creating a free account. No credit card required.








Master of the harp

Award-winning Australian bluesman and singer/songwriter Peter Harper is bringing his band to Leo & Leona’s on Valentine’s Day. 



Contributed photo

Master harmonica player Peter Harper isn’t much for labels.

The Australian bluesman — who will be returning to Leo & Leona’s with his band, “Harper and the Midwest Kind” for a Valentine’s Day concert — believes his music comes from somewhere beyond categorization.

His successful integration of the didgeridoo into seemingly traditional blues is a prime example of that — but it’s not the only one.

Critics have noted that Harper’s music has elements of ’50s rhythm and blues, along with a message of love and unity from the ’60s and funky soul from the ’70s.

Add in Harper’s soulful voice and a deep mystical approach, and it’s easy to see why Harper defies easy classification.

Despite his unique approach — or perhaps because of it — Harper has won 14 blues or roots music awards in the U.S., Australia, Canada and the United Kingdom. “Show Your Love” the group’s last album went to #3 on the U.S. Billboard charts in 2016 and stayed in the Top Ten for more than six months.

Harper performs more than 200 shows a year worldwide and although he says he absolutely loves both the process of performing and songwriting, he doesn’t consciously aim for any particular style.

“Obviously there are going to be influences from what I listened to as a kid,” Harper said. “It just comes in and becomes a part of you. I don’t want to call it anything, but the radio stations do. I guess ‘world blues fusion’ is a pretty good tag because my music is a kind of fusion.”

Born in England, Harper’s family moved to Australia when he was 10. “My grandfather was a big blues fan and he gave me a harmonica,” Harper said. “I took to it quickly — even though I never had any lessons.”

Harper’s next instrument was the euphonium (essentially a miniature tuba). There’s not much call for miniature tubas in today’s music world, but the lessons Harper took provided him with a skill he now regards as priceless for a songwriter — the ability to read music.









Outback instrument

Australian bluesman and singer/songwriter Peter Harper, who will perform at Leo & Leona’s on Valentine’s Day, was taught to play the didgeridoo by Aborigines and uses that haunting sound in some of the songs he writes.



Contributed photo

Although Harper began playing with blues bands in the ‘90s, there was little thought of music as a career. “My dad insisted I learn a trade so I was working as a bookbinder during the day and performing at night,” he said. “Eventually I didn’t need the day gig — it was just a natural progression.”

The next step in Harper’s career came when his band caught the attention of a General Motors executive who was working in Australia at the time. He invited Harper to bring his band to Detroit and check out the music scene there. When Harper did so he liked what he saw. “When we first got there in 98 the city was kind of sad, but the music scene was still humping,” he said.

Not long after that Harper moved to Michigan. Today he lives in a rural area near Ann Arbor and owns a home with his own music studio. “It worked out great,” he says. “After we started touring around and did some little gigs we thought to ourselves, ‘These Michigan people are so friendly — they’re just like Aussies.’ Plus, the area is central for touring.”

Harper’s use of the haunting drone of the didgeridoo is probably the most unusual aspect of his music. Aborigines taught him how to play the instrument and he counts them among his friends. “They are wonderful people,” he said. Still, Harper admits that he had doubts about whether a didgeridoo could work in a blues setting. Fortunately the record company he was with at the time (Blind Pig) was very encouraging.

“Now when we perform it seems like the people who come to see us always want to hear more didgeridoo,” Harper said.

Another pivotal moment in Harper’s music came at a festival in Colorado where he met a musician from the Hopi tribe who played the Indian flute. “We had a lot in common and ended up talking for hours and hours,” Harper said. “He inspired me to write more songs about treating people with respect.”

This will be the band’s second appearance at Leo & Leona’s and Harper has nothing but praise for the venue. “The people who are running it are fantastic and it has such a great vibe,” Harper said. “I wish there were more venues like this. It’s not the kind of place where people are drinking with their back to you and watching TV — they’re there because they want to hear the music.”

The Valentine’s Day show should have a special vibe because the group’s latest album will have a Feb. 11 release. It’s called “Rise Up” and it carries a message of hope for those troubled by the divisiveness in the world today. “People who love our music can get the new CD at the show,” Harper said.

Asked what he’d tell people not familiar with his music, Harper said this: “Tell them to come see how rambunctious we are.”

Receive the latest in local entertainment news in your inbox weekly!

What's Your Reaction?
Excited
0
Happy
0
In Love
0
Not Sure
0
Silly
0
Scroll To Top