From d64c666255665c5e03812c47e70d6edb46432510 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Tue, 21 May 2019 21:47:09 -0400 Subject: add talks support (#40) * add talks support * gosimplify --- templates/base.html | 2 +- templates/talkindex.html | 20 +++++++++ templates/talkpost.html | 103 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 templates/talkindex.html create mode 100644 templates/talkpost.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 1cbaff3..3fdc591 100644 --- a/templates/base.html +++ b/templates/base.html @@ -59,7 +59,7 @@ {{ template "scripts" . }}
-

Christine Dodrill - Blog - Contact - Resume | GraphViz - When Then Zen

+

Christine Dodrill - Blog - Contact - Resume - Talks | GraphViz - When Then Zen

diff --git a/templates/talkindex.html b/templates/talkindex.html new file mode 100644 index 0000000..9fad850 --- /dev/null +++ b/templates/talkindex.html @@ -0,0 +1,20 @@ +{{ define "title" }} +Blog - Christine Dodrill +{{ end }} + +{{ define "content" }} +

Talks

+ +

Here is a link to all of the talks I have done at conferences. Each of these will have links to the slides (PDF) as well as some brief information about them.

+ +

If you have a compatible reader, be sure to check out my RSS Feed for automatic updates. Also check out the JSONFeed.

+ +

+

    + {{ range . }} +
  • {{ .DateString }} - {{ .Title }}
  • + {{ end }} +
+

+ +{{ end }} diff --git a/templates/talkpost.html b/templates/talkpost.html new file mode 100644 index 0000000..94ddc0f --- /dev/null +++ b/templates/talkpost.html @@ -0,0 +1,103 @@ +{{ define "title" }} +{{ .Title }} - Christine Dodrill + + + + + + + + + + + + + + + + + + + +{{ end }} + +{{ define "content" }} +{{ .BodyHTML }} + +Link to the slides + +
+ + + + + +{{ end }} -- cgit v1.2.3