Skip to content

Commit 5b0f52c

Browse files
committed
feat: Algolia search in forums
0 parents  commit 5b0f52c

23 files changed

+32236
-0
lines changed

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/dist
11+
/.cache
12+
13+
# misc
14+
.DS_Store
15+
.env.local
16+
.env.development.local
17+
.env.test.local
18+
.env.production.local
19+
20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*

.parcel-cache/081b21d675a52722

2.82 MB
Binary file not shown.

.parcel-cache/37c075a090d2565c

67.9 KB
Binary file not shown.

.parcel-cache/6bac12b34a5035bf

1.4 MB
Binary file not shown.

.parcel-cache/8f6c15cfa9f4669d

22.8 KB
Binary file not shown.

.parcel-cache/99cdb6ea7cf68f22

1.18 MB
Binary file not shown.

.parcel-cache/a6c49560dea3583b

564 Bytes
Binary file not shown.

.parcel-cache/adbf3c8817e7b823

839 KB
Binary file not shown.

.parcel-cache/b9e3c52db452a1a3.txt

Lines changed: 9098 additions & 0 deletions
Large diffs are not rendered by default.

.parcel-cache/cf6c996cba5a43d5

837 KB
Binary file not shown.

.parcel-cache/d0090d75f949ddb9

3.06 KB
Binary file not shown.

.parcel-cache/data.mdb

37.8 MB
Binary file not shown.

.parcel-cache/dd9070c1173fddc5

4.96 MB
Binary file not shown.

.parcel-cache/f0ace7bde139ae65.txt

Lines changed: 9098 additions & 0 deletions
Large diffs are not rendered by default.

.parcel-cache/fb1ea35670166a32.txt

Lines changed: 9090 additions & 0 deletions
Large diffs are not rendered by default.

.parcel-cache/lock.mdb

8.08 KB
Binary file not shown.

index.html

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta
6+
name="viewport"
7+
content="width=device-width, initial-scale=1, shrink-to-fit=no"
8+
/>
9+
<meta name="theme-color" content="#000000" />
10+
11+
<!--link rel="shortcut icon" href="./favicon.png" /-->
12+
13+
<link
14+
rel="stylesheet"
15+
href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/satellite-min.css"
16+
/>
17+
<link rel="stylesheet" href="./src/index.css" />
18+
<link rel="stylesheet" href="./src/app.css" />
19+
20+
<title>חיפוש בפורום פייתון</title>
21+
</head>
22+
23+
<body>
24+
<header class="header">
25+
<h1 class="header-title">
26+
<a href="/">לומדים פייתון</a>
27+
</h1>
28+
<p class="header-subtitle">
29+
<a href="#">חיפוש בפורומים</a>
30+
</p>
31+
</header>
32+
33+
<div class="container">
34+
<div class="search-panel">
35+
<div class="search-panel__results">
36+
<div id="searchbox"></div>
37+
<div id="hits"></div>
38+
<div id="pagination"></div>
39+
</div>
40+
41+
<div class="search-panel__filters">
42+
<div id="category_name-list"></div>
43+
<div id="tags-list"></div>
44+
</div>
45+
</div>
46+
</div>
47+
48+
<script type="module" src="./src/env.js"></script>
49+
<script type="module" src="./src/app.js"></script>
50+
</body>
51+
</html>

0 commit comments

Comments
 (0)