Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

148
Views
Render template from flask to a normal running html file

Is it possible to render a template from flask and include it in normal html file which is not running through flask.

app.py

@app.route('/test1',  methods=['POST','GET'])
def test1():
print("intest")
url_quicksight = get_url().geturl()
return render_template('test.html',url_quicksight=url_quicksight)

test.html

<!DOCTYPE html>
<html>

<body>
    <p>heyyy {{url_quicksight}}</p>
    <iframe src={{url_quicksight}} frameborder="0" class="test"></iframe>
</body>
</html>

index.html

<!DOCTYPE html>
<html>
<script>
function includeHTML() {
var z, i, elmnt, file, xhttp;
/*loop through a collection of all HTML elements:*/
z = document.getElementsByTagName("*");
for (i = 0; i < z.length; i++) {
    elmnt = z[i];
    /*search for elements with a certain atrribute:*/
    file = elmnt.getAttribute("w3-include-html");
    if (file) {
    /*make an HTTP request using the attribute value as the file name:*/
    xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (this.readyState == 4) {
        if (this.status == 200) {elmnt.innerHTML = this.responseText;}
        if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
        /*remove the attribute, and call this function once more:*/
        elmnt.removeAttribute("w3-include-html");
        includeHTML();
        }
    }      
    xhttp.open("GET", file, true);
    xhttp.send();
    /*exit the function:*/
    return;
    }
}
};
</script>
<body>
<div w3-include-html="test.html"></div> 

<script>
includeHTML();
</script>

</body>
</html>

when I'm running the index.html file using live server to load the file its not able to return the jinja passed value .

Please refer the image

Is there any way to get the passed url value in index.html which is running on live server.

Thanks in advance.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!