<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=windows-1252">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <p>Hi everyone,<br>
      <br>
      I would like to pass several variables to all HTML pages, how can
      I send a variable to all HTML pages, without pass it all the time
      through "<b>render_template</b>"? eg: sending "time" to all HTML
      pages<br>
      <br>
      <i><b>site.html</b></i><b><br>
      </b><b>Last Update: {{ update }}</b><b><br>
      </b><b><br>
      </b><i><b>app.py</b></i><b><br>
      </b><b>  update = '2016-07-14 01:37:56'</b><b><br>
      </b><b>  return render_template('site.html', <u>update=update</u>)</b><br>
      <br>
      But how to pass this value every time to all HTML pages
      automatically? Just:<br>
      <b> return render_template('site.html')</b><br>
      <br>
      And the value 'update' will be there.<br>
      <br>
      Thank you for helping,<br>
      John<br>
    </p>
  </body>
</html>