Skip to content

Instantly share code, notes, and snippets.

@guocheng
Last active August 29, 2015 14:18
Show Gist options
  • Save guocheng/9393c182b140aa866f0a to your computer and use it in GitHub Desktop.
Save guocheng/9393c182b140aa866f0a to your computer and use it in GitHub Desktop.
Bootstrap django index template
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title></title>
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
</head>
<body>
<div class="container">
</div>
<script type="text/javascript" src="{% static 'js/jquery-1.11.2.min.js' %}"></script>
<script type="text/javascript" src="{% static 'js/bootstrap.min.js' %}"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment