You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
433 B

10 years ago
  1. <ul id="post-list">
  2. {{ range .Paginator.Pages }}
  3. {{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
  4. {{ if ne $url "about/" }}
  5. <li>
  6. <a href='{{ .Permalink }}'><aside class="dates">{{ .Date.Format "Jan 2" }}</aside></a>
  7. <a href='{{ .Permalink }}'>{{ .Title }} <h2>{{ .Description | markdownify }}</h2></a>
  8. </li>
  9. {{ end }}
  10. {{ end }}
  11. </ul>