Skip to content

Instantly share code, notes, and snippets.

@kaustubhgupta
Created April 19, 2022 05:42
Show Gist options
  • Save kaustubhgupta/6d7c410a78914c98285c79b7c629d2de to your computer and use it in GitHub Desktop.
Save kaustubhgupta/6d7c410a78914c98285c79b7c629d2de to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{% endblock %} - My Webpage</title>
</head>
<body>
<h3>This will come up in every Webpage (Base template)</h3>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
This content is from base template
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment