Skip to content

Commit

Permalink
deploy: 7191b0b
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjoosten committed Feb 11, 2024
1 parent c8ed17a commit a36ec7b
Show file tree
Hide file tree
Showing 6 changed files with 592 additions and 763 deletions.
1,002 changes: 478 additions & 524 deletions index.html

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions slides/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ slidesEnglish.tmp: slidesEnglish.md
pandoc --self-contained -t slidy -o $@ $<
slidesEnglish.html: slidesEnglish.tmp pre.html post.html
cat pre.html slidesEnglish.tmp post.html > $@
slidesDutch.tmp: slidesDutch.md
pandoc --self-contained -t slidy -o $@ $<
slidesDutch.html: slidesDutch.tmp pre.html post.html
cat pre.html slidesDutch.tmp post.html > $@
../index.html: slidesDutch.html slidesEnglish.html
# slidesDutch.tmp: slidesDutch.md
# pandoc --self-contained -t slidy -o $@ $<
# slidesDutch.html: slidesDutch.tmp pre.html post.html
# cat pre.html slidesDutch.tmp post.html > $@
../index.html: slidesEnglish.html
cp slidesEnglish.html ../index.html

clean:
rm slide*.html *.tmp

File renamed without changes.
42 changes: 16 additions & 26 deletions slides/pre.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,25 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
<meta name="author" content="Han Joosten" />
<meta name="date" content="July 2017" />
<title>Functioneel Programmeren met Haskell</title>
<meta name="date" content=currentDate />
<meta name="repo" content="[http://hanjoosten.github.io/HaskellWorkshop](http://hanjoosten.github.io/HaskellWorkshop)" />
<title>Functional Programming with Haskell</title>
<link rel="stylesheet" type="text/css" media="screen, projection, print"
href="http://www.w3.org/Talks/Tools/Slidy2/styles/slidy.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- <link rel="stylesheet" type="text/css" media="screen, projection, print" -->
<!-- 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 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>
</head>
<body>
<div class="slide titlepage">
<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></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>
Loading

0 comments on commit a36ec7b

Please sign in to comment.