예제 #1
0
<?php

/**
 * The template for displaying comments.
 *
 * The area of the page that contains both current comments
 * and the comment form.
 *
 * @package gobrenix
 */
/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if (post_password_required()) {
    return;
}
?>

<?php 
component('comments');
예제 #2
0
<?php

/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package gobrenix
*/
?>
	</main>
	<?php 
component('footer');
?>
	<?php 
wp_footer();
?>
</body>
</html>
예제 #3
0
">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <meta name="description" content="">
    <meta name="author" content="">
    <link rel="icon" href="">

    <title><?php 
e(trans('messages.auth.reset'));
?>
</title>

    <!-- Bootstrap core CSS -->
    <link href="<?php 
e(component('bootstrap/dist/css/bootstrap.min.css'));
?>
" rel="stylesheet">

    <!-- Custom styles for this template -->
    <link href="<?php 
e(asset('auth/css/signin.css'));
?>
" rel="stylesheet">

    <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
    <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
    <script src="<?php 
e(asset('js/ie-emulation-modes-warning.js'));
?>
"></script>
예제 #4
0
<?php

// include configuration
include 'config.php';
// script accepts field type id and returns complete HTML
// test if input parameter is set
if (isset($_GET['id'])) {
    $id = $_GET['id'];
} else {
    $id = 0;
}
// no cache
header('Pragma: no-cache');
// HTTP/1.1
header('Cache-Control: no-cache, must-revalidate');
// date in the past
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
// include form component (it will be wrapped in DIV container)
include component($id);
예제 #5
0
 /**
  * Wrapper function for component().
  *
  * This function has been deprecated in favour of component() and will be removed in a future release.
  *
  * @param name
  * @param null $template
  * @param array $skin
  * @param array $attr
  * @param null $tag
  *
  * @deprecated
  */
 function module($name, $template = null, $skin = array(), $attr = array(), $tag = null)
 {
     component($name, $template, $skin, $attr, $tag);
 }
예제 #6
0
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title><?php 
wp_title('-', true, 'right');
?>
</title>
	<link rel="shortcut icon" href="<?php 
echo get_stylesheet_directory_uri();
?>
/assets/img/schabe-trans.png">
	<link rel="apple-touch-icon" href="<?php 
echo get_stylesheet_directory_uri();
?>
/assets/img/blue-logo.png">
	<?php 
wp_head();
?>
</head>
<body <?php 
body_class();
?>
>
	<!--[if lt IE 9]>
	    <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
	<![endif]-->
	<header>
		<?php 
component('navigation');
?>
	</header>
	<main>