{{ block "content" . }}{{ end }}
-
+
{{ partial "feedback.html" . }}
{{ partial "git-info.html" . }}
diff --git a/layouts/partials/announcement.html b/layouts/partials/announcement.html
new file mode 100644
index 0000000000..33f6f1c86c
--- /dev/null
+++ b/layouts/partials/announcement.html
@@ -0,0 +1,11 @@
+{{ if .Param "announcement"}}
+
+
+
+
+ {{ .Param "announcement_message" | markdownify }}
+
+
+
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/shortcodes/announcement.html b/layouts/shortcodes/announcement.html
new file mode 100644
index 0000000000..b1b0ef0c2b
--- /dev/null
+++ b/layouts/shortcodes/announcement.html
@@ -0,0 +1,11 @@
+{{ if .Page.Param "announcement" }}
+
+
+
+
+ {{ .Page.Param "announcement_message" | markdownify }}
+
+
+
+
+{{ end }}
\ No newline at end of file
diff --git a/static/css/announcement.css b/static/css/announcement.css
new file mode 100644
index 0000000000..2819cba501
--- /dev/null
+++ b/static/css/announcement.css
@@ -0,0 +1,6 @@
+.announcement {
+ padding: 20px;
+ margin: 20px 0;
+ border-radius: 3px;
+ background-color: #eeeeee;
+}
\ No newline at end of file