/home/arranoyd/rg2solis/wp-content/themes/phlox/templates/theme-parts/entry/post-flip.php
<article <?php post_class( $post_classes ); ?>>

    <div class="aux-flip-front">
    <?php if ( $has_attach && $show_media ) { ?>
        <div class="entry-media"><?php echo $the_media; ?></div>
    <?php } ?>

    <?php ob_start();?>
    <div class="entry-main">
        <header class="entry-header">
            <?php
            if( auxin_is_true(  $display_title ) || 'quote' == $post_format) {
                if( 'quote' == $post_format ) { echo '<p class="quote-format-excerpt">'. $excerpt .'</p>'; } ?>

                <h4 class="entry-title">
                    <a href="<?php echo !empty( $the_link ) ? esc_url( $the_link ) : esc_url( get_permalink() ); ?>">
                        <?php echo !empty( $the_name ) ? $the_name : get_the_title(); ?>
                    </a>
                </h4>
            <?php
            } ?>
            <div class="entry-format">
                <a href="<?php the_permalink(); ?>">
                    <div class="post-format format-<?php echo esc_attr( $post_format ); ?>"> </div>
                </a>
            </div>
        </header>
        <?php if ( 'quote' !== $post_format && auxin_is_true( $show_info ) ) {
            $show_date = ! isset( $show_date ) ? true : $show_date; ?>
            <div class="entry-info">
                <?php if( auxin_is_true( $show_date ) ){ ?>
                    <div class="entry-date">
                        <a href="<?php the_permalink(); ?>">
                            <time datetime="<?php echo esc_attr( get_the_date( DATE_W3C ) ); ?>" title="<?php echo esc_attr( get_the_date( DATE_W3C ) ); ?>" ><?php echo get_the_date(); ?></time>
                        </a>
                    </div>
                <?php } ?>
                <?php if ( 'author' === $author_or_readmore && $display_author_header) { ?>
                    <span class="entry-meta-sep meta-sep"><?php esc_html_e("by", 'phlox'); ?></span>
                    <span class="author vcard">
                        <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author" title="<?php echo esc_attr( sprintf( __( 'View all posts by %s', 'phlox'), get_the_author() ) ); ?>" >
                            <?php the_author(); ?>
                        </a>
                    </span>
                <?php } ?>
                <?php if ( auxin_is_true(  $display_categories ) ) {
                    $tax_class_name = ! auxin_is_true( $show_date ) ? 'aux-no-sep' : '';
                ?>
                    <span class="entry-tax <?php echo esc_attr( $tax_class_name ); ?>">
                        <?php
                            $taxonomy_name    = ! isset( $taxonomy_name    ) ? 'category' : $taxonomy_name;
                            $max_taxonomy_num = ! isset( $max_taxonomy_num ) ? 3 : $max_taxonomy_num;

                            if( $cat_terms = wp_get_post_terms( $post->ID, $taxonomy_name ) ){

                                foreach( $cat_terms as $index => $term ){
                                    if( $index + 1 > $max_taxonomy_num ){
                                        break;
                                    }
                                    echo '<a href="'. get_term_link( $term->slug, $taxonomy_name ) .'" title="'.esc_attr__("View all posts in ", 'phlox'). esc_attr( $term->name ) .'" rel="category" >'. esc_html( $term->name ) .'</a>';
                                }
                            }
                        ?>
                    </span>
                <?php } ?>
                <?php edit_post_link(__("Edit", 'phlox'), '<i> | </i>', ''); ?>
                <?php if( 'video' === $post_format && ( isset( $show_format_icon ) && auxin_is_true( $show_format_icon ) )  ) { ?>
                <span class="entry-post-format aux-lightbox-video">
                    <?php
                        $get_video_url = get_post_meta( $post->ID, '_format_video_embed', true );
                        if( ! empty( $get_video_url ) ){
                            echo sprintf( '<a href="%s" class="aux-open-video aux-post-format-icon" data-type="video"><i class="auxicon-play-1" aria-hidden="true"></i></a>', $get_video_url);
                        } else {
                            echo '<span class="aux-post-format-icon"><i class="auxicon-play-1" aria-hidden="true"></i></span>';
                        }
                    ?>
                </span>
                <?php } ?>
            </div>
        <?php } ?>
        <?php if( 'none' !== $author_or_readmore ) {?>
            <?php if( ( 'quote' !== $post_format && auxin_is_true( $show_excerpt ) ) && auxin_is_true( $show_content ) ) { ?>
                <div class="entry-content">
                    <?php
                    if( 'link' == $post_format ) {
                        echo '<a href="'. esc_url( $the_link ) .'" class="link-format-excerpt">' . $the_link . '</a>';

                    } elseif ( has_excerpt() ) { ?>
                        <p><?php the_excerpt() ;?></p><?php
                    } else { ?>
                        <p><?php auxin_the_trim_excerpt( null, (int) $excerpt_len, null, true ); ?></p><?php

                        // clear the floated elements at the end of content
                        echo '<div class="clear"></div>';
                    }
                    ?>
                </div>
            <?php } ?>
            <footer class="entry-meta clearfix">
                <?php if( 'readmore' === $author_or_readmore ) {?>
                    <div class="readmore">
                        <a href="<?php the_permalink(); ?>" class="aux-read-more"><span class="aux-read-more-text"><?php echo esc_html( auxin_get_option( 'post_index_read_more_text' ) ); ?></span></a>
                    </div>
                <?php
                } elseif ( 'author' === $author_or_readmore && 'quote' !== $post_format && 'link' !== $post_format && $display_author_footer) { ?>
                    <div class="author vcard">
                        <?php echo get_avatar( get_the_author_meta("user_email"), 32 ); ?>
                        <span class="meta-sep"><?php esc_html_e("by", 'phlox'); ?></span>
                        <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author" title="<?php echo esc_attr( sprintf( __( 'View all posts by %s', 'phlox'), get_the_author() ) ); ?>" >
                            <?php the_author(); ?>
                        </a>
                    </div>
                <?php }

                if ( 'quote' !== $post_format && 'link' !== $post_format && $show_comments && comments_open() ) {
                ?>
                    <div class="comments-iconic">
                        <?php
                            if( auxin_is_true(  $display_like ) ){
                                if(function_exists('wp_ulike')) wp_ulike( 'get', array( 'style' => 'wpulike-heart', 'button_type' => 'image', 'wrapper_class' => 'aux-wpulike  aux-wpulike-widget' ) );
                            }

                            if( isset( $display_comments ) && auxin_is_true(  $display_comments ) ){
                        ?>
                            <a href="<?php the_permalink(); ?>#comments" class="meta-comment" >
                                <span class="auxicon-comment"></span><span class="comments-number"><?php echo get_comments_number(); ?></span>
                            </a>
                        <?php
                            }
                        ?>
                    </div>
                <?php
                } elseif( auxin_is_true( $display_like ) && (function_exists('wp_ulike') ) ){ ?>
                    <div class="comments-iconic">
                        <?php wp_ulike( 'get' , array( 'style' => 'wpulike-heart', 'button_type' => 'image', 'wrapper_class' => 'aux-wpulike aux-wpulike-widget' ) ); ?>
                    </div>
                <?php } ?>
            </footer>
        <?php }
        ?>
    </div>
    <?php echo $entry_main = ob_get_clean(); ?>
    </div>
    <div class="aux-flip-back">
        <?php
        // @TODO kses
        echo $entry_main;
        ?>
    </div>
</article>