Skip to content

Instantly share code, notes, and snippets.

@Ramona2020
Created April 3, 2015 14:29
Show Gist options
  • Save Ramona2020/51b0398a6931ced36202 to your computer and use it in GitHub Desktop.
Save Ramona2020/51b0398a6931ced36202 to your computer and use it in GitHub Desktop.
Code for default.html file
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }}</title>
<!-- link to main stylesheet -->
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/syllabus">Syllabus/Assignments</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>
<div class="container">
{{ content }}
</div><!-- /.container -->
<footer>
<ul>
<li><a href="mailto:ramona.romero@vanderbilt.com">email</a></li>
<li><a href="https://github.com/ramona2020">github.com/ramona2020</a></li>
</ul>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment