{{ if .Site.Params.blog.showCategories }}

{{ i18n "categories" | default "Categories" }}

{{ if .Site.Taxonomies.tags }}
    {{ range $name, $taxonomy := .Site.Taxonomies.tags }}
  • {{ $name }}
  • {{ end }}
{{ end }}
{{ end }} {{ if .Site.Params.blog.showRecentPosts }}

{{ i18n "recent_posts" | default "Recent Posts" }}

    {{ range first .Site.Params.blog.recentPostCount (where .Site.RegularPages "Type" "blog") }}
  • {{ .Title }} {{ .Date.Format "Jan 2, 2006" }}
  • {{ end }}
{{ end }}