Skip to content

Commit

Permalink
remove generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjoosten committed Dec 26, 2023
1 parent e543122 commit 31a5385
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1,738 deletions.
1,726 changes: 0 additions & 1,726 deletions index.html

This file was deleted.

27 changes: 15 additions & 12 deletions slides/pre.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,6 @@
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="http://www.w3.org/Talks/Tools/Slidy2/scripts/slidy.js.gz"
charset="utf-8" type="text/javascript"></script>
<script>
// Get the current date
var currentDate = new Date();

// Format the date as a string
var dateString = currentDate.toDateString();

// Display the date in the HTML page
document.getElementById('currentDate').innerText = dateString;
</script>

</head>
<body>
Expand All @@ -31,7 +21,20 @@ <h1 class="title">Functioneel Programmeren met Haskell</h1>
<p class="author">Han Joosten</p>
<p class="github">Github: hanjoosten</p>
<p class="email">han.joosten@ordina.nl</p>
<p class="date">id="currentDate"</p>
<p class="date" id="currentDate"></p>
<p></p>
<p class="github">Slides: <a href="http://hanjoosten.github.io/HaskellWorkshop">http://hanjoosten.github.io/HaskellWorkshop</a></p>
<p class="github"> <a href="http://hanjoosten.github.io/HaskellWorkshop">http://hanjoosten.github.io/HaskellWorkshop</a></p>
</div>


<script>
// Get the current date
var currentDate = new Date();

// Format the date as a string in Dutch
var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
var dateString = currentDate.toLocaleDateString('nl-NL', options);

// Display the date in the HTML page
document.getElementById('currentDate').innerText = dateString;
</script>

0 comments on commit 31a5385

Please sign in to comment.