mirror of
https://github.com/wsvincent/awesome-django.git
synced 2024-11-23 20:11:09 +00:00
c67a1b8324
Fixes #100
16 lines
648 B
HTML
16 lines
648 B
HTML
<!DOCTYPE html>
|
|
<html class="no-js" lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
<title>Awesome Django</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
{% if jekyll.environment == 'development' %}
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/development.css" />
|
|
{% else %}
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/style.css" />
|
|
{% endif %}
|
|
</head>
|
|
|
|
<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 %}">
|