1
- {% load static %}
2
- <!DOCTYPE HTML>
3
- < html > < head >
4
- < meta charset ="utf-8 ">
5
- < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
- < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
- < meta http-equiv ="Content-type " content ="text/html;charset=UTF-8 ">
1
+ {% extends "body.html" %}
8
2
9
- < title > CS Capstone Marketplace</ title >
10
- < link REL ="icon " HREF ="{% static "images /fav.png" %}">
3
+ {% block content %}
11
4
12
- < meta name ="author " content ="CSCapstone Marketplace ">
13
- < meta name ="description " content ="CSCapstone Marketplace ">
14
- < meta name ="keywords " content ="purdue, university, computer, science, capstone, marketplace, IBM ">
15
-
16
- <!-- BValidator -->
17
- < link href ="{% static "css /bvalidator.css" %}" rel="stylesheet " type ="text/css ">
18
-
19
- <!-- jQuery UI -->
20
- < link rel ="stylesheet " href ="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css ">
21
-
22
- <!-- Bootstrap CSS -->
23
- < link rel ="stylesheet " href ="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css " integrity ="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u " crossorigin ="anonymous ">
24
-
25
- <!-- Bootstrap IE8 Support -->
26
- <!--[if lt IE 9]>
27
- <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
28
- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
29
- <![endif]-->
30
-
31
- <!-- Fonts -->
32
- < link rel ="stylesheet " href ="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css ">
33
-
34
- <!-- Site CSS -->
35
- < link rel ="stylesheet " type ="text/css " href ="{% static "css /site.css" %}">
36
- </ head > < body >
37
- <!-- Navbar -->
38
- < nav class ="navbar navbar-inverse navbar-fixed-top ">
39
- < div class ="container ">
40
- < div class ="navbar-header ">
41
- < button type ="button " class ="navbar-toggle collapsed " data-toggle ="collapse " data-target ="#navbar " aria-expanded ="false " aria-controls ="navbar ">
42
- < span class ="sr-only "> Toggle navigation</ span >
43
- < span class ="icon-bar "> </ span >
44
- < span class ="icon-bar "> </ span >
45
- < span class ="icon-bar "> </ span >
46
- </ button >
47
- < a class ="navbar-brand " href ="# "> CS Capstone Marketplace</ a >
48
- </ div >
49
- < div id ="navbar " class ="navbar-collapse collapse ">
50
- < ul class ="nav navbar-nav ">
51
- < li class ="active "> < a href ="# "> Home</ a > </ li >
52
- < li > < a href ="/table "> Table</ a > </ li >
53
- < li > < a href ="/form "> Form</ a > </ li >
54
- </ ul >
55
- </ div >
56
- </ div >
57
- </ nav >
58
-
59
5
<!-- Content -->
60
6
< div class ="container theme-showcase " role ="main ">
61
7
< div class ="jumbotron ">
62
- < h1 > CS Capstone Marketplace</ h1 >
63
- < p > Hello World!</ p >
8
+ < h1 > Hi There!</ h1 >
9
+ < p > Welcome to the CS390-Python CS Capstone Project!</ p >
10
+ < br >
11
+ < a href ="/login "> Log in</ a >
12
+ < br >
13
+ < a href ="/register "> Register</ a >
64
14
</ div >
65
15
</ div >
66
16
67
- <!-- ----- Javascript ----- -->
68
-
69
- <!-- jQuery / jQuery UI -->
70
- < script src ="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js "> </ script >
71
- < script src ="//code.jquery.com/ui/1.11.4/jquery-ui.js "> </ script >
72
- < script type ="text/javascript " src ="{% static "js /jquery.cookie.js" %}"> </ script >
73
-
74
- <!-- BValidator -->
75
- < script type ="text/javascript " src ="{% static "js /jquery.bvalidator-yc.js" %}"> </ script >
76
-
77
- <!-- Bootstrap JS -->
78
- < script src ="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js " integrity ="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa " crossorigin ="anonymous "> </ script >
79
-
80
- <!-- Tablesorter -->
81
- < script type ="text/javascript " src ="{% static "js /jquery.tablesorter.min.js" %}"> </ script >
82
-
83
- <!-- Site JS -->
84
- < script type ="text/javascript " src ="{% static "js /site.js" %}"> </ script >
85
- </ body > </ html >
17
+ {% endblock %}
0 commit comments