]> git.mxchange.org Git - friendica.git/commitdiff
added example home css and html file
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 11 Apr 2018 09:03:18 +0000 (11:03 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 11 Apr 2018 09:03:18 +0000 (11:03 +0200)
mods/home.css [new file with mode: 0644]
mods/home.html [new file with mode: 0644]
mods/readme.txt

diff --git a/mods/home.css b/mods/home.css
new file mode 100644 (file)
index 0000000..f01330b
--- /dev/null
@@ -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 (file)
index 0000000..5bd638c
--- /dev/null
@@ -0,0 +1,23 @@
+<!-- styling for this page is done in the home.css file //-->
+
+<!-- Some node specifiv welcome message //-->
+<p>Welcome to this <a href="https://friendi.ca">Friendica</a> node!</p>
+
+<!-- Some general notes about Friendica, the other networks and difficulty to run //-->
+<div class="homeinfocontainer">
+       <div id="c1" class="homeinfobox">
+               <h4>What is Friendica?</h4>
+               <p>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.</p>
+               <p><a href="https://friendi.ca">Learn more at friendi.ca</a><br /><a href="https://dir.friendica.social/servers">Find an open Friendica node to join</a></p>
+       </div>
+       <div id="c2" class="homeinfobox">
+               <h4>What other networks does it interact with?</h4>
+               <p>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.</p>
+               <p><a href="http://fediverse.party/">Learn more at fediverse.party</a></p>
+       </div>
+       <div id="c3" class="homeinfobox">
+               <h4>Is it hard to run Friendica?</h4>
+               <p>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.</p>
+               <p><a href="https://github.com/friendica/friendica">Get the source</a></p>
+       </div>
+</div>
index 4ff8e1067a30e3d36189483865dc53e0955b0b64..c4974466cedac798609c1804506408a6572c1dca 100644 (file)
@@ -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.