Skip to content

Instantly share code, notes, and snippets.

@radhenazarkar
Created March 7, 2016 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radhenazarkar/c19d394242d5ff06ec9c to your computer and use it in GitHub Desktop.
Save radhenazarkar/c19d394242d5ff06ec9c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>
{% block title %}{{ page.title if page.title}} {% endblock %}
</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
<link href="/css/style.css" rel="stylesheet">
{% block styles %}{% endblock %}
</head>
<body class="main-wrap">
{% include "../includes/header.html" %}
<div class="content-wrap">
{% block content %}
{% endblock %}
</div>
{% include "../includes/footer.html" %}
<script src="/js/vendor.js"></script>
<script src="/js/main.js"></script>
{% block extra_js %}{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment