Go 模板引擎:pongo2
jopen
10年前
pongo 2 是一个语法与 Django 模板类似的 Go 语言模板引擎,并且完全兼容 Django 模板。pongo 2提供了复杂和嵌套函数调用和强大的类C表达式。
{% 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) }}