
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/* -----------------------------------------------------------------------------
 * Scroll to top button
 * -------------------------------------------------------------------------- */

add_action( 'wp_footer', 'presso_the_scroll_to_top' );
if ( ! function_exists( 'presso_the_scroll_to_top' ) ) {
	function presso_the_scroll_to_top() {
		?>
		<span class="vw-scroll-to-top"><i class="vw-icon icon-entypo-up-open-big"></i></span>
		<?php
	}
}