This commit is contained in:
Michael Zhang 2020-11-03 17:53:38 -06:00
commit 057ebf6374
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
5 changed files with 50 additions and 0 deletions

3
config.toml Normal file
View file

@ -0,0 +1,3 @@
baseURL = "http://example.org/"
languageCode = "en-us"
title = "My New Hugo Site"

View file

@ -0,0 +1,9 @@
+++
title = "ThreeBallot voting system by Ron Rivest"
document = "/Rivest-TheThreeBallotVotingSystem.pdf"
+++
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.

View file

@ -0,0 +1,3 @@
+++
title = "Type Driven Development with Idris"
+++

35
layouts/home.html Normal file
View file

@ -0,0 +1,35 @@
<head>
<title>reading list</title>
<style>
body { font-family: Arial, Helvetica, sans-serif; }
h3 { margin: 0; }
h3 a { color: black; }
h3 .date { color: gray; }
</style>
</head>
<h1>reading list</h1>
<ul>
{{- range (.Pages.ByParam "Lastmod") -}}
<li>
<h3 class="title">
{{- if .Params.document -}}
<a target="_blank" rel="nofollow noopener" href="{{ .Params.document }}">{{ .Title }}</a>
{{- else -}}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{- end -}}
<small class="date">
<span title="{{ .Lastmod }}">{{ .Lastmod.Format "Mon Jun 02, 2006" }}</span>
</small>
</h3>
<p>{{ .Summary }}</p>
{{- if .Params.link -}}
{{- else -}}
{{- end -}}
</li>
{{- end -}}
</ul>

Binary file not shown.