-
Notifications
You must be signed in to change notification settings - Fork 38
/
index.html
102 lines (95 loc) · 5.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
layout: default
---
<div class="columns">
<div class="column col-12">
<div id="index-carousel" class="carousel startCarousel">
<input id="slide-1" name="carousel-radio" class="carousel-locator" checked="" type="radio" hidden="">
<input id="slide-2" name="carousel-radio" class="carousel-locator" type="radio" hidden="">
<input id="slide-3" name="carousel-radio" class="carousel-locator" type="radio" hidden="">
<input id="slide-4" name="carousel-radio" class="carousel-locator" type="radio" hidden="">
<div class="carousel-container">
<figure class="carousel-item">
<label class="item-prev btn btn-action btn-lg" for="slide-4">
<i class="icon icon-arrow-left"></i>
</label>
<label class="item-next btn btn-action btn-lg" for="slide-2">
<i class="icon icon-arrow-right"></i>
</label>
<img src="pix/schumann_overlay.jpg" class="img-responsive rounded" alt="Schumann">
</figure>
<figure class="carousel-item">
<label class="item-prev btn btn-action btn-lg" for="slide-1">
<i class="icon icon-arrow-left"></i>
</label>
<label class="item-next btn btn-action btn-lg" for="slide-3">
<i class="icon icon-arrow-right"></i>
</label>
<img src="pix/slider_cmn.jpg" class="img-responsive rounded" alt="CMN">
</figure>
<figure class="carousel-item">
<label class="item-prev btn btn-action btn-lg" for="slide-2">
<i class="icon icon-arrow-left"></i>
</label>
<label class="item-next btn btn-action btn-lg" for="slide-4">
<i class="icon icon-arrow-right"></i>
</label>
<img src="pix/slider_neumes.jpg" class="img-responsive rounded" alt="Neumes">
</figure>
<figure class="carousel-item">
<label class="item-prev btn btn-action btn-lg" for="slide-3">
<i class="icon icon-arrow-left"></i>
</label>
<label class="item-next btn btn-action btn-lg" for="slide-1">
<i class="icon icon-arrow-right"></i>
</label>
<img src="pix/mermeid-cnw.png" class="img-responsive rounded" alt="MerMEId">
</figure>
</div>
<div class="carousel-nav">
<label class="nav-item text-hide c-hand" for="slide-1">1</label>
<label class="nav-item text-hide c-hand" for="slide-2">2</label>
<label class="nav-item text-hide c-hand" for="slide-3">3</label>
<label class="nav-item text-hide c-hand" for="slide-4">4</label>
</div>
</div>
</div>
</div>
<div class="columns">
<div class="column col-8 col-md-12">
<h1>Music Encoding Initiative</h1>
<p>
The Music Encoding Initiative (MEI) is a community-driven, open-source effort to define a system for encoding musical documents in a machine-readable structure. MEI brings together specialists from various music research communities, including technologists, librarians, historians, and theorists in a common effort to define best practices for representing a broad range of musical documents and structures. The results of these discussions are formalized in the MEI schema, a core set of rules for recording physical and intellectual characteristics of music notation documents expressed as an eXtensible Markup Language (XML) schema. It is complemented by the MEI Guidelines, which provide detailed explanations of the components of the MEI model and best practices suggestions. <a href="{{ site.baseurl}}/about">Read more …</a>
</p>
<p>
MEI is hosted by the <a href="https://www.adwmainz.de/startseite.html">Akademie der Wissenschaften und der Literatur</a>,
Mainz.
</p>
<p>
If you want to become an active MEI member, you are invited to read more about the MEI community and <a href="{{ site.baseurl}}/community/community-contacts.html">how to join us</a>. You are also invited to contribute to the development of MEI on <a href="https://github.com/music-encoding">GitHub</a>, either submitting issues or making pull requests to solve these issues.
</p>
</div>
<div class="column col-4 col-md-12 mt-2 newsMenu">
<h4>News</h4>
{% for post in site.posts limit:3 %}
{% if forloop.index0 > 0 %}
<div class="divider"></div>
{% endif %}
<div class="tile">
<div class="tile-icon">
<div class="arrow-tile-icon">
<i class="icon icon-forward centered"></i>
</div>
</div>
<div class="tile-content">
<h5 class="tile-title"><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h5>
<p class="tile-subtitle text-gray"><small>Posted {{ post.date | date: "%b %-d, %Y" }}</small></p>
{{ post.excerpt }}
</div>
</div>
{% endfor %}
<p>
<a href="{{ site.baseurl}}/community/news-events.html">See all previous news ...</a>
</p>
</div>
</div>