An error occurred while processing the template.
The following has evaluated to null or missing:
==> project  [in template "1#8431626#220537" at line 73, column 40]

----
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: ${project.projectLogo.getData()}  [in template "1#8431626#220537" at line 73, column 38]
----
1<style> 
2	.project-item-container { 
3		height: 355px; 
4
5 
6	.project-item { 
7		height: 300px; 
8		padding: 32px 32px 18px 32px; 
9		position: relative; 
10		background: white; 
11		border-radius: 8px; 
12		display: block; 
13		width: 100%; 
14		transition: all .3s ease-in-out; 
15		overflow: hidden; 
16
17 
18	@media (min-width: 992px) { 
19		.project-item:hover { 
20			height: 345px; 
21			transform: translateY(-10px); 
22			box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1); 
23
24		.project-item:hover .project-item-more { 
25			bottom: 20px; 
26
27
28 
29	.project-item-title { 
30		color: #344C67; 
31		font-size: 24px; 
32		font-weight: 600; 
33
34 
35	.project-item-info { 
36		color: rgba(52, 76, 103, 0.7); 
37		font-size: 16px; 
38
39 
40	.project-item-description { 
41		color: #344C67; 
42		font-size: 18px; 
43
44 
45	.project-item-more { 
46		transition: bottom .3s ease-in-out; 
47		color: #4887FF; 
48		font-size: 18px; 
49		font-weight: 600; 
50		margin: 0; 
51		position: absolute; 
52		bottom: 20px; 
53
54 
55	@media (min-width: 992px) { 
56		.project-item-more { 
57			bottom: -30px; 
58
59
60 
61	.project-item-more-icon { 
62		position: relative; 
63		top: 8px; 
64		left: 3px; 
65
66 
67	.project-item-image { 
68		height: 72px; 
69		max-width: 72px; 
70
71</style> 
72 
73<img class="project-item-image" src="${project.projectLogo.getData()}" alt="${.vars["reserved-article-title"].data} - Logo"> 
74<h3 class="project-item-title">${.vars["reserved-article-title"].data}</h3> 
75<div class="project-item-description">${.vars["reserved-article-description"].data}</div> 
76<p class="project-item-more">Show details <span class="project-item-more-icon icon-16-arrow-right-rod"></span></p>