Ver código fonte

Pass note list for rendering the blog index page

master
David Larlet 4 anos atrás
pai
commit
13aa32a402
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
2 arquivos alterados com 1 adições e 3 exclusões
  1. 0
    1
      david/blog/index.html
  2. 1
    2
      site.py

+ 0
- 1
david/blog/index.html Ver arquivo

@@ -1180,7 +1180,6 @@ footer {
</ul>
</article>
</article>
</section>



+ 1
- 2
site.py Ver arquivo

@@ -15,7 +15,6 @@ 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.
@@ -230,7 +229,7 @@ def blog():
page_article
)

page_archive = template_archives.render(posts=published)
page_archive = template_archives.render(posts=published, note_list=note_list)
open(post_base / "index.html", "w").write(page_archive)
print(f"Done: http://larlet.test:8001/{post_base}/")


Carregando…
Cancelar
Salvar