From e4f8105262945ccf985a8af6d4f11b332a088d5d Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Thu, 1 Sep 2022 11:04:36 -0700 Subject: [PATCH] Add Michael's partials projects for Python section (#1022) Co-authored-by: 1cg <469183+1cg@users.noreply.github.com> --- www/essays/template-fragments.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/essays/template-fragments.md b/www/essays/template-fragments.md index c0e469bd..e9ec29e4 100644 --- a/www/essays/template-fragments.md +++ b/www/essays/template-fragments.md @@ -143,5 +143,7 @@ Here are some known implementations of the fragment concept: * [Latte](https://latte.nette.org/en/template-inheritance#toc-blocks) - Use the 3rd parameter to only render 1 block from the template - `$Latte_Engine->render('path/to/template.latte', [ 'foo' => 'bar' ], 'content');` * Python * [Django Render Block Extension](https://pypi.org/project/django-render-block/) + * [jinja_partials package](https://github.com/mikeckennedy/jinja_partials) ([discussion](https://github.com/mikeckennedy/jinja_partials/issues/1) on motivation) + * [chameleon_partials package](https://github.com/mikeckennedy/chameleon_partials) Please [let me know](/discord) if you know of others, so I can add them to this list.