Page MenuHomePhabricator

Explore a recent deaths layout with images
Closed, ResolvedPublic

Description

Current recent deaths layout is based on a Listeria search. It would be interesting to explore an option with an image grid for the last 6. Currently, limiting it to exactly 6 is not possible.

Event Timeline

SELECT ?item ?dod
{
    ?item wdt:P570 ?dod
    FILTER ( ?dod > (now()-"P20D"^^xsd:duration) && ?dod < now() )
    ?item wdt:P31 wd:Q5 .
    ?item ^schema:about ?article .
    ?article schema:isPartOf <https://eu.wikipedia.org/>;
}
ORDER BY DESC(?dod) ?item
LIMIT 6

Seems to get the last 6 deaths for Basque Wikipedia.

This seems done: https://eu.wikipedia.org/wiki/Azala/Grid/Hilberriak

Some tweaks may be needed in the future.