Quantcast
Channel: 一言多いプログラマーの独り言
Viewing all articles
Browse latest Browse all 846

Python+Flaskで、テンプレート「Jinja」

$
0
0
Python+Flaskで、テンプレート「Jinja」です。PHPで言うところのTwigのように、継承の機能が利用できます。タグもほぼ同じなので、多分、移行もスムーズ?


{% extends "layout.html" %}
{% block body %}
<ul>
{% for user in users %}
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
{% endfor %}
</ul>
{% endblock %}



実際に設定してみたのがこちら

参考サイト
Template Designer Documentation(Jinja2 Documentation)

Viewing all articles
Browse latest Browse all 846

Trending Articles