Skip to content

Commit c81076d

Browse files
Fix favicon
1 parent 7ca9894 commit c81076d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+119
-41
lines changed

data/home/hero.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: "hero"
33

44
content:
55
title: "Shaping the Future of Knowledge Graphs"
6-
text: "Orb DB is a fresh start in database design, combining the latest advances in AI and Data Systems to build world's first responsible knowledge graph database. If you like to join the team, we have positions open internationally!"
6+
text: "Orb DB is a fresh start in database design, combining the latest advances in AI and Data Systems to build world's first responsible knowledge graph database."
77

88
buttonPrimary:
99
label: "Get in touch"

data/home/portofolio.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
enabled: true
2+
id: "portfolio"
3+
4+
content:
5+
- image: "images/portfolio-ecommerce.png"
6+
pretitle: "Our Vision"
7+
title: "ORB: Empowering Graph Queries through Inference"
8+
text: "Executing queries on incomplete, sparse knowledge graphs yields incomplete results, especially when it comes to queries involving traversals. We question the applicability of all known architectures for incomplete knowledge bases and propose Orb DB: a clear departure from existing system designs, relying on Machine Learning-based operators to provide inferred query results."
9+
10+
buttons:
11+
# - label: "See live"
12+
# url: "#"
13+
14+
- label: "Read paper"
15+
url: "https://ceur-ws.org/Vol-3443/ESWC_2023_DMKG_paper_6223.pdf"
16+
17+
- image: "images/portfolio-ecommerce.png"
18+
pretitle: "Orb DB's Query Optimization"
19+
title: "Query Optimization for Inference-Based Graph DBs"
20+
text: "This work aims to develop a novel graph query optimizer that leverages the power of Graph Machine Learning to equip graph queries with prediction capabilities while offering approximate but timely results to complex queries. We discuss challenges, design decisions, and research avenues required in materializing this prototype."
21+
buttons:
22+
# - label: "See live"
23+
# url: "#"
24+
25+
- label: "Read paper"
26+
url: "https://ceur-ws.org/Vol-3452/paper9.pdf"

public/categories/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ <h2 class="fs-1 fw-bold text-center text-primary pb-3">Categories</h2>
201201
<div class="row text-center">
202202
<div class="col-12">
203203
<div class="mb-4">
204-
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 500px;">
204+
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 550px;">
205205
</div>
206206

207207

public/favicon-114.png

4.06 KB

public/favicon-120.png

4.25 KB

public/favicon-144.png

5.19 KB

public/favicon-152.png

5.5 KB

public/favicon-180.png

6.67 KB

public/favicon-196.png

7.38 KB

public/favicon-32.png

918 Bytes

public/favicon-57.png

1.26 KB

public/favicon-72.png

2.43 KB

public/favicon-76.png

2.5 KB

public/images/favicon.ico

35.3 KB
Binary file not shown.

public/images/favicon.png

35.3 KB

public/images/portfolio-ecommerce.png

175 KB
93.2 KB

public/index.html

+54-3
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
<h3 class="hero-title fw-bold display-1 text-primary text-center text-xl-start pb-4">Shaping the Future of Knowledge Graphs</h3>
194194

195195

196-
<p class="text-center text-black-61 text-xl-start pb-4">Orb DB is a fresh start in database design, combining the latest advances in AI and Data Systems to build world&rsquo;s first responsible knowledge graph database. If you like to join the team, we have positions open internationally!</p>
196+
<p class="text-center text-black-61 text-xl-start pb-4">Orb DB is a fresh start in database design, combining the latest advances in AI and Data Systems to build world&rsquo;s first responsible knowledge graph database.</p>
197197

198198
<div class="d-flex flex-column flex-xl-row">
199199

@@ -224,15 +224,16 @@ <h3 class="hero-title fw-bold display-1 text-primary text-center text-xl-start p
224224
}
225225

226226
.team-member img {
227-
width: 200px;
228-
height: 200px;
227+
width: 180px;
228+
height: 180px;
229229
border-radius: 20%;
230230
object-fit: cover;
231231
}
232232

233233
.team-member h2 {
234234
margin: 5px 0;
235235
font-size: 1.5rem;
236+
padding-top: 5px;
236237
}
237238

238239
.team-member p {
@@ -454,6 +455,56 @@ <h2 class="text-primary">Panagiotis Kaliosis</h2>
454455
</div>
455456
</section>
456457

458+
<section class="section portfolio">
459+
<div class="container">
460+
<div class="row">
461+
462+
<div class="col-12 col-md-6 mb-4 d-flex">
463+
<div class="card p-3 border d-flex flex-column">
464+
<div class="d-flex flex-column justify-content-between h-100">
465+
466+
<p class="text-danger fw-semibold mb-2">Our Vision</p>
467+
468+
469+
<h3 class="fs-4 fw-bold text-primary pb-3">ORB: Empowering Graph Queries through Inference</h3>
470+
471+
472+
<p class="text-black-61 pb-3">Executing queries on incomplete, sparse knowledge graphs yields incomplete results, especially when it comes to queries involving traversals. We question the applicability of all known architectures for incomplete knowledge bases and propose Orb DB: a clear departure from existing system designs, relying on Machine Learning-based operators to provide inferred query results.</p>
473+
474+
<div class="">
475+
476+
<a class="text-decoration-none me-3" href="https://ceur-ws.org/Vol-3443/ESWC_2023_DMKG_paper_6223.pdf">Read paper</a>
477+
478+
</div>
479+
</div>
480+
</div>
481+
</div>
482+
483+
<div class="col-12 col-md-6 mb-4 d-flex">
484+
<div class="card p-3 border d-flex flex-column">
485+
<div class="d-flex flex-column justify-content-between h-100">
486+
487+
<p class="text-danger fw-semibold mb-2">Orb DB&#39;s Query Optimization</p>
488+
489+
490+
<h3 class="fs-4 fw-bold text-primary pb-3">Query Optimization for Inference-Based Graph DBs</h3>
491+
492+
493+
<p class="text-black-61 pb-3">This work aims to develop a novel graph query optimizer that leverages the power of Graph Machine Learning to equip graph queries with prediction capabilities while offering approximate but timely results to complex queries. We discuss challenges, design decisions, and research avenues required in materializing this prototype.</p>
494+
495+
<div class="">
496+
497+
<a class="text-decoration-none me-3" href="https://ceur-ws.org/Vol-3452/paper9.pdf">Read paper</a>
498+
499+
</div>
500+
</div>
501+
</div>
502+
</div>
503+
504+
</div>
505+
</div>
506+
</section>
507+
457508

458509

459510
<footer class="shared footer bg-blue-light py-5">

public/largetile.png

13.1 KB

public/mediumtile.png

10.6 KB

public/post/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ <h2 class="fs-1 fw-bold text-center text-primary pb-3">Posts</h2>
202202
<div class="row text-center">
203203
<div class="col-12">
204204
<div class="mb-4">
205-
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 500px;">
205+
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 550px;">
206206
</div>
207207

208208

public/smalltile.png

4.66 KB

public/tags/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ <h2 class="fs-1 fw-bold text-center text-primary pb-3">Tags</h2>
201201
<div class="row text-center">
202202
<div class="col-12">
203203
<div class="mb-4">
204-
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 500px;">
204+
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 550px;">
205205
</div>
206206

207207

public/tags/index/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ <h2 class="fs-1 fw-bold text-center text-primary pb-3">Index</h2>
201201
<div class="row text-center">
202202
<div class="col-12">
203203
<div class="mb-4">
204-
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 500px;">
204+
<img src="images/iva.png" alt="Sponsored by IVA" class="img-fluid" style="max-width: 550px;">
205205
</div>
206206

207207

public/widetile.png

1.32 KB

themes/up-business-theme/layouts/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
{{ with .Site.Data.home.hero }}{{ partial "sections/hero.html" . }}{{ end }}
33
<!-- {{ with .Site.Data.home.brands }}{{ partial "sections/brands.html" . }}{{ end }} -->
44
{{ with .Site.Data.home.people }}{{ partial "sections/people.html" . }}{{ end }}
5-
{{ with .Site.Data.home.services }}{{ partial "sections/services.html" . }}{{ end }}
5+
{{ with .Site.Data.home.portofolio }}{{ partial "sections/portofolio.html" . }}{{ end }}
6+
<!-- {{ with .Site.Data.home.services }}{{ partial "sections/services.html" . }}{{ end }} -->
67
<!-- {{ with .Site.Data.home.testimonials }}{{ partial "sections/testimonials.html" . }}{{ end }}
78
{{ with .Site.Data.home.cta }}{{ partial "sections/cta.html" . }}{{ end }} -->
89
{{ end }}

themes/up-business-theme/layouts/partials/head/_favicons.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{- end -}}
55
{{- $favicon = slice $favicon | resources.Concat "favicon.ico" -}}
66

7-
{{- $logo := resources.Get "images/logo.png" -}}
7+
{{- $logo := resources.Get "images/favicon.png" -}}
88
{{- with .Site.Params.logo -}}
99
{{- with resources.Get . -}}
1010
{{- $logo = . -}}

themes/up-business-theme/layouts/partials/sections/people.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@
1111
}
1212

1313
.team-member img {
14-
width: 200px;
15-
height: 200px;
14+
width: 180px;
15+
height: 180px;
1616
border-radius: 20%;
1717
object-fit: cover;
1818
}
1919

2020
.team-member h2 {
2121
margin: 5px 0;
2222
font-size: 1.5rem;
23+
padding-top: 5px;
2324
}
2425

2526
.team-member p {

themes/up-business-theme/layouts/partials/sections/portfolio.html

-29
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<section class="section portfolio">
2+
<div class="container">
3+
<div class="row">
4+
{{ range .content }}
5+
<div class="col-12 col-md-6 mb-4 d-flex">
6+
<div class="card p-3 border d-flex flex-column">
7+
<div class="d-flex flex-column justify-content-between h-100">
8+
{{ with .pretitle }}
9+
<p class="text-danger fw-semibold mb-2">{{ . }}</p>
10+
{{ end }}
11+
{{ with .title }}
12+
<h3 class="fs-4 fw-bold text-primary pb-3">{{ . }}</h3>
13+
{{ end }}
14+
{{ with .text }}
15+
<p class="text-black-61 pb-3">{{ . }}</p>
16+
{{ end }}
17+
<div class="">
18+
{{ range .buttons }}
19+
<a class="text-decoration-none me-3" href="{{ .url }}">{{ .label }}</a>
20+
{{ end }}
21+
</div>
22+
</div>
23+
</div>
24+
</div>
25+
{{ end }}
26+
</div>
27+
</div>
28+
</section>

0 commit comments

Comments
 (0)