-
About
First-Year Application Deadline
Don't miss your chance to apply to Marist!
• Early Decision II and Regular Decision: Saturday, Feb. 15About
-
Academics
First-Year Application Deadline
Don't miss your chance to apply to Marist!
• Early Decision II and Regular Decision: Saturday, Feb. 15Academics
-
Admission & Financial Aid
First-Year Application Deadline
Don't miss your chance to apply to Marist!
• Early Decision II and Regular Decision: Saturday, Feb. 15Admission & Financial Aid
-
Student Life
First-Year Application Deadline
Don't miss your chance to apply to Marist!
• Early Decision II and Regular Decision: Saturday, Feb. 15Student Life
- Athletics
An error occurred while processing the template.
The following has evaluated to null or missing: ==> serviceLocator [in template "86161#86202#96561" at line 8, column 35] ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign assetEntryLocalService = serv... [in template "86161#86202#96561" at line 8, column 1] ----
1<#--
2Widget templates can be used to modify the look of a
3specific application.
4
5Please use the left panel to quickly add commonly used variables.
6Autocomplete is also available and can be invoked by typing "${".
7-->
8<#assign assetEntryLocalService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetEntryLocalService") />
9
10<div id="news-archive-listing" class="container news-feed-list">
11<div class="row">
12 <div class="col-lg ml-4">
13 <h1 class="decorated"><span>Marist News</span></h1>
14 </div>
15</div>
16 <#if entries?has_content>
17 <#list entries as entry>
18 <#assign
19 assetEntry = assetEntryLocalService.getEntry(entry.getClassName(), entry.getClassPK())
20 assetRenderer = assetEntry.getAssetRenderer()
21 journalArticle = assetRenderer.getAssetObject()
22 />
23 <div class="col-lg ml-3">
24 <article class="news-article row">
25 <@liferay_journal["journal-article"]
26 articleId=journalArticle.getArticleId()
27 ddmTemplateKey="70501"
28 groupId=journalArticle.getGroupId()
29 />
30 </article>
31 </div>
32 </#list>
33 </#if>
34</div>
35<style>
36
37.decorated > span:after {
38 margin: 20px 25px;
39}
40 .pagination-bar {
41 padding: 24px 0 0 24px;
42 }
43
44 .pagination-bar > .pagination > .page-item:last-child > .page-link {
45 margin-right: 0;
46 }
47
48.pagination-items-per-page > a, .pagination-items-per-page > button {
49 color: #006e7a;
50 }
51
52.page-item.active .page-link {
53 background-color: #006e7a;
54 border-color: #006e7a;
55 color: #fff;
56 cursor: default;
57 z-index: 3;
58}
59
60.pagination-items-per-page > a:hover, .pagination-items-per-page > button:hover {
61 color: #006e7a;
62}
63.page-link:hover {
64 color: #006e7a;
65}
66
67.pagination a {
68 color: #006e7a;
69}
70
71</style>