diff options
author | Tyler Davis <tyler@gluecode.net> | 2024-07-19 23:51:09 +0000 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2024-07-19 23:51:09 +0000 |
commit | 1d34a4448b1df06295c9c84119f4e459c2ed8d18 (patch) | |
tree | 357cf1954fc570e1db320fa5ff78dd259d1bbde6 /.local | |
parent | 3cd2c1371fe8ca5ceae879b2000597646535a7bc (diff) | |
download | dotfiles-1d34a4448b1df06295c9c84119f4e459c2ed8d18.tar.gz dotfiles-1d34a4448b1df06295c9c84119f4e459c2ed8d18.zip |
bin: update bb.sh with details
Diffstat (limited to '.local')
-rwxr-xr-x[-rw-r--r--] | .local/bin/bb.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.local/bin/bb.sh b/.local/bin/bb.sh index 9d8e645..0de61a6 100644..100755 --- a/.local/bin/bb.sh +++ b/.local/bin/bb.sh @@ -20,21 +20,22 @@ global_variables() { global_software_version="2.10" # Blog title - global_title="My fancy blog" + global_title="GlueCode Blog" # The typical subtitle for each blog - global_description="A blog about turtles and carrots" + global_description="HowTo's, Opinions, and Discussion of tech stuff" # The public base URL for this blog - global_url="http://example.com/blog" + global_url="https://www.gluecode.net/blog/" # Your name - global_author="John Smith" + global_author="WaveFunction" # You can use twitter or facebook or anything for global_author_url - global_author_url="http://twitter.com/example" + global_author_url="" # Your email - global_email="john@smith.com" + global_email="wavefunction@gluecode.net" # CC by-nc-nd is a good starting point, you can change this to "©" for Copyright - global_license="CC by-nc-nd" + #global_license="CC by-nc-nd" + global_license="CC by-sa" # If you have a Google Analytics ID (UA-XXXXX) and wish to use the standard # embedding code, put it on global_analytics @@ -60,11 +61,10 @@ global_variables() { # Change this to your disqus username to use disqus for comments global_disqus_username="" - # Blog generated files # index page of blog (it is usually good to use "index.html" here) index_file="index.html" - number_of_index_articles="8" + number_of_index_articles="10" # global archive archive_index="all_posts.html" tags_index="all_tags.html" |