diff --git a/content/art-of-prolog/art-of-prolog.pdf b/content/art-of-prolog/art-of-prolog.pdf new file mode 100644 index 0000000..0b3897a Binary files /dev/null and b/content/art-of-prolog/art-of-prolog.pdf differ diff --git a/content/art-of-prolog/index.md b/content/art-of-prolog/index.md new file mode 100644 index 0000000..5ea98f4 --- /dev/null +++ b/content/art-of-prolog/index.md @@ -0,0 +1,5 @@ ++++ +title = "The Art of Prolog by Leon S. Sterling, Ehud Y. Shapiro" +tags = ["book"] ++++ + diff --git a/content/rivest-three-ballot/index.md b/content/rivest-three-ballot/index.md index 914c55d..1a32f24 100644 --- a/content/rivest-three-ballot/index.md +++ b/content/rivest-three-ballot/index.md @@ -1,9 +1,13 @@ +++ title = "ThreeBallot voting system by Ron Rivest" -document = "Rivest-TheThreeBallotVotingSystem.pdf" +tags = ["paper"] +++ A paper proposing an interesting paper-voting system that has several strong privacy guarantees by requiring voters to vote using 3 ballots instead of 1, and distributing the information (which candidate they're voting for) across all 3. + + + + diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..5c3ed48 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,13 @@ + + + + reading list + + + + +

reading list

+ + {{ block "content" . }}{{ end }} + + diff --git a/layouts/home.html b/layouts/home.html index 36d6bed..dbb9935 100644 --- a/layouts/home.html +++ b/layouts/home.html @@ -1,14 +1,10 @@ - - reading list - - +{{- define "content" -}} -

reading list

+ + +{{- end -}} diff --git a/layouts/page/single.html b/layouts/page/single.html index e6323fc..0260cad 100644 --- a/layouts/page/single.html +++ b/layouts/page/single.html @@ -1,9 +1,13 @@ -

{{ .Title }}

+{{- define "content" -}} -{{ .Content }} +

{{ .Title }}

+ +{{ .Content }} + +{{- end -}} diff --git a/static/main.css b/static/main.css new file mode 100644 index 0000000..8469ce7 --- /dev/null +++ b/static/main.css @@ -0,0 +1,3 @@ +body { font-family: Arial, Helvetica, sans-serif; } +h1 a { color: black; text-decoration: none; } +h3 a { color: black; }