-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (86 loc) · 4.98 KB
/
Copy pathindex.html
File metadata and controls
98 lines (86 loc) · 4.98 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
<!DOCTYPE html>
<html lang="en" encoding="UTF-8">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ontologycore: Web Aesthetics Ontology</title>
<link rel="icon" href="./website/img/spark.png" type="image/x-icon">
<link rel="stylesheet" href="./website/css/style.css">
<link rel="stylesheet" href="./website/css/customgallery.css">
</head>
<body>
<div class="project-wrapper">
<nav class="sidebar" id="sidebarNav">
<h2 style="background-color: transparent">Chapters</h2>
<button id="sidebar-close-btn" class="sidebar-toggle">Close Menu</button>
<ul>
<li>
<span class="toggle-btn no-submenu"></span>
<a href="website/homepage.html" class="nav-link active">Home</a>
</li>
<li>
<span class="toggle-btn"></span>
<a href="website/overview.html" class="nav-link">1. Overview</a>
<ul>
<li><a href="#kre-project" class="sub-link">1.1 KRE Project</a></li>
<li><a href="#aesthetics" class="sub-link">1.2 Aesthetics</a></li>
</ul>
</li>
<li>
<span class="toggle-btn no-submenu"></span>
<a href="website/framework.html" class="nav-link">2. Theoretical framework</a>
</li>
<li>
<span class="toggle-btn no-submenu"></span>
<a href="website/methodology.html" class="nav-link">3. Methodology</a>
</li>
<li>
<span class="toggle-btn"></span>
<a href="website/knowledge-representation.html" class="nav-link">4. Knowledge Representation</a>
<ul>
<li><a href="#ontology-intro" class="sub-link">4.1 The Ontology</a></li>
<li><a href="#modeling" class="sub-link">4.2 Modeling</a></li>
<li><a href="#user-story" class="sub-link sub-nested">4.2.1 User story & LLMs</a></li>
<li><a href="#classes-properties" class="sub-link sub-nested">4.2.2 Classes and properties</a></li>
<li><a href="#competency-questions" class="sub-link sub-nested">4.2.3 Competency questions</a></li>
</ul>
</li>
<li>
<span class="toggle-btn"></span>
<a href="website/knowledge-extraction.html" class="nav-link">5. Knowledge Extraction</a>
<ul>
<li><a href="#dataset" class="sub-link">5.1 Dataset</a></li>
<li><a href="#dataset-statistics" class="sub-link sub-nested">5.1.1 Dataset analysis</a></li>
<li><a href="#knowledge-graph" class="sub-link">5.2 Knowledge Graph</a></li>
</ul>
</li>
<li>
<span class="toggle-btn"></span>
<a href="website/epilogue.html" class="nav-link">6. Epilogue</a>
<ul>
<li><a href="#conclusion" class="sub-link">6.1 Conclusion</a></li>
<li><a href="#bibliography" class="sub-link">6.2 Bibliography</a></li>
</ul>
</li>
</ul>
<div class="sidebar-footer">
<a href="https://github.com/digitalctrlv/ontologycore" target="_blank" rel="noopener noreferrer">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="vertical-align: middle; margin-right: 8px;">
<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path>
</svg>GitHub repository
</a>
</div>
</nav>
<button id="sidebar-open-btn" class="sidebar-toggle">Open Menu</button>
<main class="content" id="content-area">
</main>
</div>
<button id="scrollToTopBtn" title="Go to top">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" style="vertical-align: middle;">
<line x1="12" y1="19" x2="12" y2="5"></line>
<polyline points="5 12 12 5 19 12"></polyline>
</svg>
</button>
<script src="./website/js/main.js"></script>
</body>
</html>