Skip to content

Instantly share code, notes, and snippets.

@zgulde
Created December 14, 2015 21:24
Show Gist options
  • Save zgulde/525caf738c43f7fa394e to your computer and use it in GitHub Desktop.
Save zgulde/525caf738c43f7fa394e to your computer and use it in GitHub Desktop.
Proposed template for all of our html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Viewing All Ads</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<?php include '../views/partials/header.php'; ?>
<?php include '../views/partials/navbar.php'; ?>
<!-- content goes here... -->
<?php include '../views/partials/footer.php'; ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment