logo

blog

My website can't be that messy, right? git clone https://hacktivis.me/git/blog.git
commit: 6c5e877e2da6fe0a8bfbb34ae9d98d8a65feca4b
parent 80e631f6fd2738b00fff9f0e834778a3f658b26f
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu,  2 Mar 2023 18:52:22 +0100

notes/index.xhtml: Fix

Diffstat:

Mnotes/index.xhtml4++--
Mnotes_index.pm4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/notes/index.xhtml b/notes/index.xhtml @@ -4,14 +4,13 @@ <!--#include file="/templates/head.shtml" --> <title>Index of /notes/</title> <link rel="stylesheet" href="/css/sorttable.css?serial=2020091801"/> - <script defer="" src="/javascript/sorttable.js?serial=2023030201"></script> </head> <body> <!--#include file="/templates/en/nav.shtml" --> <main> <table class="sortable"> <thead> - <tr><th>Name</th><th>Size</th><th>Last Modified</th></tr> + <tr><th class="sorttable_sorted">Name</th><th>Size</th><th>Last Modified</th></tr> </thead> <tbody> <tr><td><a href="0001-autotools-Lazily-change-libGL-to-libOpenGL.patch">0001-autotools-Lazily-change-libGL-to-libOpenGL.patch</a></td><td></td></tr> @@ -60,5 +59,6 @@ </table> </main> <!--#include file="/templates/en/footer.shtml" --> + <script src="/javascript/sorttable.js?serial=2023030201"></script> </body> </html> diff --git a/notes_index.pm b/notes_index.pm @@ -31,14 +31,13 @@ print '<!DOCTYPE html> <!--#include file="/templates/head.shtml" --> <title>Index of /notes/</title> <link rel="stylesheet" href="/css/sorttable.css?serial=2020091801"/> - <script defer="" src="/javascript/sorttable.js?serial=2023030201"></script> </head> <body> <!--#include file="/templates/en/nav.shtml" --> <main> <table class="sortable"> <thead> - <tr><th>Name</th><th>Size</th><th>Last Modified</th></tr> + <tr><th class="sorttable_sorted">Name</th><th>Size</th><th>Last Modified</th></tr> </thead> <tbody> '; @@ -57,6 +56,7 @@ print ' </tbody> </table> </main> <!--#include file="/templates/en/footer.shtml" --> + <script src="/javascript/sorttable.js?serial=2023030201"></script> </body> </html> ';