forked from BioSchemas/bioschemas.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (65 loc) · 4.02 KB
/
Copy pathindex.html
File metadata and controls
73 lines (65 loc) · 4.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
redirect_from:
- projects/
- review/
- examples/
- about/
layout: default
---
<div itemscope itemtype="http://schema.org/Organization">
<meta itemprop="logo" content="http://bioschemas.org/images/square_logo2.png"/>
<meta itemprop="url" content="http://bioschemas.org"/>
<meta itemprop="email" content="community@bioschemas.org"/>
<meta itemprop="name" content="Bioschemas Community"/>
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<div style="border: 1px solid #0B794B; margin-bottom:20px;">
<h3 style="padding-left: 10px;">Upcoming events</h3>
<ul>
{% assign sorted_meetings = (site.meetings | sort: 'start_date') %}
{% assign count = 0 %}
{% for meeting in sorted_meetings %}
{% assign currentDate = site.time | date: '%F' %}
{% assign meetingDate = meeting.start_date | date: '%F' %}
{% assign endDate = meeting.end_date | date: '%F' %}
{% if currentDate <= meetingDate %}
<li itemscope itemtype="http://schema.org/Event"><strong><a href="{{ meeting.url }}"><span itemprop="name">{{ meeting.name}}</span></a></strong> <br/> {{ meeting.dates }} <br/> <span itemprop="location">{{ meeting.venue }}</span> <meta itemprop="startDate" content="{{meeting.start_date}}"/><meta itemprop="endDate" content="{{ meeting.end_date }}"/></li>
{% assign count = count | plus: 1 %}
{% elsif meetingDate <= currentDate and currentDate <= endDate %}
<li itemscope itemtype="http://schema.org/Event"><strong><a href="{{ meeting.url }}"><span itemprop="name">{{ meeting.name}}</span></a></strong> <br/> {{ meeting.dates }} <br/> <span itemprop="location">{{ meeting.venue }}</span> <meta itemprop="startDate" content="{{meeting.start_date}}"/><meta itemprop="endDate" content="{{ meeting.end_date }}"/></li>
{% assign count = count | plus: 1 %}
{% endif %}
<!-- Limit upcoming meetings to the next three meetings -->
{% if count == 3 %}
{% break %}
{% endif %}
{% endfor %}
</ul>
</div>
<p>
Bioschemas aims to improve data interoperability in life sciences. It does this by encouraging people in life science to use schema.org markup, so that their websites and services contain consistently structured information. This structured information then makes it easier to discover, collate and analyse distributed data.
</p>
<p>
The main outcome of Bioschemas is a collection of specifications that provide guidelines to facilitate a more consistent adoption of schema.org markup within the life sciences.
</p>
<p>
Bioschemas operates as an open community initiative. You are welcome to <a href="/howtojoin/">join the community</a>.
</p>
<h2>Schema.org</h2>
<p>
Schema.org provides a way for us to add semantic markup to web pages. It describes ‘types’ of information, which then have ‘properties’. For example, ‘Event’ is a type that has properties like ‘startDate’, ‘endDate’ and ‘description’. If types or properties needed in the life sciences are missing, then Bioschemas proposes their adoption by Schema.org.
</p>
<p>
Schema.org is a community effort supported by the main search engines, and is already widely implemented across the web.
</p>
<h2>Bioschemas for generic types</h2>
<p>
Schema.org defines common generic types like events and datasets which can be used not just in life sciences but in many other disciplines. Bioschemas is working on specifications to improve the description of generic types in life sciences.
</p>
<h2>Bioschemas for biological types</h2>
<p>
At the moment biological content types like pathways and proteins are not well represented in schema.org. Bioschemas aims to engage with life science communities relying on existing community agreements to bring forward new biological types to schema.org.
</p>
</section>
</div>
</div>