-
-### Code Blocks
-
-Pre-formatted code blocks are used for writing about programming or
-markup source code. Rather than forming normal paragraphs, the lines
-of a code block are interpreted literally. Markdown wraps a code block
-in both `` and `` tags.
-
-To produce a code block in Markdown, simply indent every line of the
-block by at least 4 spaces or 1 tab.
-
-This is a normal paragraph:
-
- This is a code block.
-
-Here is an example of AppleScript:
-
- tell application "Foo"
- beep
- end tell
-
-A code block continues until it reaches a line that is not indented
-(or the end of the article).
-
-Within a code block, ampersands (`&`) and angle brackets (`<` and `>`)
-are automatically converted into HTML entities. This makes it very
-easy to include example HTML source code using Markdown -- just paste
-it and indent it, and Markdown will handle the hassle of encoding the
-ampersands and angle brackets. For example, this:
-
- {{ .Title | markdownify }}
{{ .Content }}
+ {{ with .Params.ext_link }}
+
+ See post here
+
+ {{ end }}
Share
- Twitter
- Facebook
- LinkedIn
- Email
diff --git a/static/images/newsletter_2021-09-banner.png b/static/images/newsletter_2021-09-banner.png
new file mode 100644
index 0000000..b717c25
Binary files /dev/null and b/static/images/newsletter_2021-09-banner.png differ
diff --git a/static/images/newsletter_2022-02_banner.png b/static/images/newsletter_2022-02_banner.png
new file mode 100644
index 0000000..1ec0f3c
Binary files /dev/null and b/static/images/newsletter_2022-02_banner.png differ
-
-Regular Markdown syntax is not processed within code blocks. E.g.,
-asterisks are just literal asterisks within a code block. This means
-it's also easy to use Markdown to write about Markdown's own syntax.
-
-```
-tell application "Foo"
- beep
-end tell
-```
-
-## Span Elements
-
-### Links
-
-Markdown supports two style of links: *inline* and *reference*.
-
-In both styles, the link text is delimited by [square brackets].
-
-To create an inline link, use a set of regular parentheses immediately
-after the link text's closing square bracket. Inside the parentheses,
-put the URL where you want the link to point, along with an *optional*
-title for the link, surrounded in quotes. For example:
-
-This is [an example](http://example.com/) inline link.
-
-[This link](http://example.net/) has no title attribute.
-
-### Emphasis
-
-Markdown treats asterisks (`*`) and underscores (`_`) as indicators of
-emphasis. Text wrapped with one `*` or `_` will be wrapped with an
-HTML `` tag; double `*`'s or `_`'s will be wrapped with an HTML
-`` tag. E.g., this input:
-
-*single asterisks*
-
-_single underscores_
-
-**double asterisks**
-
-__double underscores__
-
-### Code
-
-To indicate a span of code, wrap it with backtick quotes (`` ` ``).
-Unlike a pre-formatted code block, a code span indicates code within a
-normal paragraph. For example:
-
-Use the `printf()` function.
diff --git a/content/news/summer-2020.md b/content/news/summer-2020.md
deleted file mode 100644
index 76c5cf7..0000000
--- a/content/news/summer-2020.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "NWB Newsletter - Summer 2020"
-weight: 5
-date: "2020-09-16"
-subtitle: "The Neurodata Without Borders Summer 2020 Newsletter is now available!"
-image: "/images/summer-2020.png"
-author_details:
- name: "Oliver Ruebel"
- image: "/images/placeholder.png"
- bio: "Author's bio goes here"
-tags: announcement, newbletter
----
\ No newline at end of file
diff --git a/content/news/summer-2021.md b/content/news/summer-2021.md
deleted file mode 100644
index 12394fe..0000000
--- a/content/news/summer-2021.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "NWB Newsletter - Summer 2021"
-weight: 3
-date: "2021-08-20"
-subtitle: "The Neurodata Without Borders Summer 2021 Newsletter is now available!"
-image: "/images/summer-2021.png"
-author_details:
- name: "Oliver Ruebel"
- image: "/images/placeholder.png"
- bio: "Author's bio goes here"
-tags: announcement, newbletter
----
\ No newline at end of file
diff --git a/content/news/winter-2019.md b/content/news/winter-2019.md
deleted file mode 100644
index a652697..0000000
--- a/content/news/winter-2019.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "NWB Newsletter - Winter 2019"
-weight: 6
-date: "2020-09-16"
-subtitle: "The Neurodata Without Borders: Neurophysiology Winter Newsletter 2019 is now available!"
-image: "/images/nwb-newsletter.png"
-author_details:
- name: "Oliver Ruebel"
- image: "/images/placeholder.png"
- bio: "Author's bio goes here"
-tags: announcement, newbletter
----
\ No newline at end of file
diff --git a/content/news/winter-2021.md b/content/news/winter-2021.md
deleted file mode 100644
index cbe2cd4..0000000
--- a/content/news/winter-2021.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "NWB Newsletter - Winter 2021"
-weight: 4
-date: "2021-04-02"
-subtitle: "The Neurodata Without Borders Winter 2021 Newsletter is now available!"
-image: "/images/winter-2021.png"
-author_details:
- name: "Oliver Ruebel"
- image: "/images/placeholder.png"
- bio: "Author's bio goes here"
-tags: announcement, newbletter
----
\ No newline at end of file
diff --git a/layouts/news/single.html b/layouts/news/single.html
index e876917..455e2b4 100644
--- a/layouts/news/single.html
+++ b/layouts/news/single.html
@@ -60,31 +60,36 @@