From e59ebf02c400b2a4675719ecab0863aecf0649df Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sun, 8 Dec 2013 03:45:21 -0600 Subject: [PATCH] Fix about view --- .../{{cookiecutter.repo_name}}/public/views.py | 2 +- .../{{cookiecutter.repo_name}}/templates/public/home.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 »