MAJOR updating readme

This commit is contained in:
Simon Petit 2019-07-09 02:00:45 +02:00
parent 2ee79060e1
commit 62c7e0b1cb
2 changed files with 9 additions and 4 deletions

View File

@ -21,7 +21,7 @@ For a start, to generate an empty blog, type in the following in the directory
where you want to put your blog in and follow the guide.
```
bob -i
bob init
```
It will create an `index.html` at the root of your folder, a `drafts` folder in
@ -33,7 +33,7 @@ also be its title, and convert it to an html file, type the following command
from the root :
```
bob -p
bob publish
```
The publishing command `bob -p` will rep-ublish all the drafts, that is why
@ -44,7 +44,7 @@ See the help for additional command, such as modification of the main configurat
of the blog.
```
bob -h
bob help
```
## TODO
@ -52,7 +52,6 @@ bob -h
* Make a proper header/footer for the posts (e.g. adding links to social networks
such as tweeter, github, dev.to ...).
* Complete the CSS files.
* Support long arguments on the command line for more readability.
* Add a comment/like section ?
* Adding a git component, and a server configuration to allow synchronisation.
Maybe the drafts folder on the personal computer triggers changes on the git

6
bob
View File

@ -388,6 +388,9 @@ footer {
margin-left: auto;
font-size: 1.3vh;
}
footer span a {
color: #FF8608;
}
EOF
cat > ./css/poststyle.dark.css << EOF
@ -419,6 +422,9 @@ footer {
margin-left: auto;
font-size: 1.3vh;
}
footer span a {
color: #FF8608;
}
EOF
}