16 lines
211 B
Plaintext
16 lines
211 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
|