diff options
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/layouts/index.html | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/users/fcuny/notes/layouts/index.html b/users/fcuny/notes/layouts/index.html index 2ab8c40..a340d3d 100644 --- a/users/fcuny/notes/layouts/index.html +++ b/users/fcuny/notes/layouts/index.html @@ -4,15 +4,16 @@ <h1>{{ .Site.Home.Title }}</h1> -<p>I'm an engineer currently on a break. Previously I was a Site Reliability Engineer working on Twitter's compute platform.</p> +<p>This is my collection of notes.</p> -<h2>Contact</h2> -<ul> - <li>Email: <a href="mailto:franck@fcuny.net">franck@fcuny.net</a></li> - <li>Git: <a href="https://git.fcuny.net/fcuny">@fcuny</a></li> - <li>Twitter: <a href="https://twitter.com/franckcuny">@franckcuny</a></li> - <li>Keys: <a href="/ssh.pub.sig">SSH public keys</a></li> -</ul> + <h2>Notes</h2> + <ul> + {{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }} + {{ range $pages }} + {{- $fmt := "2006-01-02" }} + <li class="post-permalink"><span class="post-date" >{{ .Date.Format $fmt | safeHTML }}</span>, <a href="{{ .Permalink }}">{{ .Title }}</a></li> + {{ end }} + </ul> </article> |