Tips

This page has some info about how to use the template Intense Simplicity.

Blockquotes

In order to get a good-looking blockquote, you have to add some extra divs (one for each corner) around the <blockquote> tag to get rounded corners. This makes for messy code, but perhaps when CSS3 is better supported we can clean it up by assigning all corner images to the blockquote, instead of one per div.

Roses are red, violets are blue, this is a blockquote, and it doesn't rhyme.

Source:

<div class="ltl">
 <div class="ltr">
  <div class="lbr">
   <div class="lbl">
    <blockquote>
     <p>Roses are red, violets are blue, this is a blockquote, and it doesn't rhyme.</p>
    </blockquote>
   </div>
  </div>
 </div>
</div>

You can get different icons by changing the class of the blockquote (see tags).

Highlighting Code in <code> Blocks

You can make bits of code in a code block red by surrounding it with <span class="red">, such as in the third line of the following:

public class Main {
 public static void main(String[] args) {
  //this line is red (duh)
  System.out.println("Hello World!");
 }
}

Source:

<code>
...
 <span class="red">//this line is red (duh)</span>
...
</code>