David Larlet 4 лет назад
Родитель
Сommit
38eb57f869
Не найден GPG ключ соответствующий данной подписи
1 измененных файлов: 10 добавлений и 1 удалений
  1. 10
    1
      site.py

+ 10
- 1
site.py Просмотреть файл

@@ -15,6 +15,7 @@ from time import perf_counter
import markdown
from jinja2 import Environment as Env
from jinja2 import FileSystemLoader

from minicli import cli, run, wrap

# Useful for dates rendering within Jinja2.
@@ -234,9 +235,17 @@ def blog():
print(f"Done: http://larlet.test:8001/{post_base}/")


@cli
def home():
"""Build the home page with last published items."""
template = environment.get_template("profil.html")
content = template.render(note_list=Note.all(source=DAVID / "stream" / "2019"),)
open(DAVID / "index.html", "w").write(content)


@cli
def feed():
"""Generate a feed from last published items in stream."""
"""Generate a feed from last published items."""
template = environment.get_template("feed.xml")
content = template.render(
note_list=Note.all(source=DAVID / "stream" / "2019")[:15],

Загрузка…
Отмена
Сохранить