-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
78 lines (72 loc) · 3.71 KB
/
index.html
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
---
layout: default
---
<div class="font-page-hero pb-7">
<div class="jumbotron jumbotron-fluid vh-70 d-flex align-items-center font-page-banner">
<div class="container">
<div class="mw-50 pb-5">
<h1 class="mb-0">KeePassXC</h1>
<p class="mt-0 fw-bolder">Cross-platform Password Manager</p>
<p>Never forget a password again. Instead, securely store and auto-fill them into your applications and webservices.</p>
<p>No data collection, completely open source, works on all desktop platforms.</p>
<p class="mt-4">
<a id="download_button" class="btn btn-primary" href="{{ site.baseurl }}/download" role="button">
Download</a>
<a class="btn" href="{{ site.baseurl }}/project" role="button">
<i class="fa fa-info-circle" aria-hidden="true"></i> Learn More</a>
<a class="btn" href="{{ site.baseurl }}/donate" role="button">
<i class="fa fa-credit-card" aria-hidden="true"></i> Donate</a>
</p>
</div>
</div>
</div>
<div class="container mt-6">
<div class="row">
<div class="col-md-4">
<h2 class="fs-4"><i class="fa-solid fa-lock" aria-hidden="true"></i> Secure</h2>
<p>Your passwords remain encrypted at all times and no data is stored on remote servers, so you stay in full control of your data. No cloud, no ads, no subscriptions.
</p>
</div>
<div class="col-md-4">
<h2 class="fs-4"><i class="fa-solid fa-laptop" aria-hidden="true"></i> Cross-platform</h2>
<p>Every feature is thoroughly tested on Windows, macOS, and Linux, so you can expect a seamless experience no matter which operating system you use.
</p>
</div>
<div class="col-md-4">
<h2 class="fs-4"><i class="fa-regular fa-heart" aria-hidden="true"></i> Open Source</h2>
<p>The source code is completely open source under the GPLv3 license and openly available on <a href="https://github.com/keepassxreboot/keepassxc" >GitHub</a>. Feel free to inspect, share, and contribute!</p>
</div>
</div>
</div>
</div>
<div class="container mt-7">
<h2 class="fs-4 pb-3">Recent Blog Posts</h2>
{% for post in site.posts limit:3 %}
{% if post.categories contains 'blog' %}
<article class="card my-3">
<div class="card-body">
<h3 class="card-title fs-5"><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p class="fs-6">
{% if post.author %} By {{ post.author }}<br>{% endif %}
Posted on <em class="date"><i class="fa fa-calendar-o" aria-hidden="true"></i> {{ post.date | date: "%b %-d, %Y - %R %Z" }}</em>
in category <em class="category"><i class="fa fa-tag" aria-hidden="true"></i> {{ post.category }}</em>
</p>
</div>
</article>
{% endif %}
{% endfor %}
</div>
<!--<script>-->
<!-- String.prototype.capitalize = function () {-->
<!-- return this.charAt(0).toUpperCase() + this.slice(1);-->
<!-- };-->
<!-- $(function () {-->
<!-- var osName = OSDetect();-->
<!-- if (osName !== "unknown") {-->
<!-- var button = $("#download_button");-->
<!-- button.text(button.text().replace("Download", "Download for " + osName.capitalize()));-->
<!-- button.html('<i class="fa-brands fa-' + osName + '" aria-hidden="true"></i> ' + button.html());-->
<!-- button.attr("href", button.attr("href") + "#" + osName);-->
<!-- }-->
<!-- });-->
<!--</script>-->