summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/list-majors.html
diff options
context:
space:
mode:
authorAlejandro <[email protected]>2024-08-03 11:52:50 -0600
committerAlejandro <[email protected]>2024-08-03 11:52:50 -0600
commit5c301be7e1736e73fa8ffa1c1d1c16f233fd2015 (patch)
tree28cee9c09e1be0603b71c1b4e1c995be84da14d7 /layouts/shortcodes/list-majors.html
parent42a228ed406ee9af0cbf8a392dff667685e13553 (diff)
added: read more button and majors class
Diffstat (limited to 'layouts/shortcodes/list-majors.html')
-rw-r--r--layouts/shortcodes/list-majors.html7
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>