diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/public/views.py b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/public/views.py index 3b09cd1..c2cf9ef 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/public/views.py +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/public/views.py @@ -56,7 +56,7 @@ def register(): @blueprint.route("/about/") def about(): form = LoginForm(request.form) - return render_template("about.html", form=form) + return render_template("public/about.html", form=form) @blueprint.errorhandler(404) def page_not_found(e): diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/public/home.html b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/public/home.html index 1859038..c140381 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/public/home.html +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/public/home.html @@ -6,7 +6,7 @@ {% endraw %}

Welcome to {{ cookiecutter.project_name }}

{% raw %} -

This is a starter Flask template. It includes the Twitter Bootstrap 3, jQuery 2, Flask-SQLAlchemy, WTForms, and various testing utilities out of the box.

+

This is a starter Flask template. It includes Twitter Bootstrap 3, jQuery 2, Flask-SQLAlchemy, WTForms, and various testing utilities out of the box.

Learn more »