20 lines
781 B
HTML
20 lines
781 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<body>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta name="description" content="Web site created using create-react-app" />
|
|
<link rel="apple-touch-icon" href="/logo192.png" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<title>React App</title>
|
|
<script defer="defer" src="{{ url_for('static', filename='js/nationalparks.js') }}"></script>
|
|
<link href="{{ url_for('static', filename='css/nationalparks.css') }}" rel="stylesheet">
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
</body>
|
|
|
|
{% endblock %} |