//Alert system with Promoted Articles (change the word Issue as it must exist in the Title)
if ( $('.promoted-articles ul li a:contains("Issue")').length > 0 ){
$('.notification').show();
$('#promoted-alert').html(
'<i class="fa fa-warning"></i> ' +
$('.promoted-articles ul li a:contains("Issue")').first().parent().html()
);
}
//This solution uses Font Awesome so please ensure you have that in your Document Head