mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
fix: corrected grid of webapps and cli apps not displaying correctly for a div closed in the wrong place (#242)
This commit is contained in:
parent
7442a9eee2
commit
b296b0f7ff
1 changed files with 52 additions and 53 deletions
|
@ -176,62 +176,61 @@ export class Apps extends Component<any, any> {
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="card col-6">
|
|
||||||
<AppDetails
|
|
||||||
name="lemmy-lite"
|
|
||||||
description="A static, JSless, touch-friendly Lemmy frontend built for legacy web clients and maximum performance"
|
|
||||||
link="https://github.com/IronOxidizer/lemmy-lite"
|
|
||||||
banner="/static/assets/images/lemmy_lite_screen.webp"
|
|
||||||
links={[
|
|
||||||
{
|
|
||||||
link: "https://github.com/IronOxidizer/lemmy-lite",
|
|
||||||
icon: "github",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="card col-6">
|
||||||
<h1>{i18n.t("cli_apps")}</h1>
|
<AppDetails
|
||||||
|
name="lemmy-lite"
|
||||||
<div class="row">
|
description="A static, JSless, touch-friendly Lemmy frontend built for legacy web clients and maximum performance"
|
||||||
<div class="card col-6">
|
link="https://github.com/IronOxidizer/lemmy-lite"
|
||||||
<AppDetails
|
banner="/static/assets/images/lemmy_lite_screen.webp"
|
||||||
name="neonmodem"
|
links={[
|
||||||
description="BBS-style TUI client"
|
{
|
||||||
link="https://github.com/mrusme/neonmodem"
|
link: "https://github.com/IronOxidizer/lemmy-lite",
|
||||||
banner="/static/assets/images/neonmodem.webp"
|
icon: "github",
|
||||||
links={[
|
},
|
||||||
{
|
]}
|
||||||
link: "https://github.com/mrusme/neonmodem",
|
/>
|
||||||
icon: "github",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1>{i18n.t("api_libraries")}</h1>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<a href="https://github.com/LemmyNet/lemmy-js-client">
|
|
||||||
lemmy-js-client
|
|
||||||
</a>{" "}
|
|
||||||
- a javascript / typescript client.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://github.com/LemmurOrg/lemmy_api_client">
|
|
||||||
lemmy-dart client
|
|
||||||
</a>{" "}
|
|
||||||
- a dart / flutter client.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://github.com/Arsen6331/go-lemmy">go-lemmy</a> - a
|
|
||||||
Go client.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<h1>{i18n.t("cli_apps")}</h1>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="card col-6">
|
||||||
|
<AppDetails
|
||||||
|
name="neonmodem"
|
||||||
|
description="BBS-style TUI client"
|
||||||
|
link="https://github.com/mrusme/neonmodem"
|
||||||
|
banner="/static/assets/images/neonmodem.webp"
|
||||||
|
links={[
|
||||||
|
{
|
||||||
|
link: "https://github.com/mrusme/neonmodem",
|
||||||
|
icon: "github",
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h1>{i18n.t("api_libraries")}</h1>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/LemmyNet/lemmy-js-client">
|
||||||
|
lemmy-js-client
|
||||||
|
</a>{" "}
|
||||||
|
- a javascript / typescript client.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/LemmurOrg/lemmy_api_client">
|
||||||
|
lemmy-dart client
|
||||||
|
</a>{" "}
|
||||||
|
- a dart / flutter client.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/Arsen6331/go-lemmy">go-lemmy</a> - a
|
||||||
|
Go client.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue