I found that {{ range .Pages }} do contain all the pages including posts list, tag list and category list. I tried to filter the pages by isPage to make difference. Here is my final codes:
{{ range .Pages }}
{{ if .IsPage }}
<li><a href={{ .Permalink }}>{{ .Title }}</a> ...... {{ .Date.Format "Jan 2, 2006" </li>
{{ end }}
{{ if not .IsPage }}
<li><a href={{ .Permalink }}>{{ .Title }}</a></li>
{{ end }}
{{ end }}