initial
This commit is contained in:
commit
057ebf6374
5 changed files with 50 additions and 0 deletions
3
config.toml
Normal file
3
config.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
baseURL = "http://example.org/"
|
||||
languageCode = "en-us"
|
||||
title = "My New Hugo Site"
|
9
content/rivest-three-ballot.md
Normal file
9
content/rivest-three-ballot.md
Normal 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.
|
3
content/type-driven-development.md
Normal file
3
content/type-driven-development.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
+++
|
||||
title = "Type Driven Development with Idris"
|
||||
+++
|
35
layouts/home.html
Normal file
35
layouts/home.html
Normal 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>
|
BIN
static/Rivest-TheThreeBallotVotingSystem.pdf
Normal file
BIN
static/Rivest-TheThreeBallotVotingSystem.pdf
Normal file
Binary file not shown.
Loading…
Reference in a new issue