first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-12-28 16:20:07 -05:00
commit b114fdf4fa
5377 changed files with 1850677 additions and 0 deletions
@@ -0,0 +1,7 @@
<div class="notebox">
<?php get_search_form(); ?>
</div>
<div class="entry">
<p><?php _e( 'The page you are trying to reach does not exist, or has been moved. Please use the menus or the search box to find what you are looking for.', 'hueman' ); ?></p>
</div>
@@ -0,0 +1,11 @@
<?php if ((category_description() != '') && !is_paged()) : ?>
<div class="notebox">
<?php echo category_description(); ?>
</div>
<?php endif; ?>
<?php
if ( have_posts() ) {
hu_get_template_part( 'parts/post-list-articles' );
}
?>
@@ -0,0 +1,11 @@
<?php if ( ! hu_is_home_empty() ) : ?>
<?php do_action( '__before_featured' ); ?>
<?php if ( hu_is_checked('featured-posts-enabled') ) { get_template_part('parts/featured'); } ?>
<?php do_action( '__after_featured' ); ?>
<?php
if ( have_posts() ) {
hu_get_template_part( 'parts/post-list-articles' );
}
?>
<?php endif; ?>
@@ -0,0 +1,11 @@
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();//<= when the Hueman header is not used Nimble hooks on '__after_header' to fire hu_do_render_nimble_sections(),
// When using both Nimble header-footer and the Nimble template, '__after_header' is fired but ob_cleaned(), so the sections are rendered with
if ( function_exists( 'Nimble\sek_page_uses_nimble_header_footer' ) && \Nimble\sek_page_uses_nimble_header_footer() ) {
hu_do_render_nimble_sections();
}
get_footer();
@@ -0,0 +1,25 @@
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class('group'); ?>>
<?php if ( hu_is_checked( 'singular-page-featured-image' ) ) { hu_get_template_part('parts/page-image'); } ?>
<div class="entry themeform">
<?php the_content(); ?>
<nav class="pagination group">
<?php
//Checks for and uses wp_pagenavi to display page navigation for multi-page posts.
if ( function_exists('wp_pagenavi') )
wp_pagenavi( array( 'type' => 'multipart' ) );
else
wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>'));
?>
</nav><!--/.pagination-->
<div class="clear"></div>
</div><!--/.entry-->
</article>
<?php if ( hu_is_checked('page-comments') ) { comments_template('/comments.php',true); } ?>
<?php endwhile; ?>
@@ -0,0 +1,15 @@
<div class="notebox">
<?php _e('For the term','hueman'); ?> "<span><?php echo get_search_query(); ?></span>".
<?php if ( !have_posts() ): ?>
<?php _e('Please try another search:','hueman'); ?>
<?php endif; ?>
<div class="search-again">
<?php get_search_form(); ?>
</div>
</div>
<?php
if ( have_posts() ) {
hu_get_template_part( 'parts/post-list-articles' );
}
?>
@@ -0,0 +1,78 @@
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class(); ?>>
<div class="post-inner group">
<?php hu_get_template_part('parts/single-heading'); ?>
<?php if( get_post_format() ) { get_template_part('parts/post-formats'); } ?>
<?php // audio and image post formats historically display the post featured image ?>
<?php if ( !has_post_format( 'audio' ) && !has_post_format( 'image' ) ) : ?>
<?php if ( hu_is_checked( 'singular-post-featured-image' ) ) : ?>
<div class="image-container">
<?php if ( has_post_thumbnail() ) {
$image_size = hu_is_checked( 'singular-post-cropped-feat-img' ) ? 'thumb-xxlarge' : 'full';
if( 'thumb-xxlarge' === $image_size && !function_exists('hu_limit_srcset_img_width_for_single_post') ) {
// do not allow the browser to pick a size larger than 'thumb-large'
function hu_limit_srcset_img_width_for_single_post() { return '1320'; }
// documented in wp-includes/media.php
// april 2020 : added for https://github.com/presscustomizr/hueman/issues/866
add_filter( 'max_srcset_image_width', 'hu_limit_srcset_img_width_for_single_post' );
}
hu_the_post_thumbnail( $image_size, '', false);//no attr, no placeholder
if( 'thumb-xxlarge' === $image_size ) {
remove_filter( 'max_srcset_image_width', 'hu_limit_srcset_img_width_for_single_post' );
}
$caption = get_post(get_post_thumbnail_id())->post_excerpt;
if ( isset($caption) && $caption ) echo '<div class="image-caption">'.$caption.'</div>';
} ?>
</div>
<?php endif; ?>
<?php endif; ?>
<div class="clear"></div>
<div class="<?php echo implode( ' ', apply_filters( 'hu_single_entry_class', array('entry','themeform') ) ) ?>">
<div class="entry-inner">
<?php the_content(); ?>
<nav class="pagination group">
<?php
//Checks for and uses wp_pagenavi to display page navigation for multi-page posts.
if ( function_exists('wp_pagenavi') )
wp_pagenavi( array( 'type' => 'multipart' ) );
else
wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>'));
?>
</nav><!--/.pagination-->
</div>
<?php do_action( 'hu_after_single_entry_inner' ); ?>
<div class="clear"></div>
</div><!--/.entry-->
</div><!--/.post-inner-->
</article><!--/.post-->
<?php endwhile; ?>
<div class="clear"></div>
<?php
if ( hu_is_checked( 'post-tags' ) ) {
the_tags('<p class="post-tags"><span>'.__('Tags:','hueman').'</span> ','','</p>');
}
?>
<?php if ( ( hu_is_checked( 'author-bio' ) ) && get_the_author_meta( 'description' ) ): ?>
<div class="author-bio">
<div class="bio-avatar"><?php echo get_avatar( get_the_author_meta('user_email'),'128' ); ?></div>
<p class="bio-name"><?php the_author_meta('display_name'); ?></p>
<p class="bio-desc"><?php the_author_meta('description'); ?></p>
<div class="clear"></div>
</div>
<?php endif; ?>
<?php if ( 'content' == hu_get_option( 'post-nav' ) ) { get_template_part( 'parts/post-nav' ); } ?>
<?php if ( apply_filters( 'hu_is_related_posts_enabled', '1' != hu_get_option( 'related-posts' ) ) ) { hu_get_template_part( 'parts/related-posts' ); } ?>
<?php if ( hu_is_checked('post-comments') ) { comments_template('/comments.php',true); } ?>