add some logos & a link to the source
This commit is contained in:
parent
e71ee8f43d
commit
0483e9f796
2 changed files with 15 additions and 7 deletions
3
site.css
3
site.css
|
@ -115,6 +115,9 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.mxt_HomePage_link_logo {
|
.mxt_HomePage_link_logo {
|
||||||
|
vertical-align: top;
|
||||||
|
text-align: center;
|
||||||
|
padding-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mxt_HomePage_link_name {
|
.mxt_HomePage_link_name {
|
||||||
|
|
|
@ -19,7 +19,7 @@ import React from 'react'
|
||||||
var linkable_clients = [
|
var linkable_clients = [
|
||||||
{
|
{
|
||||||
name: "Vector",
|
name: "Vector",
|
||||||
logo: "",
|
logo: "img/vector-48px.png",
|
||||||
author: "Vector.im",
|
author: "Vector.im",
|
||||||
homepage: "https://vector.im",
|
homepage: "https://vector.im",
|
||||||
room_url(alias) { return "https://vector.im/beta/#/room/" + alias },
|
room_url(alias) { return "https://vector.im/beta/#/room/" + alias },
|
||||||
|
@ -30,7 +30,7 @@ var linkable_clients = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Matrix Console",
|
name: "Matrix Console",
|
||||||
logo: "",
|
logo: "img/console-48px.png",
|
||||||
author: "Matrix.org",
|
author: "Matrix.org",
|
||||||
homepage: "https://matrix.org",
|
homepage: "https://matrix.org",
|
||||||
room_url(alias) { return "https://matrix.org/beta/#/room/" + alias },
|
room_url(alias) { return "https://matrix.org/beta/#/room/" + alias },
|
||||||
|
@ -42,7 +42,7 @@ var linkable_clients = [
|
||||||
var unlinkable_clients = [
|
var unlinkable_clients = [
|
||||||
{
|
{
|
||||||
name: "Weechat",
|
name: "Weechat",
|
||||||
logo: "",
|
logo: "img/weechat-48px.png",
|
||||||
author: "Tor Hveem",
|
author: "Tor Hveem",
|
||||||
homepage: "https://github.com/torhve/weechat-matrix-protocol-script",
|
homepage: "https://github.com/torhve/weechat-matrix-protocol-script",
|
||||||
maturity: "Late beta",
|
maturity: "Late beta",
|
||||||
|
@ -52,7 +52,7 @@ var unlinkable_clients = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Quaternion",
|
name: "Quaternion",
|
||||||
logo: "",
|
logo: "img/quaternion-48px.png",
|
||||||
author: "Felix Rohrbach",
|
author: "Felix Rohrbach",
|
||||||
homepage: "https://github.com/Fxrh/Quaternion",
|
homepage: "https://github.com/Fxrh/Quaternion",
|
||||||
maturity: "Late alpha",
|
maturity: "Late alpha",
|
||||||
|
@ -62,7 +62,7 @@ var unlinkable_clients = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Tensor",
|
name: "Tensor",
|
||||||
logo: "",
|
logo: "img/tensor-48px.png",
|
||||||
author: "David A Roberts",
|
author: "David A Roberts",
|
||||||
homepage: "https://github.com/davidar/tensor",
|
homepage: "https://github.com/davidar/tensor",
|
||||||
maturity: "Late alpha",
|
maturity: "Late alpha",
|
||||||
|
@ -72,7 +72,7 @@ var unlinkable_clients = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Tensor2",
|
name: "Tensor2",
|
||||||
logo: "",
|
logo: "img/tensor-48px.png",
|
||||||
author: "David A Roberts",
|
author: "David A Roberts",
|
||||||
homepage: "https://github.com/davidar/tensor2",
|
homepage: "https://github.com/davidar/tensor2",
|
||||||
maturity: "Alpha",
|
maturity: "Alpha",
|
||||||
|
@ -82,7 +82,7 @@ var unlinkable_clients = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PTO (Perpetually Talking Online)",
|
name: "PTO (Perpetually Talking Online)",
|
||||||
logo: "",
|
logo: "img/pto-48px.png",
|
||||||
author: "Torrie Fischer",
|
author: "Torrie Fischer",
|
||||||
homepage: "https://pto.im",
|
homepage: "https://pto.im",
|
||||||
//room_url(alias) { return "irc://irc.matrix.org/" + alias },
|
//room_url(alias) { return "irc://irc.matrix.org/" + alias },
|
||||||
|
@ -390,6 +390,11 @@ export default React.createClass({
|
||||||
essentially a compatibility step in the journey towards
|
essentially a compatibility step in the journey towards
|
||||||
a <a href="https://matrix.org/jira/browse/SPEC-5">ubiquitous mx://</a> URL scheme.
|
a <a href="https://matrix.org/jira/browse/SPEC-5">ubiquitous mx://</a> URL scheme.
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
As with all of Matrix, Matrix.to is released as open source under the terms of
|
||||||
|
the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License v2.0</a> - get the source
|
||||||
|
from <a href="https://github.com/matrix-org/matrix.to">Github</a>.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue