diff options
author | Frankie B <floppydisk05@aol.com> | 2022-09-16 23:07:51 +0000 |
---|---|---|
committer | Frankie B <floppydisk05@aol.com> | 2022-09-16 23:07:51 +0000 |
commit | 1d76709b910e260b77e29ed84afc52bb77d10da5 (patch) | |
tree | c8300246cdd534a6bf984fa3bce38b3b0c293cce /index.php | |
parent | 6ffd5d8c5c48c8c436d4dcf4ea5ed340e1a22438 (diff) |
Rename .min.css files to .css
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ <title>~floppydisk</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link rel="stylesheet" id="theme" href="./res/css/dark.min.css" type="text/css" /> + <link rel="stylesheet" id="theme" href="./res/css/dark.css" type="text/css" /> <meta property="og:type" content="website"> <meta property="og:title" content="~floppydisk"> @@ -15,7 +15,7 @@ <!--<script lang="javascript" href="/res/js/themeswap.js"></script>--> <script> function addStyleSheet(name, id) { - var path = '/res/css/' + name + '.min.css'; + var path = '/res/css/' + name + '.css'; var old = document.getElementById(id); if (old && (old.href != path)) { old.href = path; |