Any open source project which has best base template for django.<p>example:- https://github.com/learningequality/ka-lite/blob/master/kalite/distributed/templates/distributed/base.html
There's no such thing as the "best".<p>It will depend on your needs. The "best" template would be the one that users enjoy using the most and/or the one that makes you the most money.<p>Also, this question isn't quite appropriate for HN or even a site like StackOverFlow.<p>Why not design 3 or 5 bases and let us pick 1 for you.<p>If by best, you are referring to the 1 that can kickstart your work quickest, then the 1 that is easiest for you to understand whilst giving you the most to work with will be the "best".
I don't see why there should be a specific HTML template for just Django, since the HTML representations are pretty separated from the controller and model, any template should do.<p>HTML5boilerplate is a great one to start, just because it deals with a lot of cross-browser compatibility issues.
Mine looks something like<p><pre><code> <!doctype html>
<html lang=en" ng-app="App>
<head>[...]</head>
<body><div ui-view id="content"></div></body>
<script src="/path/to/production.js"></script>
</html>
</code></pre>
And, aside from the stuff I snipped out of the head, that's about it. Angular populates all the rest.