Because, I just don't have time and I haven't seen any Normal, simple footers for flarum, as to plug and play type of thing without extension.
Grabbed it from Mr. @[deleted] and modified it a little to work with day and night mode.
<div id="footer">
<div id="floatleft">
© 2020-<script>document.write(new Date().getFullYear())</script> Flarum.com
</div>
</a><div id="floatright">
<a href="terms-of-service">Terms</a>
<a href="privacy-policy">Policies</a>
</div>
</div>
Css:
#footer {
background: @body-bg;
color: @text-color;
position: fixed;
bottom: 0;
line-height: 2.4;
height: 30px;
width: 100%;
box-shadow: 0 1px 10px 0 rgba(151,158,181,0.28) !important;
}
#floatleft {
float: left;
padding-left: 10px;
}
#floatright {
float: right;
padding-right: 10px;
}
You can also use style from welcome message, which will look nice in day and night mode
#footer {
background: @hero-bg;
color: @hero-color;