Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanno committed Dec 1, 2023
1 parent c4aa721 commit 8c8d919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
demo.html
jukselapp.md
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ <h1 class="w3-jumbo w3-animate-top">Advent of GIS 2023</h1>
<script>
(function() {
let y = new Date().getFullYear();
let m = new Date().getMonth();
let m = new Date().getMonth()+1;
let d = new Date().getDate();
let ds = String(d).padStart(2, '0');
var txt = "Første luke åpnes 1. desember";
if(m != 12) {
if(m != 12 || d > 24) {
return;
}
let link = '<a href="https://github.com/Norkart/AdventOfGIS/tree/'+y+'/'+ds+'">'
Expand Down

0 comments on commit 8c8d919

Please sign in to comment.