Tildelog ======== This is the source for the customized bashblog used on [tilde.team](https://tilde.team). We have a [wiki page](https://tilde.team/wiki/?page=tildeblogs) with more details on our specific setup. Note for ~team admins: ```bash sudo make install ``` to update the script in /usr/local/bin original README from [github](https://github.com/cfenollosa/bashblog) here: --- A single Bash script to create blogs. I created it because I wanted a very, very simple way to post entries to a blog by using a public folder on my server, without any special requirements and dependencies. Works on GNU/Linux, OSX and BSD. *How simple? Just type `bb post` and start writing your blogpost.* [![asciinema](https://asciinema.org/a/4nr44km9ipow4s7u2w2eabeik.png)](https://asciinema.org/a/4nr44km9ipow4s7u2w2eabeik) You can see a sample here: [read the initial blog post](https://web.archive.org/web/20130520204024/http://mmb.pcb.ub.es/~carlesfe/blog/creating-a-simple-blog-system-with-a-500-line-bash-script.html). That page was 100% generated using bashblog, no additional tweaking. [![demo](https://raw.githubusercontent.com/cfenollosa/bashblog/gh-pages/images/demo_thumb.png)](https://raw.githubusercontent.com/cfenollosa/bashblog/gh-pages/images/demo.png) Check out [other bashblog users](https://www.google.com/search?q=%22Generated+with+bashblog,+a+single+bash+script+to+easily+create+blogs+like+this+one%22) Usage ----- `bb` will show the available commands. **Before creating your first post, you may want to configure the blog settings (title, author, etc). Read the Configuration section below for more information** To create your first post, just run: bb post It will use Markdown. To force HTML: bb post -html The script will handle the rest. When you're done, access the public URL for that folder (`https://tilde.team/~username/blog`) and you should see the index file and a new page for that post! Features -------- - Ultra simple usage: Just type a post with your favorite editor and the script does the rest. No templating. - No installation required. Download `bb.sh` and start blogging. - Zero dependencies. It runs just on base utils (`date`, `basename`, `grep`, `sed`, `head`, etc) - GNU/Linux, BSD and OSX compatible out of the box, no need for GNU `coreutils` on a Mac. It does some magic to autodetect which command switches it needs to run depending on your system. - All content is static. You only need shell access to a machine with a public web folder. *Tip: advanced users could mount a remote public folder via `ftpfs` and run this script locally* - Allows drafts, includes a simple but clean stylesheet, generates the RSS file automatically. - Support for tags/categories - Support for Markdown, Disqus comments, Twitter, Feedburner, Google Analytics. - The project is still maintained as of 2016. Bugs are fixed, and new features are considered (see "Contributing") - Everything stored in a single ~1k lines bash script, how cool is that?! ;) Configuration ------------- Configuration is not required for a test drive, but if you plan on running your blog with bashblog, you will want to change the default titles, author names, etc, to match your own. There are two ways to configure the blog strings: - Edit `bb.sh` and modify the variables in the `global_variables()` function - Create a `.config` file with your configuration values -- useful if you don't want to touch the script and be able to update it regularly with git The software will load the values in the script first, then overwrite them with the values in the `.config` file. This means that you don't need to define all variables in the config file, only those which you need to override from the defaults. The format of the `.config` file is just one `variablename="value"` per line, just like in the `global_variables()` function. **Please remember:** quote the values, do not declare a variable with the dollar sign, do not use spaces around the equal sign. bashblog uses the `$EDITOR` environment value to open the text editor. Detailed features ----------------- - A simple but nice and readable design, with nothing but the blog posts - **NEW on 2.0** Markdown support via a third-party library. The easiest method is to download Gruber's [Markdown.pl](http://daringfireball.net/projects/markdown/) - Post preview - Save posts as drafts and resume editing later - HTML page for each post, using its title as the URL - Configurable number of posts on the front page - Automatic generation of an RSS file, feedburner support - Additional page containing an index of all posts - Automatically generates pages for each tag - Rebuild all files while keeping the original data - Comments delegated to Twitter, with additional Disqus support - An option for cookieless Twitter sharing, to comply with the [EU cookie law](https://github.com/cfenollosa/eu-cookie-law) - Google Analytics code support - Contains its own CSS so that everything is reasonably styled by default - Headers, footers, and in general everything that a well-structured html file needs - Support to add extra content on top of every page (e.g. banners, images, etc) - xhtml validation, CSS validation, RSS validation by the w3c - Automatic backup of the site every time you post (stored as `.backup.tar.gz`) Read the Changelog section for more updates or [check out the news on my blog](http://cfenollosa.com/blog/tag_bashblog.html)