Initial commit of DEMOS2 with the upgraded 'Create Event' UI. However, there is no input validation currently
This commit is contained in:
commit
7084bd1b16
155 changed files with 8102 additions and 0 deletions
52
allauthdemo/templates/bases/bootstrap.html
Executable file
52
allauthdemo/templates/bases/bootstrap.html
Executable file
|
@ -0,0 +1,52 @@
|
|||
{% load staticfiles %}
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="en" {% block htmlattr %}{% endblock %}>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>{% block title %}dẽmos 2{% endblock %}</title>
|
||||
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/css/bootstrap-datetimepicker.min.css">
|
||||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css">
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
{% block head_css %}
|
||||
<link rel="stylesheet" media="screen" href='{% static "css/main.css" %}'>
|
||||
{% endblock %}
|
||||
|
||||
</head>
|
||||
<body class='{% block pageclass %}{% endblock %}' {% block bodyattr %}{% endblock %}>
|
||||
|
||||
{% block nav %}{% endblock %}
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
{% block footer %}
|
||||
<div class=container>
|
||||
<hr>
|
||||
<footer>
|
||||
<ul class="list-inline pull-right">
|
||||
<li><a href="{% url 'website_terms' %}">Terms</a></li>
|
||||
<li><a href="{% url 'website_contact' %}">Contact</a></li>
|
||||
</ul>
|
||||
<p class=muted>{% include "copyright.html" %}</p>
|
||||
</footer>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block tail_js %}
|
||||
{% endblock %}
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in a new issue