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
go
Commits
577039d1
Commit
577039d1
authored
Feb 16, 2016
by
Nicholas Anderson
Browse files
Fix
#16
parent
bab725c0
Changes
4
Hide whitespace changes
Inline
Side-by-side
go/go/templates/layouts/base.html
View file @
577039d1
...
...
@@ -21,6 +21,7 @@
<link
href=
"//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"{% static "
css
/
normalize.css
"
%}"
/>
<link
rel=
"stylesheet"
href=
"{% static "
css
/
bootswatch.min.css
"
%}"
/>
<link
rel=
"stylesheet"
href=
"{% static "
css
/
styles.css
"
%}"
/>
<link
rel=
"icon"
type=
"image/jpg"
href=
"{% static "
img
/
favicon.ico
"%}"
/>
<script
src=
"{% static "
js
/
jquery.min.js
"
%}"
></script>
...
...
@@ -38,10 +39,10 @@
{% endblock %}
{% include 'layouts/footer.html' %}
</div>
{% include 'layouts/footer.html' %}
{% tracking_code %}
</body>
...
...
go/go/templates/layouts/footer.html
View file @
577039d1
<footer>
<div
class=
"row"
>
<div
class=
"col-lg-12 text-center"
>
A project of
<a
href=
"http://srct.gmu.edu/"
>
GMU SRCT
</a>
.
<a
href=
"http://www.apache.org/licenses/LICENSE-2.0"
>
Some rights reserved
</a>
.
</div>
</div>
<footer
class=
"footer"
>
<div
class=
"text-center valign-center"
>
<span
class=
"text-muted"
>
A project of
<a
href=
"http://srct.gmu.edu/"
>
GMU SRCT
</a>
.
<a
href=
"http://www.apache.org/licenses/LICENSE-2.0"
>
Some rights reserved
</a>
.
</span>
</div>
</footer>
go/static/css/bootswatch.min.css
View file @
577039d1
This source diff could not be displayed because it is too large. You can
view the blob
instead.
go/static/css/styles.css
0 → 100644
View file @
577039d1
html
{
position
:
relative
;
min-height
:
100%
;
}
body
{
/* Margin bottom by footer height */
margin-bottom
:
80px
;
}
.footer
{
position
:
absolute
;
bottom
:
0
;
width
:
100%
;
/* Set the fixed height of the footer here */
height
:
60px
;
background-color
:
#f5f5f5
;
}
.valign-center
{
height
:
60px
;
line-height
:
60px
;
}
.valign-center
span
{
display
:
inline-block
;
vertical-align
:
middle
;
line-height
:
normal
;
}
\ No newline at end of file
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