fix dates of pictures

This commit is contained in:
2022-07-06 18:05:11 +01:00
parent 63af252644
commit 0aa03bb716
341 changed files with 20130 additions and 79 deletions
+1
View File
File diff suppressed because one or more lines are too long
+12
View File
@@ -0,0 +1,12 @@
(function() {
var els = document.querySelectorAll('.post-content [id]');
var headings = Array.prototype.slice.call(els);
headings.forEach(function(head) {
var link = document.createElement('a');
link.className = 'heading-link';
link.href = '#' + head.id;
head.appendChild(link);
});
}());
+6
View File
File diff suppressed because one or more lines are too long