{{ if isset .Site.Params.sidebar "about" }}

{{ i18n "about" }}

{{ .Site.Params.sidebar.about | markdownify }}

{{ end }} {{ $num_recent_posts := (index .Site.Params.sidebar "num_recent_posts" | default 5) }}

{{ i18n "recentPosts" }}

    {{ range first $num_recent_posts (where .Site.Pages "Type" "post") }}
  1. {{.Title | markdownify }}
  2. {{ end }}
{{ with .Site.Menus.sidebar }}

Links

    {{ range . }}
  1. {{ .Name }}
  2. {{ end }}
{{ end }}