mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-19 06:05:22 +00:00
Initial commit 🚀
This commit is contained in:
26
4-natours/after-section-12/views/base.pug
Normal file
26
4-natours/after-section-12/views/base.pug
Normal file
@@ -0,0 +1,26 @@
|
||||
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='/js/bundle.js')
|
||||
Reference in New Issue
Block a user