>"just as the Son of Man came not to be served but to serve, and to give his life a ransom for many."(MATTHEW:20:28) #静态文件以及一个项目框架 在网上浏览网页,由于现在网速也快了,大概你很少注意网页中那些所谓的静态文件。怎么找出来静态文件呢? 如果使用firefox(我特别向列位推荐这个浏览器,它是我认为的最好的浏览器,没有之一。哈哈。“你信不信?反正我信了。”),可以通过firebug组件,来研究网页的代码,当然,你直接看源码也行。 ![](https://raw.githubusercontent.com/qiwsir/ITArticles/master/Pictures/31301.png) 上图中,我打开了一个对天朝很多人来说不存在的网站,并且通过Firebug查看其源码,打开`

`,发现里面有不少`

There is a list, it is {{info}}

I will print the elements of this list in order. {% for element in info %}

{{element}} {% end %}
{% for index,element in enumerate(info) %}

info[{{index}}] is {{element}} {% if element == "python" %}

I love this language--{{element}} {% end %} {% end %} {% if "[email protected]" in info %}

A Ha, this the python lesson of LaoQi, It is good! His email is {{info[2]}} {% end %}

Next, I set "python-tornado"(a string) to a variable(var) {% set var="python-tornado" %}

Would you like {{var}}?

在这个文件中,特别注意就是`