diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/shortcodes/list-majors.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/layouts/shortcodes/list-majors.html b/layouts/shortcodes/list-majors.html index 7bb2669..9738280 100644 --- a/layouts/shortcodes/list-majors.html +++ b/layouts/shortcodes/list-majors.html @@ -1,7 +1,8 @@ -<ul class="programs"> +<ul class="majors"> {{ range (where .Site.RegularPages "Section" "==" "licenciatura") }} -<a href="{{ .RelPermalink }}"><li>{{ .Title }} <br> +<li><h3>{{ .Title }}</h3> {{ .Summary }} -</li></a> +<a href="{{ .RelPermalink }}" id="read-more">Leer más</a> +</li> {{ end }} </ul> |