Add better footer
This commit is contained in:
parent
82166283b2
commit
6e4bf9316b
@ -9,7 +9,9 @@
|
||||
</head>
|
||||
<body>
|
||||
{% include header.html %}
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
{% include footer.html %}
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js" integrity="sha256-uWtSXRErwH9kdJTIr1swfHFJn/d/WQ6s72gELOHXQGM=" crossorigin="anonymous"></script>
|
||||
|
@ -9,7 +9,9 @@
|
||||
</head>
|
||||
<body>
|
||||
{% include header.html %}
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
{% include footer.html %}
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js" integrity="sha256-uWtSXRErwH9kdJTIr1swfHFJn/d/WQ6s72gELOHXQGM=" crossorigin="anonymous"></script>
|
||||
|
9
_scss/_general.scss
Normal file
9
_scss/_general.scss
Normal file
@ -0,0 +1,9 @@
|
||||
body {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1 0 auto;
|
||||
}
|
@ -3,6 +3,7 @@
|
||||
@import "variables";
|
||||
@import "mixins";
|
||||
@import "typography";
|
||||
@import "general";
|
||||
@import "header";
|
||||
@import "main-section";
|
||||
@import "footer";
|
@ -3,6 +3,7 @@
|
||||
@import "variables";
|
||||
@import "mixins";
|
||||
@import "typography";
|
||||
@import "general";
|
||||
@import "header";
|
||||
@import "main-section";
|
||||
@import "footer";
|
Loading…
Reference in New Issue
Block a user