Learn some serious balisong skills with this course.
Lessons
// hack to quick fix empty lesson when its the current lesson-title
jQuery( function ( $ ) {
$( '.lesson-title a').each(function() {
var $a = $(this);
$a.text( $a.text().trim() );
});
$( '.lesson-title a:empty' ).text( $('.entry-title').text() );
} );