thinknimble/tn-spa-bootstrapper

Some template tags from cookiecutter not rendering

Closed this issue · 1 comments

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />

  <!-- NOTE: You can use the template tag %PUBLIC_URL% here. -->

  <!-- Standard title and description -->
  <title>SAMPLE</title>
  <meta name="description" content="SAMPLE project" />

  <!-- Favorite icons for web browsers and mobile devices -->
  <!-- Generate these using a SQUARE image at favicon-generator.org -->
  <link rel="icon" href="favicon.ico" type="image/x-icon" />
  <link rel="apple-touch-icon" sizes="57x57" href="/static/static/favicons/apple-icon-57x57.png" />
  <link rel="apple-touch-icon" sizes="60x60" href="/static/static/favicons/apple-icon-60x60.png" />
  <link rel="apple-touch-icon" sizes="72x72" href="/static/static/favicons/apple-icon-72x72.png" />
  <link rel="apple-touch-icon" sizes="76x76" href="/static/static/favicons/apple-icon-76x76.png" />
  <link rel="apple-touch-icon" sizes="114x114" href="/static/static/favicons/apple-icon-114x114.png" />
  <link rel="apple-touch-icon" sizes="120x120" href="/static/static/favicons/apple-icon-120x120.png" />
  <link rel="apple-touch-icon" sizes="144x144" href="/static/static/favicons/apple-icon-144x144.png" />
  <link rel="apple-touch-icon" sizes="152x152" href="/static/static/favicons/apple-icon-152x152.png" />
  <link rel="apple-touch-icon" sizes="180x180" href="/static/static/favicons/apple-icon-180x180.png" />
  <link rel="icon" type="image/png" sizes="192x192" href="/static/static/favicons/android-icon-192x192.png" />
  <link rel="icon" type="image/png" sizes="32x32" href="/static/static/favicons/favicon-32x32.png" />
  <link rel="icon" type="image/png" sizes="96x96" href="/static/static/favicons/favicon-96x96.png" />
  <link rel="icon" type="image/png" sizes="16x16" href="/static/static/favicons/favicon-16x16.png" />
  <link rel="manifest" href="/manifest.json" />
  <meta name="msapplication-TileColor" content="#ffffff" />
  <meta name="msapplication-TileImage" content="/ms-icon-144x144.png" />

  <!-- Theme color: Usually the app's brand color -->
  <meta name="theme-color" content="#F2615A" />

  <!-- Facebook Unfurling Meta Tags -->
  <meta property="og:type" content="website" />
  <meta property="og:url" content="%PUBLIC_URL%" />
  <meta property="og:title" content="{{ cookiecutter.project_name }}" />
  <meta property="og:description" content="Add a description for {{ cookiecutter.project_name }} in index.html!" />
  <meta property="og:image" content="%PUBLIC_URL%/static/meta-preview.png" />

  <!-- Twitter Unfurling Meta Tags -->
  <meta name="twitter:card" content="summary_large_image">
  <!-- TODO: Add the app domain here once live. -->
  <!-- <meta name="twitter:domain" value="" /> -->
  <meta name="twitter:title" value="{{ cookiecutter.project_name }}" />
  <meta name="twitter:description" value="Add a description for {{ cookiecutter.project_name }} in index.html!" />
  <meta name="twitter:image" content="%PUBLIC_URL%/static/meta-preview.png" />
  <meta name="twitter:url" value="%PUBLIC_URL%" />

  <!-- Optional: Add a Twitter handle -->
  <!-- <meta name="twitter:site" content="@MyTweets"> -->
  <script type="module" crossorigin src="/static/assets/index.ab0d53c0.js"></script>
  <link rel="stylesheet" href="/static/assets/index.dbdc8057.css">
</head>

<body>
  <noscript>You need to enable JavaScript to run this app.</noscript>
  <div id="root"></div>
  
  <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.
      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.
      To begin the development, run `npm start` or `yarn start`.
      To create a production bundle, use `npm run build` or `yarn build`.
    -->
</body>

</html>

Also quesiton is %PUBLIC_URL% supposed to render to something ?

Stale.