تذكرت هذا الطلب مرة أخرى، وتبيّن أنه من السهل نسبيًا تنفيذه حاليًا دون الحاجة إلى إضافة، وذلك باستخدام مكونات السمات.
الكود الخاص بوضع إعلان أعلى المواضيع، وبعد كل ثلاث منشورات:
<script type="text/x-handlebars" data-template-name="/connectors/topic-above-post-stream/my-house-ads">
<div style="margin-bottom:10px;">
<a href="http://www.discourse.org/buy">
استضافة Discourse لك!
</a>
</div>
</script>
<script type="text/discourse-plugin" version="0.8.23">
api.decorateWidget('post:after', helper => {
let post = helper.getModel();
if (post.get('post_number') % 3 === 0) { // بعد كل ثلاث منشورات
return helper.rawHtml(`
<div style="margin-bottom:10px">
<a href="http://www.discourse.org/buy">
استضافة Discourse لك!
</a>
</div>
`);
}
});
</script>

