add license and footer

This commit is contained in:
yuki 2025-10-11 02:33:52 -03:00
parent 7e1ec45599
commit b1b59a0be2
Signed by: yuki
GPG key ID: 0C98E6FF04EC3915
8 changed files with 380 additions and 757 deletions

13
LICENSE.txt Normal file
View file

@ -0,0 +1,13 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2025 yuki <yvki@riseup.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

View file

@ -14,9 +14,12 @@
{{ content | safe }}
<marquee class="motd" behavior="scroll" direction="left">
<img src="/img/Witch-on-broom.gif" alt="">
</marquee>
<footer>
<marquee class="motd" behavior="scroll" direction="left">
<img src="/img/Witch-on-broom.gif" alt="">
</marquee>
{% include "footer.njk" %}
</footer>
</div>
</body>
</html>

1
_includes/footer.njk Normal file
View file

@ -0,0 +1 @@
<p>est. 2025 | yuki (c) <a href="LICENSE.txt">Do What the Fuck You Want to Public License</a> </p>

View file

@ -12,7 +12,10 @@ body {
a { color: mp.$link; }
a:hover { color: c.adjust($color: mp.$link, $saturation: 4%, $lightness: 10%); }
p { color: mp.$text }
p {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: mp.$text
}
}
.header-wrapper {
@ -65,4 +68,10 @@ body {
}
}
}
}
}
footer p {
margin: 2px;
font-size: 0.7em;
text-align: right;
}

View file

@ -1,13 +1,15 @@
const eleventySass = require("eleventy-sass");
module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(eleventySass);
eleventyConfig.addPassthroughCopy("img");
eleventyConfig.addPassthroughCopy("css/fonts");
module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy("img");
eleventyConfig.addPassthroughCopy("css/fonts");
eleventyConfig.addPassthroughCopy("LICENSE.txt");
return {
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk"
}
};
eleventyConfig.addPlugin(eleventySass);
return {
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk"
}
};

View file

@ -1,4 +1,3 @@
---
layout: base
---
goodbye...

1078
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -15,6 +15,8 @@
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"eleventy-sass": "^3.0.0-beta.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-emoji-customizer": "github:actuallysomecat/markdown-it-emoji-customizer",
"sass": "^1.86.0"
}
}