forked from BioSchemas/bioschemas.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (40 loc) · 3.04 KB
/
index.html
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
---
layout: default
---
<div itemscope itemtype="http://schema.org/Organization">
<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' %}
{% if currentDate <= meetingDate %}
<li><strong><a href="{{ meeting.url }}">{{ meeting.name}}</a></strong> <br/> {{ meeting.dates }} <br/> {{ meeting.venue }}</li>
{% assign count = count | plus: 1 %}
<!-- Limit upcoming meetings to the next three meetings -->
{% if count == 3 %}
{% break %}
{% endif %}
{% endif %}
{% endfor %}
</ul>
</div>
<meta itemprop="logo" content="http://bioschemas.org/images/square_logo2.png"/>
<meta itemprop="url" content="http://bioschemas.org"/>
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.
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.
Bioschemas operates as an open community initiative. You are welcome to <a href="http://bioschemas.org/groups/index.html">join a community group</a>.
<h2>Schema.org</h2>
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.
Schema.org is a community effort supported by the main search engines, and is already widely implemented across the web.
<h2>Bioschemas for generic types</h2>
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.
<h2>Bioschemas for biological types</h2>
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.
</section>
</div>
</div>