2021-03-01 07:01:34 -07:00
|
|
|
extends templates/base.pug
|
2020-08-07 17:06:08 -06:00
|
|
|
|
|
|
|
block content
|
2021-11-07 08:07:29 -07:00
|
|
|
#search.form-wrapper.card
|
2022-09-16 07:10:56 -06:00
|
|
|
h2#searchTitle View a profile
|
2021-11-07 08:07:29 -07:00
|
|
|
form(action="post")
|
|
|
|
label#searchQuery(for="query") Query for fingerprint or email identifier
|
|
|
|
input#query(type="search" name="query" required placeholder="3637202523e7c1309ab79e99ef2dc5827b445f4b, test@doip.rocks" aria-labelledby="searchTitle searchQuery")
|
2021-06-08 02:15:45 -06:00
|
|
|
|
2022-09-16 07:10:56 -06:00
|
|
|
input(type="submit" value="View profile")
|
2023-02-26 07:05:48 -07:00
|
|
|
p Or view a
|
|
|
|
a(href="/sig") plaintext signature
|
|
|
|
| profile.
|
2021-05-02 14:36:41 -06:00
|
|
|
|
2021-03-01 07:01:34 -07:00
|
|
|
if highlights.length > 0
|
|
|
|
h2 Highlights
|
|
|
|
.hcards.hcards--highlights
|
|
|
|
each hl in highlights
|
|
|
|
.card.card--small-profile
|
2021-06-08 02:15:45 -06:00
|
|
|
h3.name= hl.name
|
2021-03-01 07:01:34 -07:00
|
|
|
p
|
|
|
|
span.fingerprint= hl.fingerprint
|
|
|
|
br
|
|
|
|
span.details= hl.description
|
|
|
|
.spacer
|
|
|
|
p
|
2021-05-04 02:01:04 -06:00
|
|
|
a(href=`/${hl.fingerprint}`).button.full-width View profile
|
2021-03-01 07:01:34 -07:00
|
|
|
- var n = 0
|
|
|
|
while n < 3-highlights.length
|
|
|
|
.card.card--small-profile-dummy
|
|
|
|
- n++
|
|
|
|
|
|
|
|
h2 About Keyoxide
|
2023-03-08 04:34:43 -07:00
|
|
|
.hcards.hcards--features.hcards--max-2
|
2021-03-01 07:01:34 -07:00
|
|
|
.card
|
|
|
|
h3 Online identity
|
2023-03-08 04:07:09 -07:00
|
|
|
p Verifying online identity with cryptography. View
|
|
|
|
a(href="/project@keyoxide.org") Keyoxide's profile
|
|
|
|
| .
|
2021-03-01 07:01:34 -07:00
|
|
|
.card
|
2023-03-08 04:07:09 -07:00
|
|
|
h3 Mobile app
|
|
|
|
p Available on Android and iOS. More information on
|
|
|
|
a(href="https://mobile.keyoxide.org") mobile.keyoxide.org
|
|
|
|
| .
|
2021-03-01 07:01:34 -07:00
|
|
|
.card
|
2023-03-08 04:07:09 -07:00
|
|
|
h3 Decentralization & privacy
|
|
|
|
p No central server or database. No collected data. Control how your data is stored and accessed.
|
2021-03-01 07:01:34 -07:00
|
|
|
.card
|
|
|
|
h3 Cryptography
|
2023-03-08 04:07:09 -07:00
|
|
|
p Your online identity verifiably signed with widely-used cryptographic standards (OpenPGP, others coming).
|
2021-03-01 07:01:34 -07:00
|
|
|
.card
|
|
|
|
h3 Open Source
|
2021-11-07 08:07:29 -07:00
|
|
|
p All Keyoxide projects are licensed under AGPL-3.0-or-later.
|
2021-03-01 07:01:34 -07:00
|
|
|
.card
|
2021-03-29 07:23:57 -06:00
|
|
|
h3 Transparent funding
|
2021-11-07 08:07:29 -07:00
|
|
|
p Funded by donations. Keyoxide stands against VC and surveillance capitalism.
|
|
|
|
|
|
|
|
h2 Community
|
|
|
|
.card
|
|
|
|
p
|
|
|
|
| Discussion of the Keyoxide project happens primarily on the
|
2022-03-15 06:22:16 -06:00
|
|
|
a(href="https://community.keyoxide.org") Keyoxide Community Forum
|
|
|
|
| . This is the place to propose new service providers for identity verification, make feature suggestions or report bugs.
|
|
|
|
p
|
|
|
|
| There is also the
|
|
|
|
a(href="irc://irc.libera.chat/#keyoxide") #keyoxide:libera.chat IRC room
|
|
|
|
| , the
|
|
|
|
a(href="https://matrix.to/#/#keyoxide:matrix.org") #keyoxide Matrix channel
|
|
|
|
| and the
|
2021-11-07 08:07:29 -07:00
|
|
|
a(href="https://lists.sr.ht/~yarmo/keyoxide-devel") keyoxide-devel mailing list
|
2022-03-15 06:22:16 -06:00
|
|
|
| . The IRC room and Matrix channel are bridged together.
|
2021-11-07 08:07:29 -07:00
|
|
|
p
|
|
|
|
| The project is also present on the fediverse as
|
|
|
|
a(href="https://fosstodon.org/@keyoxide") @keyoxide@fosstodon.org
|
|
|
|
| .
|
2022-03-15 06:22:16 -06:00
|
|
|
p
|
|
|
|
| Announcements and project updates are published on the
|
|
|
|
a(href="https://blog.keyoxide.org") Keyoxide blog
|
|
|
|
| .
|
2021-11-07 08:07:29 -07:00
|
|
|
|
2021-05-04 03:18:18 -06:00
|
|
|
|
|
|
|
h2 Fund the project
|
2021-11-07 08:07:29 -07:00
|
|
|
.card
|
|
|
|
p
|
|
|
|
| The development of Keyoxide and the Decentralized OpenPGP Identity Proofs ecosystem is entirely funded by donations.
|
|
|
|
p
|
|
|
|
| The Keyoxide project was awarded a NGI Zero grant from the
|
|
|
|
a(href='https://nlnet.nl/') NLnet Foundation
|
|
|
|
| .
|
|
|
|
p
|
|
|
|
| We rely on your support to keep working on Big Tech-independent secure online identity.
|
|
|
|
p
|
2023-03-27 11:03:19 -06:00
|
|
|
a.button.button--donate.button--opencollective(href='https://opencollective.com/keyoxide')
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c2.54 0 4.894-.79 6.834-2.135l-3.107-3.109a7.715 7.715 0 1 1 0-13.512l3.107-3.109A11.943 11.943 0 0 0 12 0zm9.865 5.166l-3.109 3.107A7.67 7.67 0 0 1 19.715 12a7.682 7.682 0 0 1-.959 3.727l3.109 3.107A11.943 11.943 0 0 0 24 12c0-2.54-.79-4.894-2.135-6.834z"></path></svg>
|
|
|
|
| Donate via OpenCollective
|