/home/arranoyd/mice/wp-content/plugins/auxin-portfolio/public/templates/taxonomy-portfolio-cat.php
<?php /* Loops through all portfolio, taxes, .. and display posts */

/**
 * The template for displaying taxonomies
 *
 * 
 * @package    Auxin
 * @license    LICENSE.txt
 * @author     averta
 * @link       http://averta.net/phlox/
 * @copyright  (c) 2010-2023 averta
*/
get_header();?>

    <main id="main" <?php auxin_content_main_class(); ?> >
        <div class="aux-wrapper">
            <div class="aux-container aux-fold clearfix">

                <div id="primary" class="aux-primary">
                    <div class="content" role="main" data-target="archive">

<?php
                    if( have_posts() ){
                        auxpfo_get_template_part( 'theme-parts/tax', 'portfolio' );
                    } else {
                        auxpfo_get_template_part( 'theme-parts/content', 'none' );
                    }
?>
                    </div><!-- end content -->
                </div><!-- end primary -->


                <?php get_sidebar(); ?>

            </div><!-- end container -->
        </div><!-- end wrapper -->
    </main><!-- end main -->

<?php get_sidebar('footer'); ?>
<?php get_footer(); ?>