diff --git a/themes/v2/layouts/index.html b/themes/v2/layouts/index.html
index e0e8308..7e14402 100644
--- a/themes/v2/layouts/index.html
+++ b/themes/v2/layouts/index.html
@@ -1,3 +1,5 @@
{{ define "main" }}
{{ .Content }}
+
+ {{- partial "pinboard.html" . -}}
{{ end }}
diff --git a/themes/v2/layouts/partials/pinboard.html b/themes/v2/layouts/partials/pinboard.html
new file mode 100644
index 0000000..59b921d
--- /dev/null
+++ b/themes/v2/layouts/partials/pinboard.html
@@ -0,0 +1,16 @@
+
+
+
+ {{ with getJSON "https://feeds.pinboard.in/json/u:DCE/" }}
+
+
+
+ {{ range first 5 . }}
+ -
+ {{ .d }} ({{ dateFormat "2006-01-02" .dt}})
+
{{ .n }}
+
+ {{ end }}
+
+ {{ end }}
+