Skip to content

Instantly share code, notes, and snippets.

@sarkarshuvojit
Last active December 6, 2017 20:35
Show Gist options
  • Save sarkarshuvojit/0112f28369be1274b30c0e90508e9542 to your computer and use it in GitHub Desktop.
Save sarkarshuvojit/0112f28369be1274b30c0e90508e9542 to your computer and use it in GitHub Desktop.
Sample code
<?php include_once 'helper/helper.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Website</title>
</head>
<body>
<?php subview('header.php'); ?>
<section id="main">
<?php subview('sidebar.php'); ?>
<section id="content">
<!-- content begins -->
<!-- content ends -->
</section>
<?php subview('footer.php'); ?>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment