diff --git a/layouts/partials/boxes-section-summaries.html b/layouts/partials/boxes-section-summaries.html
new file mode 100644
index 000000000..7568539e4
--- /dev/null
+++ b/layouts/partials/boxes-section-summaries.html
@@ -0,0 +1,39 @@
+
+
+
+ {{ if eq .context.Section "news" }}
+
+ {{ .context.Date.Format "January 2, 2006" }}
+
+ {{ end }}
+
+
+
+
+ {{ if eq .context.Section "commands" }}
+ {{ replaceRE `(?s).*?##\s.*?\n\n(.*?)\n.*` "$1" .context.RawContent }}
+ {{ else }}
+ {{ if .context.Params.description }}
+ {{ .context.Params.description | markdownify }}
+ {{ else }}
+ {{ .context.Summary }}
+ {{ end }}
+ {{ end }}
+
+
+ Read More »
+
+
+
+
+
+
+