Update bookmarks page design and add more entries. Add more 88x31 pictures.

This commit is contained in:
天クマ 2026-04-22 17:17:15 -03:00
commit fe9d3e67f1
311 changed files with 692 additions and 497 deletions

12
posts/posts.11tydata.js Normal file
View file

@ -0,0 +1,12 @@
let data = {
layout: "_includes/post.njk",
eleventyComputed: {
lastModified: function(data) {
const fs = require('fs');
const stats = fs.statSync(data.page.inputPath);
return stats.mtime;
}
}
};
module.exports = data;