summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/list-phds.html
blob: 426e313af1c734f9e21fafd2cf0a2dd6d55ce716 (plain)
1
2
3
4
5
6
7
8
9
<ul class="majors">
{{ $p := where site.RegularPages "Params.tags" "intersect" (slice "phd-program") }}
{{ range $p }}
<li><h3>{{ .Title }}</h3>
{{ .Summary }}
<a href="{{ .RelPermalink }}" id="read-more">Leer más</a>
</li>
{{ end }}
</ul>