-
Notifications
You must be signed in to change notification settings - Fork 1
/
_config.yml
39 lines (35 loc) · 1.36 KB
/
_config.yml
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
# Site settings
url: http://example.org/
title: Your awesome title
email: [email protected]
description: jekyll-rdf businesscards
baseurl: ""
# Build settings
markdown: kramdown
# jekyll-rdf
plugins:
- jekyll-rdf
jekyll_rdf:
path: "rdf-data/content.ttl"
language: "en"
include_blank: true
render_orphaned_uris: true
restriction: "SELECT ?resourceUri WHERE {
{ ?resourceUri a <http://example.org/group> . }
UNION { ?resourceUri a <http://example.org/project> . }
UNION { ?resourceUri a <http://example.org/publication> . }
UNION { ?resourceUri a <http://xmlns.com/foaf/0.1/Person> . }
UNION { ?resourceUri a <http://xmlns.com/foaf/0.1/Document> . }
}"
default_template: "default.html"
class_template_mappings:
"http://xmlns.com/foaf/0.1/Person" : "person.html"
"http://example.org/group" : "group.html"
"http://example.org/project" : "project.html"
"http://example.org/publication" : "publication.html"
"http://xmlns.com/foaf/0.1/Document" : "document.html"
instance_template_mappings:
"http://example.org/" : "main.html"
"http://example.org/group" : "groupmain.html"
"http://example.org/publication" : "publicationmain.html"
"http://example.org/project" : "projectmain.html"