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.

11 lines
454 B

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