`) 宽度的一半。
参照上述代码,修改 index.html 模板。
```
{% extends 'rango/base.html' %}
{% load staticfiles %}
{% block title_block %} Index {% endblock %}
{% block body_block %}
Rango says...
{% if user.is_authenticated %}
hey there {{ user.username }}!
{% else %}
hey there partner!
{% endif %}
Most Liked Categories
{% if categories %}
{% else %}
There are no categories present.
{% endif %}
Most Viewed Pages
{% if pages %}
{% else %}
There are no categories present.
{% endif %}

{% endblock %}
```
我们把页面的标题放在 `
`中,以此突出显示。现在刷新页面,看起来好多 了,不过列表项目还是丑。
下面使用 Bootstrap 提供的列表组样式美化一下。修改方法很简单,把 `