diff options
author | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2013-03-13 09:18:59 +0100 |
---|---|---|
committer | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2013-03-13 09:18:59 +0100 |
commit | 09be7f7d905884dd94a76d106bef5fd2bd21ebb2 (patch) | |
tree | 956a68062a8e9645de42f884af3ac4f8396d8dd6 | |
parent | 7b83de54e1a4a968fca6d7000f5d621fa348b4f8 (diff) | |
parent | 28aa6a78426de6ee82a98fdc93756bfc706e8b0e (diff) |
Merge branch 'master' of github.com:carlesfe/bashblog
Conflicts:
bb.sh
-rwxr-xr-x | bb.sh | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -86,8 +86,6 @@ # Global variables # It is recommended to perform a 'rebuild' after changing any of this in the code global_variables() { - # If you want to fork the project please contact me first, I wouldn't mind opening a git - # or some shared code base and collaborate with other people. global_software_name="BashBlog" global_software_version="1.5.1" @@ -172,7 +170,7 @@ google_analytics() { # Please note that this function does not automatically republish anything, as # it is usually called from 'main'. # -# 'edit' is kind of an advanced function, as it leaves to the user the responsability +# 'edit' is kind of an advanced function, as it leaves to the user the responsibility # of editing an html file # # $1 the file to edit @@ -407,7 +405,7 @@ rebuild_index() { if [ "$global_feedburner" == "" ]; then echo '<div id="all_posts"><a href="'$archive_index'">View more posts</a> — <a href="'$blog_feed'">'$template_subscribe'</a></div>' >> "$contentfile" else - echo '<div id="all_posts"><a href="'$archive_index'">'$template_archive'</a> — <a href="'$global_feedburner'">Susbcribe</a></div>' >> "$contentfile" + echo '<div id="all_posts"><a href="'$archive_index'">'$template_archive'</a> — <a href="'$global_feedburner'">Subscribe</a></div>' >> "$contentfile" fi echo "" @@ -608,7 +606,7 @@ reset() { } # Main function -# Encapsuled on its own function for readability purposes +# Encapsulated on its own function for readability purposes # # $1 command to run # $2 file name of a draft to continue editing (optional) |