In my post.hbs I need to be able to check if the current page has a publish date in the future i.e. the post has been scheduled.
Today I have:
{{#if published_at }}
<section class="post-full-comments">
<div id='discourse-comments'></div>
<script type="text/javascript">
...
</script>
</section>
{{/if}}
But when you schedule a post it seems to get a published_at that is in the future.
In psudeo code I would like to do something like
{{#if published_at > Date.now() }}
...
{{/if}}
Ghost version: 2.38.3
Thanks in advance if you would take some time and help a noob like me.