Skip to content

Instantly share code, notes, and snippets.

@Efetivos
Last active April 9, 2020 18:37
Show Gist options
  • Select an option

  • Save Efetivos/39227f6b4aa8119fc2141cbcaa8293f8 to your computer and use it in GitHub Desktop.

Select an option

Save Efetivos/39227f6b4aa8119fc2141cbcaa8293f8 to your computer and use it in GitHub Desktop.
Base to other pages
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="theme-color" content="#000000">
<title><?php if(is_front_page())
echo "Home";
else if(is_404())
echo "Page Not Found";
else if(is_category() || is_search() )
echo single_cat_title();
else
the_title();
echo ' | '.get_bloginfo('name');
?></title>
<link rel="stylesheet" href="https://use.typekit.net/qji2vxl.css">
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/css/fonts/fonts.css">
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/css/app.css">
<?php wp_head(); ?>
</head>
<body>
<?php include 'includes/myintro.php'; ?>
<?php include 'includes/mymenu.php'; ?>
<?php include 'includes/myoverlay.php'; ?>
<div class="e-wvw e-rel" id="barba-wrapper">
<div class="barba-container page-single-projects" data-namespace="single-projects">
//HAVE FUN IN HERE
//HAVE FUN IN HERE
//HAVE FUN IN HERE
<?php include 'includes/myfooter.php'; ?>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment