Update Lemmy page; scale images

This commit is contained in:
lostinlight 2023-10-26 23:53:10 +03:00
parent 05c8882d4e
commit 514414c70d
13 changed files with 68 additions and 11 deletions

View File

@ -24,6 +24,12 @@
{"num": "4", "url": "https://fedidb.org/software/lemmy"}
],
"mobile": "https://join-lemmy.org/apps",
"forUsers":
[
{"id": "0", "url": "https://lemmymap.feddit.de"},
{"id": "1", "url": "https://lemmy.world/post/465785"},
{"id": "2", "url": "https://github.com/cynber/lemmy-instance-assistant"}
],
"devTutorial": "https://join-lemmy.org/docs/administration/administration.html",
"mascot": [{"item": "lemming", "imgNum": ""}],
"dwellers": "?",
@ -32,7 +38,9 @@
"connections": ["Friendica", "Mastodon", "Pleroma"],
"screenshots":
[
{"descr": "Hubzilla interface", "img": "hubzilla-1.png"}
{"descr": "Lemmy interface", "img": "lemmy-1.png"},
{"descr": "Alternative Photon interface", "img": "lemmy-2.png"},
{"descr": "Alternative Alexandrite interface", "img": "lemmy-3.png"}
],
"features":
[
@ -48,16 +56,20 @@
"reading":
[
{
"title": "Nomadic identity in Hubzilla",
"url": "https://medium.com/@tamanning/nomadic-identity-brought-to-you-by-hubzilla-67eadce13c3b"
"title": "Lemmy AMA",
"url": "https://fediversereport.com/lemmy-ask-you-anything/"
},
{
"title": "Getting started with nomadic identity —how to create a personal channel on Hubzilla",
"url": "https://medium.com/@tamanning/getting-started-with-nomadic-identity-how-to-create-a-personal-channel-on-hubzilla-7d9666a428b"
"title": "Understanding ActivityPub Part 2: Lemmy",
"url": "https://seb.jambor.dev/posts/understanding-activitypub-part-2-lemmy"
},
{
"title": "Hubzilla Wiki article",
"url": "https://en.everybodywiki.com/Hubzilla"
"title": "The Great Reddit Migration is Hammering Lemmy and Kbin Instances",
"url": "https://wedistribute.org/2023/06/reddit-migration-lemmy-kbin"
},
{
"title": "Alexandrite is a Beautiful Web Frontend for Lemmy",
"url": "https://wedistribute.org/2023/07/alexandrite-lemmy-web-frontend/"
}
],
"notable": ""

View File

@ -1,6 +1,6 @@
---
layout: "generic"
layout: "lemmy"
title: "Lemmy"
network: "lemmy"
subtitle: "Follow communities anywhere in the world"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 220 KiB

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 KiB

After

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 488 KiB

After

Width:  |  Height:  |  Size: 446 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 979 KiB

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 418 KiB

After

Width:  |  Height:  |  Size: 367 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 490 KiB

After

Width:  |  Height:  |  Size: 452 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

@ -102,7 +102,7 @@ guide: Guide
awesome: Awesome Mastodon list
backup: Mastodon backup
graphs: graphs
webmentions: Webmentions - site + Fediverse bridge
webmentions: Webmentions site + Fediverse bridge
mastofeed: Mastofeed
fediDir: Curated list of interesting accounts
feed2toot: RSS to Mastodon bot
@ -130,6 +130,11 @@ linuxInstall: Installing on Linux using OTP releases
#PeerTube page
sepia: ✓ Sepia Search for videos and channels
# Lemmy page
lemmymap: Lemmymap federation map of instances
appList: Unofficial list of Lemmy apps
assistant: Lemmy instance assitant (browser extension)
# Contributing partial
foreword: Please, keep in mind that you are a participant, not a customer.
promptStart: If you'd like to help the
@ -152,5 +157,5 @@ stickers: stickers
thanks: Thank you. See you in # ...network name (context for translation)
# Clients
pinafore: ✓ Pinafore - alternative web interface
halcyon: ✓ Halcyon - alternative web interface
pinafore: ✓ Pinafore alternative web interface
halcyon: ✓ Halcyon alternative web interface

View File

@ -0,0 +1,40 @@
---
layout: layout
network: true
---
<%
const data = site.data.lemmy.data;
const uxList = [ __('lemmymap'), __('appList'), __('assistant')];
%>
<%- partial('_partial/heroheader') %>
<main class="contents">
<%- partial('_partial/header') %>
<div class="section-wrapper">
<%- partial('_partial/generalinfo') %>
<section class="column">
<div class="section u-block inline-items">
<h4><%- __('users') %></h4>
<ul class="section-list">
<% for (item in data.forUsers) { %>
<% let n = data.forUsers[item].id %>
<li>
<a href="<%= data.forUsers[item].url %>"><%= uxList[n] %></a>
</li>
<% } %>
</ul>
</div>
</section>
</div>
<%- partial('_partial/world') %>
<br>
<%- partial('_partial/contributing') %>
<%- partial('_partial/buttons') %>
</main>