This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <script type="text/javascript"> | |
| // A CSRF token is required when making post requests in Django | |
| // To be used for making AJAX requests in script.js | |
| window.CSRF_TOKEN = "{{ csrf_token }}"; | |
| </script> | |
| </head> | |
| <body> | |
| <h2>My Blog Posts</h2> |