HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/dev.abloc.cc/wwwroot/app/themes/abloc/archive.php
<?php get_header(); ?>

<div class="nm-blog">
    <div class="nm-blog-heading">
    	<div class="nm-row">	
        	<div class="col-xs-12">
                <h1>
                    <?php
                        if ( is_day() ) {
                            printf( esc_html__( 'Daily Archives: %s', 'nm-framework' ), '<strong>' . get_the_date() . '</strong>' );
						} elseif ( is_month() ) {
                            printf( esc_html__( 'Monthly Archives: %s', 'nm-framework' ), '<strong>' . get_the_date( 'F Y' ) . '</strong>' );
                        } elseif ( is_year() ) {
                            printf( esc_html__( 'Yearly Archives: %s', 'nm-framework' ), '<strong>' . get_the_date( 'Y' ) . '</strong>' );
                        } else {
                            esc_html_e( 'Archives', 'nm-framework' );
						}
                    ?>
                </h1>
            </div>
		</div>
    </div>
				
	<?php get_template_part( 'content' ); ?>
</div>

<?php get_footer(); ?>