Display current year in copyright

This commit is contained in:
Quantum 2020-06-14 00:48:15 -04:00
parent bc21cb55c7
commit 946e3dec0e
2 changed files with 2 additions and 2 deletions

View file

@ -220,7 +220,7 @@
<footer class="footer bg-light"> <footer class="footer bg-light">
<div class="container"> <div class="container">
<span class="text-muted">Copyright &copy; 2018 <a href="https://quantum2.xyz">Quantum</a>. Licensed under <span class="text-muted">Copyright &copy; 2018-${new Date().getFullYear()} <a href="https://quantum2.xyz">Quantum</a>. Licensed under
<a href="https://www.gnu.org/licenses/agpl-3.0.en.html">GNU AGPLv3</a>. Source code available on <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">GNU AGPLv3</a>. Source code available on
<a href="https://github.com/quantum5/correcthorsebatterystaple">GitHub</a>. <a href="https://github.com/quantum5/correcthorsebatterystaple">GitHub</a>.
</span> </span>

View file

@ -57,7 +57,7 @@ module.exports = {
test: /\.(scss)$/, test: /\.(scss)$/,
use: [ use: [
{ {
loader: mode == 'production' ? MiniCssExtractPlugin.loader : 'style-loader' loader: mode === 'production' ? MiniCssExtractPlugin.loader : 'style-loader'
}, },
{ {
// Interprets `@import` and `url()` like `import/require()` and will resolve them // Interprets `@import` and `url()` like `import/require()` and will resolve them