Changed welcome message on index.html

This commit is contained in:
Eric S. Bullington
2012-11-04 17:13:07 -05:00
parent 8977a36f45
commit 527d617aa0
3 changed files with 7 additions and 6 deletions
+1
View File
@@ -1,2 +1,3 @@
*.pyc *.pyc
logs/*.log logs/*.log
local.cfg
+4 -4
View File
@@ -9,11 +9,11 @@ DEBUG = True
# Simple way to generate a random secret key: # Simple way to generate a random secret key:
# #
# python -c "print repr(__import__('os').urandom(40))" # python -c "print repr(__import__('os').urandom(40))"
SQLALCHEMY_DATABASE_URI = 'postgresql://eric:kfdasferuiawohnjlkasdfjkl@127.0.0.1/app' SQLALCHEMY_DATABASE_URI = 'postgresql://user:password@127.0.0.1/app'
SECRET_KEY = 'kfdasferuiawohnjlkasdfjkl' SECRET_KEY = 'longsecretkeykfdasferuiawohnjlkasdfjkl'
TITLE = 'app' TITLE = 'app'
SUBTITLE = 'A Flask Template with Bootstrap' SUBTITLE = 'A Flask Template with Bootstrap 2.2'
AUTHOR = 'Eric S. Bullington' AUTHOR = 'Eric S. Bullington'
AUTHOR_EMAIL = 'eric.s.bullington@gmail.com' AUTHOR_EMAIL = 'eric.s.bullington@gmail.com'
KEYWORDS = 'python, Flask, template, Bootstrap, authorization' KEYWORDS = 'python, Flask, template, Bootstrap, authorization'
DESCRIPTION = '' DESCRIPTION = 'A Flask template, as opposed to a plug-in, for easy bootstraping of Flask projects involving SQLAlchemy and Bootstrap'
+2 -2
View File
@@ -8,8 +8,8 @@
<!-- Main hero unit for a primary marketing message or call to action --> <!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit"> <div class="hero-unit">
<h1>Welcome to appname!</h1> <h1>Welcome to Flask-Bootstrap!</h1>
<p>This is a template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique.</p> <p>This is Bootstrap's template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique. Note that the "Login" option above should be operational if you have installed all the dependencies specified in requirements.txt and configured your Postgres database in app.cfg.</p>
<p><a class="btn btn-primary btn-large">Learn more &raquo;</a></p> <p><a class="btn btn-primary btn-large">Learn more &raquo;</a></p>
</div> </div>