Hi all. I'm on part 3 of the django tutorial and have all files as described except that i have different text to be displayed as part of the personal/home.html file. I run the server and the go to 127.0.0.1:8000 in my chrome browser and it brings me to a blank page with the tab labeled with my <title> from my header file. When inspect the source I see everything as it should be:
<!DOCTYPE html> <html lang="en">
<head>
<title> Michael Samuels <title> <meta charset="utf-8" />
<p>Have you seen the shadow walking in the dark? It came to me when I was young and whispered in my ear of Shenot. Have you seen the flowers rotting in the gardens?</p>
<p>Whoa, check me out, I am included!</p>
</div>
</body>
</html>
Yet when I just try to view the page it is blank with no text. Any ideas? I'm using python 3.5, Django 1.9 on Osx 10.9.5
You must be logged in to post. Please login or register an account.
Hey all. I figured out my error, and it was silly. The unclosed title tag in the code appears to have be causing the behavior.
-ms89 8 years ago
You must be logged in to post. Please login or register an account.