Skip to content
Snippets Groups Projects
Commit 4c51f91f authored by Olivier Goulet's avatar Olivier Goulet
Browse files

fix: hide missing field for research project card

parent f619281c
No related branches found
No related tags found
No related merge requests found
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
<a href="{{ website_url }}">Read More</a> <a href="{{ website_url }}">Read More</a>
<span class="featured-projects-website-url-bar"></span> <span class="featured-projects-website-url-bar"></span>
</div> </div>
<p>Main topic: <strong>{{ projectTopic }}</strong></p> {{#project_topic}}
<p>Main topic: <strong>{{ project_topic }}</strong></p>
{{/project_topic}}
</div> </div>
</div> </div>
</li> </li>
{{/items}} {{/items}}
\ No newline at end of file
...@@ -12,10 +12,10 @@ ...@@ -12,10 +12,10 @@
"logo": "{{ $logoPath }}", "logo": "{{ $logoPath }}",
"version": {{ .Params.project_type | jsonify }}, "version": {{ .Params.project_type | jsonify }},
"tags": {{ .Params.tags | jsonify }}, "tags": {{ .Params.tags | jsonify }},
"projectTopic": {{ $project_topic | jsonify }}, "project_topic": {{ $project_topic | jsonify }},
"fundingBodies": {{ .Params.funding_bodies | jsonify }}, "funding_bodies": {{ .Params.funding_bodies | jsonify }},
"releases": [] "releases": []
}{{ if ne $index (sub $len 1) }},{{ end }} }{{ if ne $index (sub $len 1) }},{{ end }}
{{ end }} {{ end }}
] ]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment