-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
81 lines (74 loc) · 2.46 KB
/
index.php
File metadata and controls
81 lines (74 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<?php
$website_count = 69;
?>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./static/styles.css">
<title>Komodu by LearnModu - Comments made simple!</title>
</head>
<body>
<nav class="nav">
<ul class="nav-list">
<li><a href="#" class="nav-link">Home</a></li>
<li><a href="https://learnmodu.org" target="_blank" class="nav-link">LearnModu</a></li>
</ul>
</nav>
<header>
<h1>Welcome to Komodu</h1>
<p class="sub">A powerful, embeddable, customizable and open source commenting system, made by the LearnModu team.</p>
<div class="hero-btns">
<a class="prim" href="/register.php">Start Now - It's free!</a>
<button onclick="showDemo()" class="sec">Show Demo</button>
</div>
</header>
<section id="features">
<h2>Integration is simple! Click to copy:</h2>
<div class="example" style="position: relative;" onclick="copySnippet()">
<pre><code>
<div id="komodu-comments"></div>
<script>
window.komoduConfig = {
site: 'your-site-id',
postId: 'unique-post-id', // you make it yourself!
theme: 'light'
};
</script>
<script src="https://komodu.tech/static/embed.js"></script>
</code></pre>
</div>
</section>
<section id="f-grid">
<div class="f-card">
<h3>Beautiful Themes</h3>
<p>Various styles to match your brand, and you can make your own with Komodu.conf</p>
</div>
<div class="f-card">
<h3>Blazingly Fast</h3>
<p>Made in PHP and JavaScript for GREAT performance.</p>
</div>
<div class="f-card">
<h3>Spam Protected</h3>
<p>It's built in!</p>
</div>
<div class="f-card">
<h3>Extensive Funcionality</h3>
<p>Users can create extensions for komodu using the Modu programming language.</p>
</div>
<div class="f-card">
<h3>It's Open Source!</h3>
<p>Komodu is available on our GitHub!</p>
</div>
</section>
<section class="cta">
<h2>Get your people talking 🗣️</h2>
<p>Join a total of <?php echo $website_count ?> websites that use Komodu</p>
<button class="prim">Get Started</button>
</section>
<footer>
<p>© LearnModu 2025</p>
</footer>
<script src="static/main.js"></script>
</body>
</html>