Events and Announcements Header

EVENTS AND ANNOUNCEMENTS

Marine debris is defined as any persistent solid material that is manufactured or processed and directly or indirectly, intentionally or unintentionally, disposed of or abandoned into the marine environment or the Great Lakes. Looking for what’s new with marine debris in the Florida and Caribbean region? Find events and other important announcements below.

Marine Debris Content Portlet

Marine Debris Content Portlet

Search:
Sort By:
An error occurred while processing the template.
The following has evaluated to null or missing:
==> curEntry.contentDate  [in template "20202#20246#53019" at line 54, column 31]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
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 eventMonth = curEntry.content...  [in template "20202#20246#53019" at line 54, column 9]
----
1<#-- 
2Application display 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<style> 
9.marine-debris-event { 
10	font-family: 'Noto Sans', sans-serif; 
11
12 
13.marine-debris-event a { 
14	font-weight: bold; 
15	color: #f47d3b; 
16
17 
18.marine-debris-event-month { 
19	font-weight: bold; 
20	font-size: 16px; 
21	text-transform: uppercase; 
22
23 
24.marine-debris-event-month-day { 
25	font-size: 27px; 
26
27 
28.marine-debris-event-title { 
29	font-weight: bold; 
30	font-size: 14px; 
31	text-transform: uppercase; 
32
33 
34.marine-debris-event-detail { 
35	font-size: 13px; 
36
37 
38.marine-debris-event-detail img { 
39	height: 100px; 
40	width: 100px; 
41	margin-right: 10px; 
42	float: left; 
43
44 
45.marine-debris-event-clear { 
46	clear: both; 
47
48 
49</style> 
50<#assign lastEventMonth = ""/> 
51<#if entries?has_content> 
52	<#list entries as curEntry> 
53<div class="marine-debris-event"> 
54	<#assign eventMonth = curEntry.contentDate?string["MMMM"]/> 
55	<#assign eventMonthNum = curEntry.contentDate?string["MM"]/> 
56	<#assign eventMonthDay = curEntry.contentDate?string["dd"]/> 
57	<#if lastEventMonth != eventMonth> 
58		<div class="marine-debris-event-month"> 
59			${eventMonth} 
60		</div> 
61	</#if> 
62	<div class="marine-debris-event-month-day"> 
63		${eventMonthNum} / ${eventMonthDay} 
64	</div> 
65	<div class="marine-debris-event-title"> 
66		${curEntry.title} 
67	</div> 
68	<div class="marine-debris-event-detail"> 
69	<#if curEntry.photoUrl?has_content> 
70		<img src="${curEntry.photoUrl}" alt="${curEntry.photoCaption}"/> 
71	</#if> 
72		<div class="infoAndLinks">${curEntry.infoAndOrLinks}</div> 
73	</div> 
74	<div class="marine-debris-event-clear">&nbsp;</div> 
75	<#assign lastEventMonth = eventMonth /> 
76</div> 
77	</#list> 
78<#else> 
79    <p>There are no events scheduled.  Please check back again soon.</p> 
80</#if> 
81 
82<script type="text/javascript"> 
83AUI().ready('aui-base', function(A) { 
84	var infoAndLinksLinks = A.all('.infoAndLinks a'); 
85	infoAndLinksLinks.setAttribute('target', '_blank'); 
86}); 
87</script> 

Cleanup Opportunities