list.html 845 B

1234567891011121314151617181920212223242526272829
  1. {{ partial "header.html" . }}
  2. {{ partial "navbar.html" . }}
  3. {{ partial "page_header.html" . }}
  4. <section id="about" class="home-section">
  5. <div class="container">
  6. {{/* Only show About widget if a profile has been configured for this user. */}}
  7. {{ $widget := "widgets/about.html" }}
  8. {{ $params := dict "root" $ "page" . "author" .Title }}
  9. {{ with $.Site.GetPage (printf "/author/%s" (urlize .Title)) }}
  10. {{ partial $widget $params }}
  11. {{ end }}
  12. <div class="article-widget">
  13. <div class="hr-light"></div>
  14. <h3>{{ i18n "related" }}</h3>
  15. <ul>
  16. {{ range .Pages }}
  17. <li>
  18. <a href="{{ .Permalink }}">{{ .Title }}</a>
  19. </li>
  20. {{ end }}
  21. </ul>
  22. </div>
  23. </div>
  24. </section>
  25. <!-- Page Footer -->
  26. {{ partial "footer_container.html" . }}
  27. {{ partial "footer.html" . }}