From df0430cb4855b30113ded88357aebcc02812f4d9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 11 Apr 2018 11:03:18 +0200 Subject: [PATCH] added example home css and html file --- mods/home.css | 21 +++++++++++++++++++++ mods/home.html | 23 +++++++++++++++++++++++ mods/readme.txt | 8 ++++++++ 3 files changed, 52 insertions(+) create mode 100644 mods/home.css create mode 100644 mods/home.html diff --git a/mods/home.css b/mods/home.css new file mode 100644 index 0000000000..f01330b9c6 --- /dev/null +++ b/mods/home.css @@ -0,0 +1,21 @@ +.homeinfocontainer { + display: grid; + grid-template-columns: 33% 33% 33%; + grid-column-gap: 15px; + padding: 10px; +} +.homeinfobox p { + text-align: justify; +} +#c1 { + grid-column-start: 1; + grid-column-end: 2; +} +#c2 { + grid-column-start: 2; + grid-column-end: 3; +} +#c3 { + grid-column-start: 3; + grid-column-end: 4; +} diff --git a/mods/home.html b/mods/home.html new file mode 100644 index 0000000000..5bd638c08b --- /dev/null +++ b/mods/home.html @@ -0,0 +1,23 @@ + + + +

Welcome to this Friendica node!

+ + +
+
+

What is Friendica?

+

Friendica is a decentral social network platform everybody can use to setup their own social networking node. It interacts with many other FLOSS microblogging and social networking platforms as well as some walled gardens.

+

Learn more at friendi.ca
Find an open Friendica node to join

+
+
+

What other networks does it interact with?

+

Every network that speaks either the DFRN2, OStatus or diaspora* protocol. Currently this list includes: diaspora*, friendica, ganggo, GNU social, Hubzilla, Mastodon, Pleroma, postActivi and Socialhome.

+

Learn more at fediverse.party

+
+
+

Is it hard to run Friendica?

+

No, not at all! You need a LAMP server, most shared hosting services that offer MySQL, PHP and the ability to run cron jobs will do just fine. If you have your own (virtual) server, for a small Friendica server something like a Raspberry2B is sufficenent from the specs.

+

Get the source

+
+
diff --git a/mods/readme.txt b/mods/readme.txt index 4ff8e1067a..c4974466ce 100644 --- a/mods/readme.txt +++ b/mods/readme.txt @@ -19,3 +19,11 @@ sample-systemd.service issue in Github (https://github.com/friendica/friendica/issues). This is for usage of systemd instead of cron to start the worker.php periodically, the solution is work-in-progress and can surely be improved. + +home.css +home.html + + Example files to customize the landing page of your Friendica node. + The home.html file contains the text of the page, the home.css file + the style information. The login box will be added according to the + other system settings.