|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +rdf_prefix_path: "_data/prefix.sparql" |
| 4 | +title: "Lexeme" |
| 5 | +--- |
| 6 | +<div class="post"> |
| 7 | + <header class="post-header"> |
| 8 | + <h1>{{ page.rdf | rdf_property: "rdfs:label" }}</h1> |
| 9 | + </header> |
| 10 | + |
| 11 | +{% assign inflections = page.rdf | rdf_property: "mmoon:hasInflectionalCategory", nil, true %} |
| 12 | +{% assign representations = page.rdf | rdf_property: "mmoon:hasRepresentation", nil, true %} |
| 13 | +{% assign senses = page.rdf | rdf_property: "mmoon:hasSense", nil, true %} |
| 14 | +{% assign wordclasses = page.rdf | rdf_property: "mmoon:hasWordclassAffiliation", nil, true %} |
| 15 | +{% assign morphs = page.rdf | rdf_property: "mmoon:consistsOfMorph", nil, true %} |
| 16 | + |
| 17 | +{% assign lemon_sense = page.rdf | rdf_property: "lemon:sense", nil, true %} |
| 18 | +{% assign seeAlso = page.rdf | rdf_property: "rdfs:seeAlso", nil, true %} |
| 19 | + |
| 20 | +{% for link in seeAlso %} |
| 21 | +<a href="{{link}}">{{link}}</a>, |
| 22 | +{% endfor %} |
| 23 | + |
| 24 | +{% for lemon_link in lemon_sense %} |
| 25 | +<a href="{{ lemon_link }}">{{ lemon_link }}</a>, |
| 26 | +{% endfor %} |
| 27 | + |
| 28 | + |
| 29 | + <dl> |
| 30 | + <dt>Inflection Category</dt> |
| 31 | + {% for category in inflections %} |
| 32 | + <dd>{{ category.iri }}</dd> |
| 33 | + {% endfor %} |
| 34 | + |
| 35 | + <dt>Representation</dt> |
| 36 | + {% for representation in representations %} |
| 37 | + <dd>{% include representation.html representation=representation %}</dd> |
| 38 | + {% endfor %} |
| 39 | + |
| 40 | + <dt>Sense</dt> |
| 41 | + {% for sense in senses %} |
| 42 | + <dd>{% include sense.html sense=sense %}</dd> |
| 43 | + {% endfor %} |
| 44 | + |
| 45 | + <dt>Word Classes</dt> |
| 46 | + {% for class in wordclasses %} |
| 47 | + <dd>{{ class.iri }}</dd> |
| 48 | + {% endfor %} |
| 49 | + |
| 50 | + <dt>Morph</dt> |
| 51 | + {% for morph in morphs %} |
| 52 | + <dd>{{ morph.iri }}</dd> |
| 53 | + {% endfor %} |
| 54 | + </dl> |
| 55 | + |
| 56 | +</div> |
0 commit comments