You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 7, 2019. It is now read-only.
I have a home page that includes a nav.pug NavBar template, and in that nav.pug I got some anchor link to my other pages. But the funny thing is ParcelJS will also render out my anchor tag sources, so it will make my page look super weird
// src/PUG/includes/nav.pug#nav
a.button(href='index.pug') Home
a.button(href='history.pug') History
a.button(href='335.pug') Spitfire
//a.button(href='379.pug') Spitfire //a.button(href='markI.pug') Spitfire Mark I //a.button(href='markV.pug') Spitfire Mark V //a.button(href='markVII.pug') Spitfire Mk VII
// index.pug
doctype html
html(lang='en')
head
meta(charset='UTF-8')
meta(name='viewport', content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0')
meta(http-equiv='X-UA-Compatible', content='ie=edge')
title Spitfire | Home Page
link(rel='stylesheet', href='css/index.css')
body
include./PUG/includes/header.pug#app.container.context
| some content
include./PUG/includes/nav.pug