Skip to content

Instantly share code, notes, and snippets.

@morganpierson
Created December 21, 2019 01:11
Show Gist options
  • Save morganpierson/f65c2f22d597fe92198603d9191ec1b0 to your computer and use it in GitHub Desktop.
Save morganpierson/f65c2f22d597fe92198603d9191ec1b0 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Student Meeting Scheduler</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
</head>
<body>
<header class="navbar-fixed">
<nav>
<div class="nav-wrapper">
<ul>
<li>
<a href="/" class='left brand-logo'>&nbsp;&nbsp;Meeting Scheduler</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="container">
{% block content %}
{% endblock %}
</main>
<footer class="page-footer">
<div class="right">
All Rights Reserved, &copy; 2020 Student Meeting Scheduler &nbsp;
</div>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment