mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-12 03:15:12 +00:00
27 lines
777 B
Plaintext
27 lines
777 B
Plaintext
doctype html
|
|
html
|
|
head
|
|
block head
|
|
meta(charset='UTF-8')
|
|
meta(name='viewport' content='width=device-width, initial-scale=1.0')
|
|
link(rel='stylesheet' href='/css/style.css')
|
|
link(rel='shortcut icon' type='image/png' href='/img/favicon.png')
|
|
link(rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lato:300,300i,700')
|
|
title Natours | #{title}
|
|
|
|
body
|
|
// HEADER
|
|
include _header
|
|
|
|
// CONTENT
|
|
block content
|
|
h1 This is a placeholder heading
|
|
|
|
// FOOTER
|
|
include _footer
|
|
|
|
//- script(src='https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js')
|
|
//- script(src='/js/mapbox.js')
|
|
//- script(src='/js/login.js')
|
|
script(src='https://js.stripe.com/v3/')
|
|
script(src='/js/bundle.js') |