header.html 648 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html class="no-js" lang="en-US">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="x-ua-compatible" content="ie=edge" />
  6. <title>Awesome Django</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1" />
  8. {% if jekyll.environment == 'development' %}
  9. <link rel="stylesheet" href="{{ site.baseurl }}/assets/development.css" />
  10. {% else %}
  11. <link rel="stylesheet" href="{{ site.baseurl }}/assets/style.css" />
  12. {% endif %}
  13. </head>
  14. <body class="max-w-screen-lg mx-auto py-8 px-4 sm:px-6 lg:py-8 lg:px-8 border border-2 {% if jekyll.environment == 'development' %}debug-screens{% endif %}">