Stupid question on static responsive multi-page site

Hi all,

I’m trying to create a static site with 3 pages (no server side components - I’m deploying to Netlify).

Page 1: /index.html - standard landing page with subscription form
Page 2: /please-confirm/index.html - page saying “please click the link in your confirmation email”.
Page 3: /thanks-for-confirming/index.html - page saying (guess what) “thanks for confirming”.

However, when I create those pages, Page 1 is different to pages 2 and 3.

Page 1 starts with :

<head>
    <script src="dmxAppConnect/dmxAppConnect.js"></script>
    <meta charset="UTF-8">
    <title>Untitled Document</title>
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <link rel="stylesheet" href="bootstrap/4/css/bootstrap.min.css" />
    <link rel="stylesheet" href="css/style.css" />
</head>
<body is="dmx-app" id="index">

The other two start with:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<!-- New Wappler Page -->
</head>
<body>

As you can see, it’s missing all the wappler-specific stuff.

Any idea why this happens/how to fix it, other than manually re-inserting all the header stuff?

Regards,
Andy

Community Page
Last updated: