27 lines
457 B
Plaintext
27 lines
457 B
Plaintext
extends layout.pug
|
|
|
|
block scripts
|
|
script(src='/jquery.js')
|
|
script(src='/pets.js')
|
|
|
|
block content
|
|
h1= title
|
|
p Welcome to the pets page!
|
|
ul
|
|
li Cat
|
|
li Dog
|
|
ul
|
|
each val in items
|
|
li= val
|
|
input(data-json=`
|
|
{
|
|
"very-long": "piece of ",
|
|
"data": true
|
|
}
|
|
`)
|
|
form(method="post")
|
|
+input_text("firstName", "First Name", "first name")
|
|
br
|
|
+input_text("lastName", "Last Name", "last name")
|
|
submit sumit
|