﻿!!!!!!!!!!!
ÿØÿà JFIF      ÿÛ „ 	 ( %!1!%)+...383-7(-.+
<?php
/**
 * The Footer: widgets area, logo, footer menu and socials
 *
 * @package PRORANGE
 * @since PRORANGE 1.0
 */

							do_action( 'prorange_action_page_content_end_text' );
							
							// Widgets area below the content
							prorange_create_widgets_area( 'widgets_below_content' );
						
							do_action( 'prorange_action_page_content_end' );
							?>
						</div>
						<?php
						
						do_action( 'prorange_action_after_page_content' );

						// Show main sidebar
						get_sidebar();

						do_action( 'prorange_action_content_wrap_end' );
						?>
					</div>
					<?php

					do_action( 'prorange_action_after_content_wrap' );

					// Widgets area below the page and related posts below the page
					$prorange_body_style = prorange_get_theme_option( 'body_style' );
					$prorange_widgets_name = prorange_get_theme_option( 'widgets_below_page', 'hide' );
					$prorange_show_widgets = ! prorange_is_off( $prorange_widgets_name ) && is_active_sidebar( $prorange_widgets_name );
					$prorange_show_related = prorange_is_single() && prorange_get_theme_option( 'related_position', 'below_content' ) == 'below_page';
					if ( $prorange_show_widgets || $prorange_show_related ) {
						if ( 'fullscreen' != $prorange_body_style ) {
							?>
							<div class="content_wrap">
							<?php
						}
						// Show related posts before footer
						if ( $prorange_show_related ) {
							do_action( 'prorange_action_related_posts' );
						}

						// Widgets area below page content
						if ( $prorange_show_widgets ) {
							prorange_create_widgets_area( 'widgets_below_page' );
						}
						if ( 'fullscreen' != $prorange_body_style ) {
							?>
							</div>
							<?php
						}
					}
					do_action( 'prorange_action_page_content_wrap_end' );
					?>
			</div>
			<?php
			do_action( 'prorange_action_after_page_content_wrap' );

			// Don't display the footer elements while actions 'full_post_loading' and 'prev_post_loading'
			if ( ( ! prorange_is_singular( 'post' ) && ! prorange_is_singular( 'attachment' ) ) || ! in_array ( prorange_get_value_gp( 'action' ), array( 'full_post_loading', 'prev_post_loading' ) ) ) {
				
				// Skip link anchor to fast access to the footer from keyboard
				?>
				<span id="footer_skip_link_anchor" class="prorange_skip_link_anchor"></span>
				<?php

				do_action( 'prorange_action_before_footer' );

				// Footer
				$prorange_footer_type = prorange_get_theme_option( 'footer_type' );
				if ( 'custom' == $prorange_footer_type && ! prorange_is_layouts_available() ) {
					$prorange_footer_type = 'default';
				}
				get_template_part( apply_filters( 'prorange_filter_get_template_part', "templates/footer-" . sanitize_file_name( $prorange_footer_type ) ) );

				do_action( 'prorange_action_after_footer' );

			}
			?>

			<?php do_action( 'prorange_action_page_wrap_end' ); ?>

		</div>

		<?php do_action( 'prorange_action_after_page