eldest = if 24 > 21 then "Liz" else "Ike"

console.log eldest;

globals = (name for name of window)[0...10]

console.log globals

numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9]

start   = numbers[0..2]

middle  = numbers[3...-2]

end     = numbers[-2..]

copy    = numbers[..]

console.log start
console.log middle
console.log end
console.log copy


ul
    li
      a(href='/') Home
    li
      a(href='/page-1') Page 1
    li
      a(href='/page-2') Page 2


input.search(
    type='text'
    name='search'
    placeholder='Enter a search term...'
)

p.
  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
  tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
  veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
  commodo consequat.

/* Define standard variables and values for website */
$bgcolor: lightblue;
$textcolor: darkblue;
$fontsize: 18px;

/* Use the variables */
body
  background-color: $bgcolor;
  color: $textcolor;
  font-size: $fontsize;


<h1>Hello World</h1>

<p>This is a paragraph.</p>