function aktt_shortcode_tweet($args)
{
    if (!AKTT::$enabled) {
        return '';
    }
    if ($account = AKTT::default_account()) {
        $username = $account->social_acct->name();
    } else {
        // no accounts, get out
        return '';
    }
    $args = shortcode_atts(array('account' => $username, 'id' => null), $args);
    // if we have an ID, only search by that
    if (!empty($args['id'])) {
        unset($args['account']);
    }
    $args['count'] = 1;
    $tweets = AKTT::get_tweets($args);
    if (count($tweets) != 1) {
        return '';
    }
    $tweet = $tweets[0];
    ob_start();
    include AKTT_PATH . '/views/tweet.php';
    return ob_get_clean();
}