-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
91 lines (87 loc) · 3.7 KB
/
index.php
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
<?php
require_once 'master.php';
master :: head();
master :: navbar();
?>
<head>
<title>Tsugicloud</title>
</head>
<html>
<script>
function doLocalSearchPHPCrawl() {
fetch('localsearchphp/crawl.php')
.then(response => response.json())
.then(result => {
setTimeout(() => { doLocalSearchPHPCrawl(); }, 60000);
})
.catch(err => console.log(err))
}
setTimeout(() => { doLocalSearchPHPCrawl(); }, 5000);
</script>
<div id="carouselExampleAutoplaying" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/ArtAndFeminism_MoMA18_-_30_-_Editing_with_Megan_Wacha.jpg/1024px-ArtAndFeminism_MoMA18_-_30_-_Editing_with_Megan_Wacha.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/200131-D-RQ659-0001.JPG/1024px-200131-D-RQ659-0001.JPG" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Junction_2015.jpg/1024px-Junction_2015.jpg" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<br>
<!--
<div class="container text-center">
<div class="row align-items-center">
<div class="col">
<h2 style="color:#0275d8">Get Started</h2>
<p>A place for anyone just getting started on Tsugicloud just like you. Read our docs to get started. </p>
<button type="button" class="btn btn-primary">Learn More</button>
</div>
<div class="col">
<h2 style="color:#292b2c">Customizable</h2>
<p>Experience TsugiCloud the way you want including UI/UX. After all you decide how your tools gonna look like. </p>
<button type="button" class="btn btn-secondary">Learn More</button>
</div>
<div class="col">
<h2 style="color:#5cb85c">User Protectable</h2>
<p>All your data will be ending up in your server. So there's no hassle or third party requirments which
means no chance of breach at all.
</p>
<button type="button" class="btn btn-success">Learn More</button>
</div>
</div>
</div>
<br>
<div class="container text-center">
<div class="row align-items-center">
<div class="col">
<h2 style="color:#d9534f">Everyone is heard</h2>
<p>Everyone matters in our community since it's built from scratch because of open source developers like you </p>
<button type="button" class="btn btn-danger">Learn More</button>
</div>
<div class="col">
<h2 style="color:#f0ad4e">Unlimited Opportunity</h2>
<p>Since TsugiCloud is built for educators & like minded people, the opportunities it provide are endless </p>
<button type="button" class="btn btn-warning">Learn More</button>
</div>
<div class="col">
<h2 style="color:#5bc0de">LTI Compatibility</h2>
<p>TsugiCloud is LTI Compatible which means hassle free LTI intergration with your favorite LMS whether it's Blackboard or canvas. </p>
<button type="button" class="btn btn-info">Learn More</button>
</div>
</div>
</div>
-->
<br>
</html>