Define "blog".
With CG, there are three ways of doing it. The first is to use it on the site itself. This is simply adding some text to your indextemplate.html file and changing it every so often. This is the easiest way, but is not recommended for a couple of reasons:
- It means you have to manually trigger an update if you want to change something outside your normal update schedule.
- it is difficult to hand-code updates every time and easy to make mistakes (which you won't see until you run an update, and then you'll need to run another update to fix the mistake).
- it will be impossible to let people know that there is a problem if the CG server stalls and you can't update your comic (which does happen from time to time).
The second way is with an off-site host. The recommended easy way is to sign up somewhere that allows file hosting as well as hotlinking (I use and recommend ripway.com - it is super easy, reliable and free). Once you have your account, create a text file (for example, blog.txt) and upload it to your second site. On your indextemplate.html file, add a code like this:
Code: Select all
<iframe src=URL_HERE width=SIZE height=SIZE>Your browser does not support iFrames'</iframe>
Replace URL_HERE with the address of the text file, something like
http://ripway.com/username/files/blog.txt and SIZE with whatever width and height you want to use for the iFrame so it displays properly in your comic.
Note that the text in the middle ("Your browser...") is what will display if the person reading your comic can't see iFrame's. This text can be anything you want, but an error message is recommended. There are also other options available for iFrames, run a search for "iFrame tutorial" or "iFrame basics" to find a bunch of help and how to use them.
The third option is the one described in the tutorial you were linked to. It works and it's fine, but it might be a bit advanced for you at this stage if this is your first experience with html. Best bet is to get something basic up and running and work on making it pretty later.