Example #1
0
								</ul>
							</div>
						</div>

					</div><!-- .entry-content -->

				<?php 
    cleanyetibasic_postfooter();
    ?>

				</div><!-- #post -->


				<?php 
    // action hook for placing contentbelow #post
    cleanyetibasic_belowpost();
    // action hook for calling the comments_template
    cleanyetibasic_comments_template();
    // end loop
}
?>

			</div><!-- #content -->

			<?php 
// action hook for placing content below #content
cleanyetibasic_belowcontent();
?>

		</div><!-- #container -->
 /**
  * The Tag loop
  *
  * Located in tag.php
  *
  * Override: childtheme_override_tag_loop
  */
 function cleanyetibasic_tag_loop()
 {
     while (have_posts()) {
         the_post();
         // action hook for insterting content above #post
         cleanyetibasic_abovepost();
         //post-formats
         $format = get_post_format();
         if (false === $format) {
             $format = 'standard';
         }
         get_template_part('library/postformats/format', $format);
         // action hook for insterting content below #post
         cleanyetibasic_belowpost();
     }
 }