Skip to content
Grav 2.0 is officially stable. Read the announcement →
General

Define alternative content until the published date

Started by maxime 6 years ago · 0 replies · 626 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 jean-louis67, 3 weeks ago
2 308 3 weeks ago
General · by Andy Miller, 3 weeks ago
0 310 3 weeks ago
General · by Veehem, 4 weeks ago
0 263 4 weeks ago
General · by milkboy, 4 weeks ago
0 264 4 weeks ago
General · by ian russell, 1 month ago
2 335 1 month ago