Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
advisor
Commits
281772bc
Commit
281772bc
authored
Mar 01, 2014
by
Daniel W Bond
Browse files
created the base
parent
c1d248fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
advisor/static/css/style.css
0 → 100644
View file @
281772bc
/* Sticky footer styles
------------------------------------*/
html
,
body
{
height
:
100%
;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap
{
min-height
:
100%
;
height
:
auto
;
/* Negative indent footer by its height */
margin
:
0
auto
-30px
;
/* Pad bottom by footer height */
padding
:
0
0
30px
;
padding-top
:
30px
;
}
/* Set the fixed height of the footer here */
#footer
{
height
:
30px
;
background-color
:
#f5f5f5
;
text-align
:
center
;
}
advisor/templates/layouts/base.html
View file @
281772bc
<html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html
lang=
"en"
>
<head>
{% load staticfiles %}
<meta
charset=
"utf-8"
>
<link
href=
"/static/css/bootstrap.min.css"
rel=
"stylesheet"
media=
"screen"
>
<link
href=
"/static/css/bootstrap-theme.min.css"
rel=
"stylesheet"
>
<link
href=
"/static/css/style.css"
rel=
"stylesheet"
media=
"screen"
>
<!-- <link rel="icon" href="/static/img/favicon.ico"> -->
<script>
/*
@licstart The following is the entire license notice for the
JavaScript code in this page.
Copyright (C) 2014 Mason SRCT
The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this page.
*/
</script>
<meta
name=
"description"
content=
"Advisor is a platform for automating academic advising created by Mason SRCT."
>
<title>
{% block title %} {% endblock %}
</title>
</head>
<body>
<div
id =
"wrap"
>
{% include 'layouts/navbar.html' %}
<div
class=
"container"
>
{% block content %}
{% endblock %}
</div>
</div>
<div
id=
"footer"
>
{% include 'layouts/footer.html' %}
</div>
<script
src=
"/static/js/jquery-2.1.0.min.js"
></script>
<script
src=
"/static/js/bootstrap.min.js"
></script>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment