-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout.html
More file actions
73 lines (70 loc) · 2.34 KB
/
layout.html
File metadata and controls
73 lines (70 loc) · 2.34 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
{% extends "!layout.html" %}
{%- block extrahead %}
{{ super() }}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "{{ html_baseurl }}#org-ua",
"name": "The University of Alabama",
"alternateName": ["UA"],
"url": "https://www.ua.edu/",
"sameAs": [
"https://en.wikipedia.org/wiki/University_of_Alabama"
]
"subOrganization": {
"@type": "Organization",
"@id": "{{ html_baseurl }}#org-ua-libraries",
"name": "The University of Alabama Libraries",
"alternateName": [
"UA Libraries",
"UALIB",
"University of Alabama Libraries",
"University Libraries"
],
"url": "https://www.lib.ua.edu/",
"subOrganization": [
{
"@type": "Organization",
"@id": "{{ html_baseurl }}#org-rds",
"name": "Research Data Services",
"alternateName": ["RDS"],
"url": "https://guides.lib.ua.edu/rds/"
},
{
"@type": "Organization",
"@id": "{{ html_baseurl }}#org-rcs",
"name": "Research Computing Services",
"alternateName": ["RCS"],
"url": "https://guides.lib.ua.edu/RCS/"
}
]
}
},
{
"@type": "WebSite",
"@id": "{{ html_baseurl }}#website",
"name": "University of Alabama Libraries Scholarly API Cookbook",
"url": "{{ html_baseurl }}",
"publisher": {
"@id": "{{ html_baseurl }}#org-ua-libraries"
},
"logo": {
"@type": "ImageObject",
"url": "{{ html_baseurl }}images/script-a-icon.png"
}
},
{
"@type": "WebPage",
"@id": {{ (html_baseurl ~ pathto(pagename, 1) ~ "#webpage") | tojson }},
"name": {{ title | striptags | tojson }},
"url": {{ (html_baseurl ~ pathto(pagename, 1)) | tojson }},
"isPartOf": { "@id": "{{html_baseurl}}#website" },
"publisher": { "@id": "{{html_baseurl}}#org-ua-libraries" }
}
]
}
</script>
{%- endblock %}