31.5. category / categories

简介:

使用Category进行文章分类

使用 {{ category | first }} 输出分类的名称 
使用 {{ category | last | size }} 输出该分类下文章的数目 
遍历 category.last 输出所有文章的信息,构建到该文章的索引目录		
		

单一分类

---
layout: Template
title: Category Sample
category: computer
---
		

多个分类

---
layout: Template
title: Category Sample
categories: [linux, freebsd]
---
		

显示分类名称

{% for category in site.categories %}
	{{ category | first }}
{% endfor %}   		
		
		
{% for category in site.categories %}
	<h2>{{ category | first }}</h2> </span>{{ category | last | size }}</span> 
	<ul class="arc-list">
		{% for post in category.last %}
		<li>{{ post.date | date:"%d/%m/%Y"}}<a href="{{ post.url }}">{{ post.title }}</a></li>
		{% endfor %}
	</ul>
{% endfor %}
		





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
8月前
|
计算机视觉 Python
movie_label 视频刷新
movie_label 视频刷新
51 4
|
XML 数据格式
Do not concatenate text displayed with setText,use resource string with placeholders.
Do not concatenate text displayed with setText,use resource string with placeholders.
275 0
Do not concatenate text displayed with setText,use resource string with placeholders.
成功解决AttributeError: ‘dict_values‘ object has no attribute ‘index‘
成功解决AttributeError: ‘dict_values‘ object has no attribute ‘index‘
Object C学习笔记14-分类(category)
  在.NET中有一个非常带劲的特性,那就是扩展方法. 扩展方法使你能够向现有类型“添加”方法(包括你自定义的类型和对象噢),而无需创建新的派生类型、重新编译或以其他方式修改原始类型。扩展方法是一种特殊的静态方法,但是可以像扩展类型上的实例方法一样进行调用。
927 0
|
关系型数据库 Oracle Linux
[20171206]SQLTUNE_CATEGORY参数.txt
[20171206]SQLTUNE_CATEGORY参数.txt --//今天提示别人使用sql profile优化语句,使用DBMS_SQLTUNE.import_sql_profile的引入替换功能.
1312 0
|
JSON 数据格式