Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-engine   php

Repository URL to install this package:

Version: 2.7.7 

/ profile-builder / page-canvas.php

<?php
/**
 * The Template for displaying profile page
 */

defined( 'ABSPATH' ) || exit;

?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
		<title><?php echo wp_get_document_title(); ?></title>
	<?php endif; ?>
	<?php wp_head(); ?>
	<?php echo apply_filters( 'jet-engine/profile-builder/template/viewport_tag', '<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />' ); ?>
</head>
<body <?php body_class(); ?>>

	<?php
	/**
	 * Hook before main page content output.
	 * Add template wrappers start on this hook
	 */
	do_action( 'jet-engine/profile-builder/template/before-main-content' );

	/**
	 * Hoor to display main page content
	 */
	do_action( 'jet-engine/profile-builder/template/main-content' );

	/**
	 * Hook before main page content output.
	 * Add template wrappers start on this hook
	 */
	do_action( 'jet-engine/profile-builder/template/after-main-content' );

	wp_footer();

	?>
	</body>
</html>