Created
December 28, 2014 12:22
-
-
Save bcdejp/c9b71b9b35708760d646 to your computer and use it in GitHub Desktop.
jinja2のサンプル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>{{title}}</title> | |
</head> | |
<body> | |
{% for sample in sample_list %} | |
<h1>{{ sample.title }}</h1> | |
<p> | |
{{ sample.body|safe }} | |
</p> | |
{% endfor %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment