Örnek Pug dosyası
!!! 5
-load i18n
html(lang="{{ request.LANGUAGE_CODE }}")
head
meta(charset='utf-8')
meta(name='viewport', content='width=device-width, initial-scale=1')
meta(http-equiv='X-UA-Compatible', content='IE=edge')
|
|
meta(name='description', content='Some description')
title= "PyPugJS Test"
|
|
link(rel='stylesheet', href='/static/site.css')
script(src='https://code.jquery.com/jquery-3.4.1.min.js')
|
|
script.
var PugJS_status = {{PugJS|yesno:"true,false" }};
if (PugJS_status) {
console.log("yes or no");
}
body
h1.title PugJS
#container
if PugJS
p Türkçe: {% trans 'Turkish' %}
else
p {% trans 'You have to try PugJS' %}
h2 PugJS: {{ PugJS }}