Checking conditionals

You can use get_post_format() to build a conditional (or switch).

$format = get_post_format();

if ( 'status' == $format ) {
    //
} 
else if ( 'quote' == $format ) {
    //
}
// etc.
else {
    // get_post_format() returns FALSE for "standard"
}