pongo 2 是一个 Go 语言的模板引擎,其语法与 Django 模板类似,并且完全兼容 Django 模板。
示例模板:
{% if user.is_moderator && (user.moderation_level > 2 || user.moderation_level <= 0) %} ... {% else %} ... {% endif %} {% if (check_access("admin", userprofile.username) && userprofile.is_verified()) || admin_happyhour %} ... {% endif %} {% if helper_functions.is_server_online("florian-schlachter.de") %}Server is up!{% endif %} {{ make_statuscode_verbose( user.lang, make_http_request(server.url, "/index.php").statuscode) }}