flask route based on the method code example

Example 1: flask conditional according to urrl

from flask import Flask
from flask import request
from flask import render_template

app = Flask(__name__)

@app.route('/')
def show_index():
    return render_template('funding.html')

@app.route('/funding')
def show_funding():
    return render_template('funding.html')

if __name__ == '__main__':
    app.run(debug = True)

Example 2: flask conditional according to urrl

<!DOCTYPE html>
<html>
<head>
    <title>Template</title>
</head>
<body>
    <h3>You are here: {{ request.path }}</h3>
    {% if request.path == url_for('show_funding') %}
        <script src="{{ url_for ('static', filename='js/funding.js')}}"></script>
    {% endif %}
</body>
</html>