Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
---
layout: default
---

<!-- JSON-LD markup to represent event using schema.org
Allows for easy inclusion in ELIXIR TeSS (https://tess.elixir-europe.org) and
better page rankings in Google. See bioschemas.org for more info -->
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Event",
"name" : "{{page.title}}",
"startDate" : "{{page.date_start}}",
"endDate" : "{{page.date_end}}",
"location" : {
"@type" : "Place",
"name" : "{{page.venue}}"
},
"description" : "{{page.description}}"
}
</script>

<div class="post">

<header class="post-header">
Expand All @@ -19,3 +38,4 @@ <h2 class="post-title">{{ page.title }}</h2>
</article>

</div>