mirror of https://github.com/snachodog/mybuddy.git
Update registration base to use correct static files.
This commit is contained in:
parent
117ee939cf
commit
6543a78944
|
@ -7,23 +7,22 @@
|
|||
<meta name="viewport"
|
||||
content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>{% block title %}{% endblock %} | Baby Blotter</title>
|
||||
<link rel="stylesheet"
|
||||
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"
|
||||
integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
|
||||
crossorigin="anonymous">
|
||||
<link rel="stylesheet"
|
||||
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
|
||||
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
|
||||
crossorigin="anonymous">
|
||||
{% if debug %}
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/app.css" %}" />
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/vendor.css" %}" />
|
||||
{% else %}
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/app.min.css" %}" />
|
||||
<link rel="stylesheet" href="{% static "babyblotter/css/vendor.min.css" %}" />
|
||||
{% endif %}
|
||||
</head>
|
||||
<body class="bg-dark registration">
|
||||
<div id="view-{{ request.resolver_match.view_name }}" class="container">
|
||||
<div class="text-center mb-4">
|
||||
<h1 class="display-3 mb-3 text-white"><span class="text-info">Baby</span> Blotter</h1>
|
||||
</div>
|
||||
<div class="bg-light p-4 rounded">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
<body class="bg-dark registration">
|
||||
<div id="view-{{ request.resolver_match.view_name }}" class="container">
|
||||
<div class="text-center mb-4">
|
||||
<h1 class="display-3 mb-3"><span class="text-info">Baby</span> Blotter</h1>
|
||||
</div>
|
||||
</body>
|
||||
<div class="bg-light p-4 rounded text-dark">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue