File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# Blackblog
22
3- Blackblog is a simple blogging platform written in Go, that uses the
3+ Blackblog is a simple blogging platform written in Go. It uses the
44[ Blackfriday Markdown] ( https://github.com/russross/blackfriday ) library to
55format posts.
66
@@ -11,14 +11,19 @@ of posts and outputs a new directory of static HTML files.
1111
1212Blackblog can be built against Golang c1702f36df03 (release-branch.r60) release/release.r60.3.
1313
14+ ## Alpha Software
15+
16+ Blackblog is alpha software. It is used to publish my personal blog, but it is
17+ not yet feature complete.
18+
1419## Installation
1520
1621 $ goinstall github.com/russross/blackfriday
1722 $ goinstall github.com/rsesek/blackblog
1823
1924 $ mkdir my_new_blog
2025 $ cd my_new_blog
21- $ cp -R $GOTOOT /src/pkg/github.com/rsesek/blackblog/templates .
26+ $ cp -R $GOROOT /src/pkg/github.com/rsesek/blackblog/templates .
2227 $ vim templates/header.html # Change "Blog Title" to what you want.
2328
2429 $ vim first_post.md
@@ -27,7 +32,7 @@ Blackblog can be built against Golang c1702f36df03 (release-branch.r60) release/
2732 $ scp -r ../blog_out example.com:~/public_html/blog
2833
2934This installs the two Go packages you need, starts a new blog and copies the
30- templates so they can be customized for your blog, and then compiles the blog
35+ templates so they can be customized for your blog. It then compiles the blog
3136and uploads it to your server.
3237
3338## Starting a Post
You can’t perform that action at this time.
0 commit comments