14 lines
316 B
Python
14 lines
316 B
Python
from datetime import datetime
|
|
|
|
from starfall.web.blueprints.base import BaseBlueprint
|
|
|
|
|
|
class ImprintController:
|
|
@classmethod
|
|
def apply(cls, bp: BaseBlueprint):
|
|
bp.data["lastmod"] = cls.last_modified()
|
|
|
|
@classmethod
|
|
def last_modified(cls):
|
|
return datetime.fromisoformat("2025-05-11")
|