Christof Donat wrote:
The html fragment file 'histTemplate.htmlf':<div> <span class="heading">Course Title</span> <span class="content"></span> </div>
I spot a typical case of classitis here. Why not getting a little more semantic and use a real heading instead of the least semantic element with a class "heading":
<div> <h2>Course Title</h2> <p>...</p> </div> Less bloated, less to transfer... --Klaus