-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChapterTypeShape.html
More file actions
214 lines (211 loc) · 12 KB
/
ChapterTypeShape.html
File metadata and controls
214 lines (211 loc) · 12 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="style.css">
<title>no title - 教科書LOD</title>
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="no title - 教科書LOD">
<meta property="og:title" content="no title - 教科書LOD">
<meta property="og:type" content="website">
<meta property="og:url" content="https://w3id.org/jp-textbook/ChapterTypeShape">
<meta property="og:image" content="https://w3id.org/jp-textbook/textbookLOD-logo2.png">
<meta name="generator" content="ttl2html 2.3.1">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-389547-11"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-389547-11');
</script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark navbar-inverse">
<a class="navbar-brand" href="./">
<img src="logo.png" style="max-height: 54px" alt="教科書LOD">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="./">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item"><a class="nav-link" href="en/">English</a></li>
</ul>
<script async src="https://cse.google.com/cse.js?cx=014295902295096775885:qidxvgqqoco"></script>
<div class="gcse-search"></div>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1>no title</h1>
<p>
<i class="bi bi-link-45deg"></i> <a href="https://w3id.org/jp-textbook/ChapterTypeShape">https://w3id.org/jp-textbook/ChapterTypeShape</a>
<button id="copy-link" class="btn btn-sm btn-outline-secondary" aria-live="polite">
<i class="bi bi-copy"></i> <span class="copy-link-text">リンクをコピー</span>
</button>
</p>
<script>
(() => {
const btn = document.getElementById("copy-link");
const url = 'https://w3id.org/jp-textbook/ChapterTypeShape';
const originalHTML = btn.innerHTML;
let timerId = null;
async function copyText(text) {
// Clipboard API, or fallback
if (navigator.clipboard && window.isSecureContext) {
await navigator.clipboard.writeText(text);
return;
}
const ta = document.createElement("textarea");
ta.value = text;
ta.style.position = "fixed";
ta.style.left = "-9999px";
document.body.appendChild(ta);
ta.select();
document.execCommand("copy");
document.body.removeChild(ta);
}
function setCopiedState() {
btn.innerHTML = `<i class="bi bi-check2"></i> <span class="btn-label">Copied!</span>`;
btn.classList.remove("btn-outline-secondary");
btn.classList.add("btn-outline-success");
}
function resetState() {
btn.innerHTML = originalHTML;
btn.classList.remove("btn-outline-success");
btn.classList.add("btn-outline-secondary");
}
btn.addEventListener("click", async () => {
btn.disabled = true;
try {
await copyText(url);
setCopiedState();
clearTimeout(timerId);
timerId = setTimeout(() => {
resetState();
btn.disabled = false;
}, 1500);
} catch (e) {
// fail...
btn.innerHTML = `<span class="btn-label">Copy failed...</span>`;
clearTimeout(timerId);
timerId = setTimeout(() => {
resetState();
btn.disabled = false;
}, 1500);
}
});
})();
</script>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./"><i class="bi bi-house-door-fill"></i> Home</a></li>
<li class="breadcrumb-item active" aria-current="page">
no title
</li>
</ol>
</nav>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>詳細情報</h2>
<dl class="row" itemscope itemid="https://w3id.org/jp-textbook/ChapterTypeShape" itemtype="http://www.w3.org/ns/shacl#NodeShape">
<dt class="col-sm-3">Type</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#type" itemid="http://www.w3.org/ns/shacl#NodeShape"><a href="http://www.w3.org/ns/shacl#NodeShape">http://www.w3.org/ns/shacl#NodeShape</a></dd>
<dt class="col-sm-3">Property</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/ns/shacl#property"><dl class="row border" itemscope>
<dt class="col-sm-3">Example</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/2004/02/skos/core#example"><ul><li>"教育基本法との対照表"@ja;</li><li>"Mapping Table of Law of Education"@en;</li></ul></dd>
<dt class="col-sm-3">Datatype</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/ns/shacl#datatype" itemid="http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#langString">http://www.w3.org/1999/02/22-rdf-syntax-ns#langString</a></dd>
<dt class="col-sm-3">Description</dt>
<dd class="col-sm-9" lang="en" itemprop="http://www.w3.org/ns/shacl#description">Using language tags, Japanese name and English name are shown. The meanings of language tags are as follows:<dl><dt>@ja</dt><dd>Japanese name</dd><dt>@en</dt><dd>English name</dd></dl></dd>
<dd class="col-sm-9 offset-sm-3" lang="ja" itemprop="http://www.w3.org/ns/shacl#description">言語コードを用いて、名称に加え、英語名称を示します。言語コードとその意味は以下の通りです。<dl><dt>@ja</dt><dd>名称(日本語表記)</dd><dt>@en</dt><dd>英語名称</dd></dl></dd>
<dt class="col-sm-3">Languagein</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/ns/shacl#languageIn"><dl class="row border" itemscope>
<dt class="col-sm-3">First</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">ja</dd>
<dt class="col-sm-3">Rest</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"><dl class="row border" itemscope>
<dt class="col-sm-3">First</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">ja-Hira</dd>
<dt class="col-sm-3">Rest</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"><dl class="row border" itemscope>
<dt class="col-sm-3">First</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">en</dd>
<dt class="col-sm-3">Rest</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest" itemid="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil">http://www.w3.org/1999/02/22-rdf-syntax-ns#nil</a></dd>
</dl>
</dd>
</dl>
</dd>
</dl>
</dd>
<dt class="col-sm-3">Maxcount</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/ns/shacl#maxCount">2</dd>
<dt class="col-sm-3">Mincount</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/ns/shacl#minCount">1</dd>
<dt class="col-sm-3">Name</dt>
<dd class="col-sm-9" lang="en" itemprop="http://www.w3.org/ns/shacl#name">Name</dd>
<dd class="col-sm-9 offset-sm-3" lang="ja" itemprop="http://www.w3.org/ns/shacl#name">名称</dd>
<dt class="col-sm-3">Order</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/ns/shacl#order">1</dd>
<dt class="col-sm-3">Path</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/ns/shacl#path" itemid="http://schema.org/name"><a href="http://schema.org/name">http://schema.org/name</a></dd>
<dt class="col-sm-3">Uniquelang</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/ns/shacl#uniqueLang">true</dd>
</dl>
</dd>
<dd class="col-sm-9 offset-sm-3" itemprop="http://www.w3.org/ns/shacl#property"><dl class="row border" itemscope>
<dt class="col-sm-3">Example</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/2004/02/skos/core#example" itemid="https://www.mext.go.jp/a_menu/shotou/kyoukasho/1260070.htm"><a href="https://www.mext.go.jp/a_menu/shotou/kyoukasho/1260070.htm">https://www.mext.go.jp/a_menu/shotou/kyoukasho/1260070.htm</a></dd>
<dt class="col-sm-3">Description</dt>
<dd class="col-sm-9" lang="en" itemprop="http://www.w3.org/ns/shacl#description">Links to the referenced website.</dd>
<dd class="col-sm-9 offset-sm-3" lang="ja" itemprop="http://www.w3.org/ns/shacl#description">出典した本文を参照できるWebページへのリンク。</dd>
<dt class="col-sm-3">Name</dt>
<dd class="col-sm-9" lang="en" itemprop="http://www.w3.org/ns/shacl#name">Related links</dd>
<dd class="col-sm-9 offset-sm-3" lang="ja" itemprop="http://www.w3.org/ns/shacl#name">関連リンク</dd>
<dt class="col-sm-3">Nodekind</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/ns/shacl#nodeKind" itemid="http://www.w3.org/ns/shacl#IRI"><a href="http://www.w3.org/ns/shacl#IRI">http://www.w3.org/ns/shacl#IRI</a></dd>
<dt class="col-sm-3">Order</dt>
<dd class="col-sm-9" itemprop="http://www.w3.org/ns/shacl#order">2</dd>
<dt class="col-sm-3">Path</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/ns/shacl#path" itemid="http://www.w3.org/2000/01/rdf-schema#seeAlso"><a href="http://www.w3.org/2000/01/rdf-schema#seeAlso">http://www.w3.org/2000/01/rdf-schema#seeAlso</a></dd>
</dl>
</dd>
<dt class="col-sm-3">Targetclass</dt>
<dd class="col-sm-9" itemscope itemprop="http://www.w3.org/ns/shacl#targetClass" itemid="https://w3id.org/jp-textbook/ChapterType" itemtype="http://www.w3.org/2000/01/rdf-schema#Class"><a href="ChapterType">章種別</a></dd>
</dl>
</div>
</div>
</div>
<hr>
<footer>
<p class="float-right"><a href="https://w3id.org/jp-textbook/ChapterTypeShape.ttl"><img src="https://www.w3.org/RDF/icons/rdf_flyer.24" alt="RDFデータ"></a></p>
<p>
© 2017-2025
教科書LODプロジェクト
</p>
</footer>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/ldfetch@1.2/dist/main.min.js"></script>
<script src="script.js"></script>
</body>
</html>