Curated Newsletter Sections
Define sections in your newsletter to make curated simple.
Overview
<html>
<head>
<script type="application/ld+json" id="sections">
[
{"prettyName": "Section 1", "name":"section1", "max":1,"autoload":"false", "preloadFeed":""},
{"prettyName": "Section 2", "name":"section2", "max":3,"autoload":"false", "preloadFeed":""},
{"prettyName": "Section 3", "name":"section3", "max":4,"autoload":"false", "preloadFeed":""}
]
</script>
</head>
<body>
<h3>Header for Section 1 Post</h3>
<!--## [% for post in feedotter.posts_section1 %] ##-->
<tr>
<h1>[[post.post_title]]</h1>
</tr>
<!--## [% endfor %] ##-->
<h3>Header for Section 2 Posts</h3>
<!--## [% for post in feedotter.posts_section2 %] ##-->
<tr>
<h1>[[post.post_title]]</h1>
</tr>
<!--## [% endfor %] ##-->
<!--## [% if feedotter.posts_section3 is not empty %] ##-->
<h3>Header for Section 3 Posts</h3>
<p>This will be hidden if there are no posts selected for Section 3 in the UI.</p>
<!--## [% for post in feedotter.posts_section3 %] ##-->
<tr>
<h1>[[post.post_title]]</h1>
</tr>
<!--## [% endfor %] ##-->
<!--## [% endif %] ##-->
</body>
</html>Section Properties


Hiding a Section When There is No Content
Autoload and Preload
Last updated
