I went through my error log one more time, after double-checking everything and re-loading the app, and here's what I get:
**
Traceback (most recent call last):
File "/home/pv/.local/lib/python3.5/site-packages/flask/app.py", line 1988, in wsgi_app
response = self.full_dispatch_request()
File "/home/pv/.local/lib/python3.5/site-packages/flask/app.py", line 1641, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pv/.local/lib/python3.5/site-packages/flask/app.py", line 1544, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pv/.local/lib/python3.5/site-packages/flask/_compat.py", line 33, in reraise
raise value
File "/home/pv/.local/lib/python3.5/site-packages/flask/app.py", line 1639, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pv/.local/lib/python3.5/site-packages/flask/app.py", line 1625, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pv/phil_web/flask_app.py", line 25, in user
return render_template('user.html', name = name)
File "/home/pv/.local/lib/python3.5/site-packages/flask/templating.py", line 134, in render_template
context, ctx.app)
File "/home/pv/.local/lib/python3.5/site-packages/flask/templating.py", line 116, in _render
rv = template.render(context)
File "/usr/local/lib/python3.5/dist-packages/jinja2/environment.py", line 989, in render
return self.environment.handle_exception(exc_info, True)
File "/usr/local/lib/python3.5/dist-packages/jinja2/environment.py", line 754, in handle_exception
reraise(exc_type, exc_value, tb)
File "/usr/local/lib/python3.5/dist-packages/jinja2/_compat.py", line 37, in reraise
raise value.with_traceback(tb)
File "/home/pv/phil_web/templates/user.html", line 1, in top-level template code
{% extends "base.html" %}
File "/home/pv/phil_web/templates/base.html", line 1, in top-level template code
{% extends "bootstrap/base.html" %}
File "/home/pv/phil_web/templates/bootstrap/base.html", line 1, in top-level template code
{% block doc -%}
File "/home/pv/phil_web/templates/bootstrap/base.html", line 4, in block "doc"
{%- block html %}
File "/home/pv/phil_web/templates/bootstrap/base.html", line 6, in block "html"
{%- block head %}
File "/home/pv/phil_web/templates/bootstrap/base.html", line 13, in block "head"
{%- block styles %}
File "/home/pv/phil_web/templates/bootstrap/base.html", line 15, in block "styles"
<link href="{{bootstrap_find_resource('css/bootstrap.css', cdn='bootstrap')}}" rel="stylesheet">
jinja2.exceptions.UndefinedError: 'bootstrap_find_resource' is undefined
**