replaced <link> and <script> tags with template
This commit is contained in:
parent
02879630c6
commit
869f075317
3 changed files with 3 additions and 9 deletions
|
@ -2,9 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Curious Greg - Home</title>
|
||||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
{% include 'imports.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<h1>Welcome</h1>
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Curious Greg</title>
|
||||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
{% include 'imports.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<h1>Curious Greg</h1>
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Curious Greg - Login</title>
|
||||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
{% include 'imports.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<h1>Log in</h1>
|
||||
|
|
Loading…
Reference in a new issue