Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Define alternative content until the published date

Started by maxime 6 years ago · 0 replies · 659 views
6 years ago

Hello

I need a page to change it's content at a certain date.
I am thinking to use the publish_date for that, but if the publish date is not reached yet, the page will simply not show. I would like to continue show the present content instead.
How can this be achieved?

EDIT: One solution I found:

TWIG
{% block content %}
    {% if "now"|date('U') < page.header.change_date|date('U') %}
        {% set page = page.find(page.route() ~ '/prev') %}
    {% endif %}
    {% if page is not null %}
            <p>some content...</p>
    {% endif %}
{% endblock %}

And then define the alternative content in a "prev" subfolder.

Note: I can't use the publish_date attribute as the page won't exist in the current context for grav, so instead I use a custom 'change_date' attribute.

Still interested to know if there is a better solution.

Thanks

last edited 10/11/20 by maxime

Suggested topics

Topic Participants Replies Views Activity
General · by jeremycherfas, 1 week ago
4 181 2 days ago
General · by lynbor, 6 days ago
2 124 3 days ago
General · by Old Man Umby, 1 week ago
1 100 1 week ago
General · by Sebastian, 2 weeks ago
1 124 1 week ago
General · by Andy Miller, 3 weeks ago
0 248 3 weeks ago