diff --git a/.gitignore b/.gitignore index 54851a9c..0c3e5abb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ _site/ .sass-cache/ -out/ diff --git a/_config.yml b/_config.yml index c17b40fd..e42417b5 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,5 @@ title: Agda Software Foundations +author: Pepijn Kokke email: pepijn.kokke@gmail.com description: > Write an awesome description for your new site here. You can edit this @@ -7,6 +8,8 @@ description: > baseurl: "/sf" url: "https://pepijnkokke.github.io" github_username: pepijnkokke +disqus: + shortname: pepijnkokke # Build settings markdown: kramdown diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 00000000..bd35490d --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,24 @@ + diff --git a/index.md b/index.md index 1eb5d672..13e9d65a 100644 --- a/index.md +++ b/index.md @@ -1,6 +1,9 @@ --- -# You don't need to edit this file, it's empty on purpose. -# Edit theme's home layout instead if you wanna make some changes -# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults -layout: home +title : Table of Contents +layout : page --- + + - [Basics: Functional Programming in Agda]({{ "/Basics" | relative_url }}) + - [Maps: Total and Partial Maps]({{ "/Maps" | relative_url }}) + - [Stlc: The Simply Typed Lambda-Calculus]({{ "/Stlc" | relative_url }}) + - [StlcProp: Properties of STLC]({{ "/StlcProp" | relative_url }}) diff --git a/src/Stlc.lagda b/src/Stlc.lagda index 29e4c6e3..fbb64e8f 100644 --- a/src/Stlc.lagda +++ b/src/Stlc.lagda @@ -19,7 +19,7 @@ open import Relation.Nullary using (Dec; yes; no) open import Relation.Binary.PropositionalEquality using (_≡_; _≢_; refl) \end{code} -# The Simply Typed Lambda-Calculus +# Stlc: The Simply Typed Lambda-Calculus The simply typed lambda-calculus (STLC) is a tiny core calculus embodying the key concept of _functional abstraction_,