Added footer
This commit is contained in:
parent
b601113af5
commit
29321d42fc
2 changed files with 25 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
@import "node_modules/bootstrap/less/bootstrap";
|
||||
@import "node_modules/bootstrap/less/theme";
|
||||
@import "node_modules/ionicons-pre/less/ionicons";
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,400italic,700);
|
||||
// @import url(https://fonts.googleapis.com/css?family=Roboto:400,300,400italic,700);
|
||||
@import (inline) "node_modules/animate.css/animate.css";
|
||||
@import (inline) "node_modules/normalize.css/normalize.css";
|
||||
@import 'homepage';
|
||||
|
@ -52,3 +52,17 @@ a.no-color-change {
|
|||
}
|
||||
}
|
||||
/* @end Global */
|
||||
|
||||
/* @ group Footer */
|
||||
footer {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding-top: 25px;
|
||||
color: white;
|
||||
background-color: #232323;
|
||||
a {
|
||||
padding: 7px;
|
||||
color: #ff7f00;
|
||||
}
|
||||
}
|
||||
/* @end Footer */
|
|
@ -11,6 +11,16 @@
|
|||
</head>
|
||||
<body class="{{ body_class }}">
|
||||
{% block content%}{% endblock %}
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h3>Copyright © TheOrangeOne 2015</h3>
|
||||
<a href="">About</a> | <a href="https://github.com/RealOrangeOne/theorangeone.net">View Source</a> | <a href="">Contact</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script type="text/javascript" src="{% static 'js/libs.js' %}"></script>
|
||||
<script type="text/javascript" src="{% static 'js/app.js' %}"></script>
|
||||
<noscript>
|
||||
|
|
Reference in a new issue