code_review/templates/base.html
go back| 1 | | <!DOCTYPE html> |
| 2 | | <html> |
| 3 | | <head> |
| 4 | | <meta charset="utf-8" /> |
| 5 | | <meta name="author" content="Brandon Cook" /> |
| 6 | | <meta name="author" content="Thorin Murphy-Fahlgren" /> |
| 7 | | <title>Kent Batt Code Review</title> |
| 8 | | <link rel="stylesheet" href="static/style.css"/> |
| 9 | | </head> |
| 10 | | <body> |
| 11 | | {% block main %} {% endblock %} |
| 12 | | </body> |
| 13 | | </html> |
| 14 | | |