Explorar el Código

TODO: choose my side (of the Atlantic ocean)

master
David Larlet hace 4 años
padre
commit
430bc0753d
No se encontró ninguna clave conocida en la base de datos para esta firma
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3
    2
      site.py

+ 3
- 2
site.py Ver fichero

@@ -4,7 +4,7 @@ import fnmatch
import locale
import os
from dataclasses import dataclass
from datetime import date, datetime
from datetime import date, datetime, timedelta
from html import escape
from pathlib import Path
from time import perf_counter
@@ -25,6 +25,7 @@ DOMAIN = "https://larlet.fr"
LOCAL_DOMAIN = "http://larlet.test:3579"
# Hardcoding publication at 12 in Paris timezone.
NORMALIZED_STRFTIME = "%Y-%m-%dT12:00:00+01:00"
TODAY = date.today() - timedelta(hours=6)


class CustomHTMLRenderer(mistune.HTMLRenderer):
@@ -116,7 +117,7 @@ class Page:

@property
def is_draft(self):
return self.date > date.today()
return self.date > TODAY


@cli

Cargando…
Cancelar
Guardar