github.com/servernoj/jade@v0.0.0-20231225191405-efec98d19db1/testdata/v1/text.tpl (about)

     1  An example of an
     2  <a href="#">inline</a>
     3  link.
     4  <form>
     5      <label>Username:
     6          <input type="text" name="user[name]"/>
     7          <p>Just an example of some text usage.You can have <em>inline</em> html,as well as <strong>tags</strong>.Interpolation is also supported. The username is currently "{{ name }}".
     8          </p>
     9      </label>
    10      <label>Email:
    11          <input type="text" name="user[email]"/>
    12          <p>Email is currently <em>{{ email }}</em>.
    13          </p>
    14      </label>
    15      <!-- alternatively, if we plan on having only -->
    16      <!-- text or inline-html, we can use a trailing -->
    17      <!-- "." to let pug know we want to omit pipes
    18     -->
    19      <label>Username:
    20          <input type="text"/>
    21          <p>
    22              Just an example, like before
    23              however now we can omit those
    24              annoying pipes!.
    25              
    26              Wahoo.
    27          </p>
    28      </label>
    29  </form>