Skip to content

Commit 56ac201

Browse files
committed
updated README.md
updated default style updated README.md theme.
1 parent 0deafca commit 56ac201

File tree

4 files changed

+22
-20
lines changed

4 files changed

+22
-20
lines changed

README.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,48 +3,49 @@ blogstrap.py
33

44
Author: [mox1](http://moxone.me)
55

6-
blogstrap.py is a simple, no frills blog system, powered by Bootstrap and web.py
6+
blogstrap.py is a simple, no frills blog content management system, powered by Bootstrap and web.py
77
In its default configruation the full software stack consists of:
88
* Bootstrap3 (http://getbootstrap.com/)
99
* web.py (http://webpy.org/)
1010
* Peewee ORM (https://github.com/coleifer/peewee)
1111
* sqlite (http://www.sqlite.org/)
1212

13-
1413
blogstrap.py has been designed to be simple and "just work", if you experience problems please create an issue on github!
1514

15+
Blogstrap.py includes an awesome default theme written by [HackerThemes](http://www.hackerthemes.com). Any of HackerThemes "Tales" themes
16+
will work by default with blogstrap.py.
17+
1618
Example
1719
==============
18-
[My Blog](http://moxone.me) - Consider this site a real world example / demo of blogstrap.py
19-
20-
While blogstrap.py is open-source, my blog does include a copyrighted bootstrap template, called [Tales](https://wrapbootstrap.com/theme/tales-responsive-blog-theme-WB034M8P5).
21-
Tales is not required, but you will notice the default blogstrap.py is different from the example above. Please don't steal this guys hard work! (I am not affiliated with him)
20+
[mox1's Blog](http://moxone.me) - A live real world example / demo of blogstrap.py
2221

2322
Setup / Initial Config
2423
==============
2524
mkdir my_blog
2625
cd my_blog
2726
git clone https://github.com/mox1/webpy-bootstrap-blog .
28-
pip install -r requirements.txt (or you can do this through apt/rpm etc.)
29-
(Optional) open config.py with your favorite editor and edit a few config settings
27+
pip install -r requirements.txt
28+
vim config.py
3029
python ./app.py
31-
In your favorite browser navigate to localhost:8080/admin/admin
32-
Create A User
33-
Modify the Global Settings
30+
31+
In your favorite browser navigate to localhost:8080/admin/admin
3432

33+
Usage
34+
==============
35+
Have a look at the [QuickStart guide](http://www.moxone.me/post?pid=2)
3536

3637

3738
Running with apache / lighttpd / nginx
38-
====
39-
While the Usage instruction above will get you up and running with a quick site (via CherryPi), for production / real-world environemnts,
40-
you will probably want to run web.py under apache or lighttpd. google "web.py + " your desired web server for instruction.
39+
==============
40+
While the usage instructions above will get you up and running with a quick site for production / real-world environemnts,
41+
you will probably want to run web.py under apache or lighttpd. Google "web.py + " your desired web server for instruction.
4142
For apache mod_wsgi see: http://webpy.org/cookbook/mod_wsgi-apache
4243
For lighttpd mod_fastcgi see: http://webpy.org/cookbook/fastcgi-lighttpd
4344

44-
Running the tests
45-
====
46-
There aren't any tests yet, eventually some will be here.
47-
python test.py
45+
Getting Involed
46+
==============
47+
It is my goal to eventually turn blogstrap.py into a fully functional, feature complete Blogging platform. But, I can't do all of that by myself!
48+
Anyone wishing to get involed into the project should join the mailing list at [[email protected]]([email protected])
4849

4950

5051
Copyright

static/css/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
body {
23
padding-top: 0px; /* 50px to make the container go all the way to the bottom of the topbar */
34
}

templates/copyright.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
$def with()
22

3-
<p>powered by blogstrap.py - <a href="https://github.com/mox1/webpy-bootstrap-blog"> Fork me on GitHub</a></p>
3+
<p><a href="http://hackerthemes.com/">designed by HackerThemes</a> - <a href="https://github.com/mox1/webpy-bootstrap-blog">powered by blogstrap.py</a></p>

templates/top.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600|PT+Serif:400,400italic' rel='stylesheet' type='text/css'>
2323

2424
<!-- Styles -->
25-
<link rel="stylesheet" href="/static/css/styles-basic.css" id="theme-styles">
25+
<link rel="stylesheet" href="/static/css/hackertheme-tales-bluered.css" id="theme-styles">
2626

2727
<!--[if lt IE 9]>
2828
<link rel="stylesheet" href="css/ie8.css">

0 commit comments

Comments
 (0)